]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/gpu/drm/i915/intel_workarounds_types.h
Merge tag 'pwm/for-5.2-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git...
[thirdparty/kernel/stable.git] / drivers / gpu / drm / i915 / intel_workarounds_types.h
CommitLineData
39e2f501
CW
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright © 2014-2018 Intel Corporation
5 */
6
7#ifndef __INTEL_WORKAROUNDS_TYPES_H__
8#define __INTEL_WORKAROUNDS_TYPES_H__
9
10#include <linux/types.h>
11
12#include "i915_reg.h"
13
14struct i915_wa {
15 i915_reg_t reg;
16 u32 mask;
17 u32 val;
18};
19
20struct i915_wa_list {
21 const char *name;
22 struct i915_wa *list;
23 unsigned int count;
24 unsigned int wa_count;
25};
26
27#endif /* __INTEL_WORKAROUNDS_TYPES_H__ */