aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorJoonas Lahtinen <joonas.lahtinen@linux.intel.com>2016-04-22 06:29:26 -0400
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>2016-04-25 06:30:32 -0400
commitc0dd3460b28626430b83b9bf80af4c5a2bd4a53b (patch)
treec6ab06f9c808fc659c2c651bd20ba4f0cca8a5dc /include/drm
parent050fc4653c3634762dca4e5cfdeb43a31163f056 (diff)
drm/i915: Canonicalize stolen memory calculations
Move the better constructs/comments from i915_gem_stolen.c to early-quirks.c and increase readability in preparation of only having one set of functions. - intel_stolen_base -> gen3_stolen_base - use phys_addr_t instead of u32 for address for future proofing v2: - Print the invalid register values (Chris) (Omitting the register prefix as it's visible from backtrace.) Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Mika Kuoppala <mika.kuoppala@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Acked-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/i915_drm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h
index 595f85c392ac..b1755f8db36b 100644
--- a/include/drm/i915_drm.h
+++ b/include/drm/i915_drm.h
@@ -92,4 +92,7 @@ extern bool i915_gpu_turbo_disable(void);
92#define I845_TSEG_SIZE_512K (2 << 1) 92#define I845_TSEG_SIZE_512K (2 << 1)
93#define I845_TSEG_SIZE_1M (3 << 1) 93#define I845_TSEG_SIZE_1M (3 << 1)
94 94
95#define INTEL_BSM 0x5c
96#define INTEL_BSM_MASK (0xFFFF << 20)
97
95#endif /* _I915_DRM_H_ */ 98#endif /* _I915_DRM_H_ */