Commit bc76298e authored by Chris Wilson's avatar Chris Wilson

drm/i915: Store gen_mask inside the static device info

Rather than deriving the gen_mask from the static intel_device_info->gen
at runtime, pre-fill it in the static data.

v2: Undefine local macros at end of their scope.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180215081930.11477-1-chris@chris-wilson.co.uk
parent 62d4028f
...@@ -909,8 +909,6 @@ static int i915_driver_init_early(struct drm_i915_private *dev_priv, ...@@ -909,8 +909,6 @@ static int i915_driver_init_early(struct drm_i915_private *dev_priv,
device_info->platform_mask = BIT(device_info->platform); device_info->platform_mask = BIT(device_info->platform);
BUG_ON(device_info->gen > sizeof(device_info->gen_mask) * BITS_PER_BYTE); BUG_ON(device_info->gen > sizeof(device_info->gen_mask) * BITS_PER_BYTE);
device_info->gen_mask = BIT(device_info->gen - 1);
spin_lock_init(&dev_priv->irq_lock); spin_lock_init(&dev_priv->irq_lock);
spin_lock_init(&dev_priv->gpu_error.lock); spin_lock_init(&dev_priv->gpu_error.lock);
mutex_init(&dev_priv->backlight_lock); mutex_init(&dev_priv->backlight_lock);
......
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
#include "i915_drv.h" #include "i915_drv.h"
#include "i915_selftest.h" #include "i915_selftest.h"
#define GEN(x) .gen = (x), .gen_mask = BIT((x) - 1)
#define GEN_DEFAULT_PIPEOFFSETS \ #define GEN_DEFAULT_PIPEOFFSETS \
.pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \ .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \ PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
...@@ -63,7 +65,8 @@ ...@@ -63,7 +65,8 @@
.page_sizes = I915_GTT_PAGE_SIZE_4K .page_sizes = I915_GTT_PAGE_SIZE_4K
#define GEN2_FEATURES \ #define GEN2_FEATURES \
.gen = 2, .num_pipes = 1, \ GEN(2), \
.num_pipes = 1, \
.has_overlay = 1, .overlay_needs_physical = 1, \ .has_overlay = 1, .overlay_needs_physical = 1, \
.has_gmch_display = 1, \ .has_gmch_display = 1, \
.hws_needs_physical = 1, \ .hws_needs_physical = 1, \
...@@ -100,7 +103,8 @@ static const struct intel_device_info intel_i865g_info = { ...@@ -100,7 +103,8 @@ static const struct intel_device_info intel_i865g_info = {
}; };
#define GEN3_FEATURES \ #define GEN3_FEATURES \
.gen = 3, .num_pipes = 2, \ GEN(3), \
.num_pipes = 2, \
.has_gmch_display = 1, \ .has_gmch_display = 1, \
.ring_mask = RENDER_RING, \ .ring_mask = RENDER_RING, \
.has_snoop = true, \ .has_snoop = true, \
...@@ -163,7 +167,8 @@ static const struct intel_device_info intel_pineview_info = { ...@@ -163,7 +167,8 @@ static const struct intel_device_info intel_pineview_info = {
}; };
#define GEN4_FEATURES \ #define GEN4_FEATURES \
.gen = 4, .num_pipes = 2, \ GEN(4), \
.num_pipes = 2, \
.has_hotplug = 1, \ .has_hotplug = 1, \
.has_gmch_display = 1, \ .has_gmch_display = 1, \
.ring_mask = RENDER_RING, \ .ring_mask = RENDER_RING, \
...@@ -205,7 +210,8 @@ static const struct intel_device_info intel_gm45_info = { ...@@ -205,7 +210,8 @@ static const struct intel_device_info intel_gm45_info = {
}; };
#define GEN5_FEATURES \ #define GEN5_FEATURES \
.gen = 5, .num_pipes = 2, \ GEN(5), \
.num_pipes = 2, \
.has_hotplug = 1, \ .has_hotplug = 1, \
.ring_mask = RENDER_RING | BSD_RING, \ .ring_mask = RENDER_RING | BSD_RING, \
.has_snoop = true, \ .has_snoop = true, \
...@@ -227,7 +233,8 @@ static const struct intel_device_info intel_ironlake_m_info = { ...@@ -227,7 +233,8 @@ static const struct intel_device_info intel_ironlake_m_info = {
}; };
#define GEN6_FEATURES \ #define GEN6_FEATURES \
.gen = 6, .num_pipes = 2, \ GEN(6), \
.num_pipes = 2, \
.has_hotplug = 1, \ .has_hotplug = 1, \
.has_fbc = 1, \ .has_fbc = 1, \
.ring_mask = RENDER_RING | BSD_RING | BLT_RING, \ .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
...@@ -270,7 +277,8 @@ static const struct intel_device_info intel_sandybridge_m_gt2_info = { ...@@ -270,7 +277,8 @@ static const struct intel_device_info intel_sandybridge_m_gt2_info = {
}; };
#define GEN7_FEATURES \ #define GEN7_FEATURES \
.gen = 7, .num_pipes = 3, \ GEN(7), \
.num_pipes = 3, \
.has_hotplug = 1, \ .has_hotplug = 1, \
.has_fbc = 1, \ .has_fbc = 1, \
.ring_mask = RENDER_RING | BSD_RING | BLT_RING, \ .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
...@@ -324,7 +332,7 @@ static const struct intel_device_info intel_ivybridge_q_info = { ...@@ -324,7 +332,7 @@ static const struct intel_device_info intel_ivybridge_q_info = {
static const struct intel_device_info intel_valleyview_info = { static const struct intel_device_info intel_valleyview_info = {
.platform = INTEL_VALLEYVIEW, .platform = INTEL_VALLEYVIEW,
.gen = 7, GEN(7),
.is_lp = 1, .is_lp = 1,
.num_pipes = 2, .num_pipes = 2,
.has_psr = 1, .has_psr = 1,
...@@ -385,7 +393,7 @@ static const struct intel_device_info intel_haswell_gt3_info = { ...@@ -385,7 +393,7 @@ static const struct intel_device_info intel_haswell_gt3_info = {
#define BDW_PLATFORM \ #define BDW_PLATFORM \
GEN8_FEATURES, \ GEN8_FEATURES, \
.gen = 8, \ GEN(8), \
.platform = INTEL_BROADWELL .platform = INTEL_BROADWELL
static const struct intel_device_info intel_broadwell_gt1_info = { static const struct intel_device_info intel_broadwell_gt1_info = {
...@@ -413,7 +421,8 @@ static const struct intel_device_info intel_broadwell_gt3_info = { ...@@ -413,7 +421,8 @@ static const struct intel_device_info intel_broadwell_gt3_info = {
}; };
static const struct intel_device_info intel_cherryview_info = { static const struct intel_device_info intel_cherryview_info = {
.gen = 8, .num_pipes = 3, GEN(8),
.num_pipes = 3,
.has_hotplug = 1, .has_hotplug = 1,
.is_lp = 1, .is_lp = 1,
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
...@@ -452,7 +461,7 @@ static const struct intel_device_info intel_cherryview_info = { ...@@ -452,7 +461,7 @@ static const struct intel_device_info intel_cherryview_info = {
#define SKL_PLATFORM \ #define SKL_PLATFORM \
GEN9_FEATURES, \ GEN9_FEATURES, \
.gen = 9, \ GEN(9), \
.platform = INTEL_SKYLAKE .platform = INTEL_SKYLAKE
static const struct intel_device_info intel_skylake_gt1_info = { static const struct intel_device_info intel_skylake_gt1_info = {
...@@ -481,7 +490,7 @@ static const struct intel_device_info intel_skylake_gt4_info = { ...@@ -481,7 +490,7 @@ static const struct intel_device_info intel_skylake_gt4_info = {
}; };
#define GEN9_LP_FEATURES \ #define GEN9_LP_FEATURES \
.gen = 9, \ GEN(9), \
.is_lp = 1, \ .is_lp = 1, \
.has_hotplug = 1, \ .has_hotplug = 1, \
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \ .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
...@@ -526,7 +535,7 @@ static const struct intel_device_info intel_geminilake_info = { ...@@ -526,7 +535,7 @@ static const struct intel_device_info intel_geminilake_info = {
#define KBL_PLATFORM \ #define KBL_PLATFORM \
GEN9_FEATURES, \ GEN9_FEATURES, \
.gen = 9, \ GEN(9), \
.platform = INTEL_KABYLAKE .platform = INTEL_KABYLAKE
static const struct intel_device_info intel_kabylake_gt1_info = { static const struct intel_device_info intel_kabylake_gt1_info = {
...@@ -547,7 +556,7 @@ static const struct intel_device_info intel_kabylake_gt3_info = { ...@@ -547,7 +556,7 @@ static const struct intel_device_info intel_kabylake_gt3_info = {
#define CFL_PLATFORM \ #define CFL_PLATFORM \
GEN9_FEATURES, \ GEN9_FEATURES, \
.gen = 9, \ GEN(9), \
.platform = INTEL_COFFEELAKE .platform = INTEL_COFFEELAKE
static const struct intel_device_info intel_coffeelake_gt1_info = { static const struct intel_device_info intel_coffeelake_gt1_info = {
...@@ -573,14 +582,14 @@ static const struct intel_device_info intel_coffeelake_gt3_info = { ...@@ -573,14 +582,14 @@ static const struct intel_device_info intel_coffeelake_gt3_info = {
static const struct intel_device_info intel_cannonlake_info = { static const struct intel_device_info intel_cannonlake_info = {
GEN10_FEATURES, GEN10_FEATURES,
GEN(10),
.platform = INTEL_CANNONLAKE, .platform = INTEL_CANNONLAKE,
.gen = 10,
.gt = 2, .gt = 2,
}; };
#define GEN11_FEATURES \ #define GEN11_FEATURES \
GEN10_FEATURES, \ GEN10_FEATURES, \
.gen = 11, \ GEN(11), \
.ddb_size = 2048, \ .ddb_size = 2048, \
.has_csr = 0 .has_csr = 0
...@@ -591,6 +600,8 @@ static const struct intel_device_info intel_icelake_11_info = { ...@@ -591,6 +600,8 @@ static const struct intel_device_info intel_icelake_11_info = {
.has_resource_streamer = 0, .has_resource_streamer = 0,
}; };
#undef GEN
/* /*
* Make sure any device matches here are from most specific to most * Make sure any device matches here are from most specific to most
* general. For example, since the Quanta match is based on the subsystem * general. For example, since the Quanta match is based on the subsystem
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment