diff options
| author | Dave Airlie <airlied@redhat.com> | 2015-03-23 21:12:20 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2015-03-23 21:12:20 -0400 |
| commit | 74ccbff99787b68e4eb01ef8cf29789229ab0f5d (patch) | |
| tree | d4e322105618e5b3887f7dc6b54e5d2346974675 /include/drm | |
| parent | ae10c2248593fb84c6951d67c98c9c934997e56a (diff) | |
| parent | 0f9e9cd61f46c07246e30871fd638ffeaca3c576 (diff) | |
Merge tag 'drm-intel-next-2015-03-13-merge' of git://anongit.freedesktop.org/drm-intel into drm-next
drm-intel-next-2015-03-13-rebased:
- EU count report param for gen9+ (Jeff McGee)
- piles of pll/wm/... fixes for chv, finally out of preliminary hw support
(Ville, Vijay)
- gen9 rps support from Akash
- more work to move towards atomic from Matt, Ander and others
- runtime pm support for skl (Damien)
- edp1.4 intermediate link clock support (Sonika)
- use frontbuffer tracking for fbc (Paulo)
- remove ilk rc6 (John Harrison)
- a bunch of smaller things and fixes all over
Includes backmerge because git rerere couldn't keep up any more.
* tag 'drm-intel-next-2015-03-13-merge' of git://anongit.freedesktop.org/drm-intel: (366 commits)
drm/i915: Make sure the primary plane is enabled before reading out the fb state
drm/i915: Update DRIVER_DATE to 20150313
drm/i915: Fix vmap_batch page iterator overrun
drm/i915: Export total subslice and EU counts
drm/i915: redefine WARN_ON_ONCE to include the condition
drm/i915/skl: Implement WaDisableHBR2
drm/i915: Remove the preliminary_hw_support shackles from CHV
drm/i915: Read CHV_PLL_DW8 from the correct offset
drm/i915: Rewrite IVB FDI bifurcation conflict checks
drm/i915: Rewrite some some of the FDI lane checks
drm/i915/skl: Enable the RPS interrupts programming
drm/i915/skl: Enabling processing of Turbo interrupts
drm/i915/skl: Updated the i915_frequency_info debugfs function
drm/i915: Simplify the way BC bifurcation state consistency is kept
drm/i915/skl: Updated the act_freq_mhz_show sysfs function
drm/i915/skl: Updated the gen9_enable_rps function
drm/i915/skl: Updated the gen6_rps_limits function
drm/i915/skl: Restructured the gen6_set_rps_thresholds function
drm/i915/skl: Updated the gen6_set_rps function
drm/i915/skl: Updated the gen6_init_rps_frequencies function
...
Diffstat (limited to 'include/drm')
| -rw-r--r-- | include/drm/i915_pciids.h | 49 |
1 files changed, 25 insertions, 24 deletions
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index f2e47fd56751..613372375ada 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h | |||
| @@ -208,40 +208,41 @@ | |||
| 208 | #define INTEL_VLV_D_IDS(info) \ | 208 | #define INTEL_VLV_D_IDS(info) \ |
| 209 | INTEL_VGA_DEVICE(0x0155, info) | 209 | INTEL_VGA_DEVICE(0x0155, info) |
| 210 | 210 | ||
| 211 | #define _INTEL_BDW_M(gt, id, info) \ | 211 | #define INTEL_BDW_GT12M_IDS(info) \ |
| 212 | INTEL_VGA_DEVICE((((gt) - 1) << 4) | (id), info) | 212 | INTEL_VGA_DEVICE(0x1602, info), /* GT1 ULT */ \ |
| 213 | #define _INTEL_BDW_D(gt, id, info) \ | 213 | INTEL_VGA_DEVICE(0x1606, info), /* GT1 ULT */ \ |
| 214 | INTEL_VGA_DEVICE((((gt) - 1) << 4) | (id), info) | 214 | INTEL_VGA_DEVICE(0x160B, info), /* GT1 Iris */ \ |
| 215 | 215 | INTEL_VGA_DEVICE(0x160E, info), /* GT1 ULX */ \ | |
| 216 | #define _INTEL_BDW_M_IDS(gt, info) \ | 216 | INTEL_VGA_DEVICE(0x1612, info), /* GT2 Halo */ \ |
| 217 | _INTEL_BDW_M(gt, 0x1602, info), /* Halo */ \ | 217 | INTEL_VGA_DEVICE(0x1616, info), /* GT2 ULT */ \ |
| 218 | _INTEL_BDW_M(gt, 0x1606, info), /* ULT */ \ | 218 | INTEL_VGA_DEVICE(0x161B, info), /* GT2 ULT */ \ |
| 219 | _INTEL_BDW_M(gt, 0x160B, info), /* ULT */ \ | 219 | INTEL_VGA_DEVICE(0x161E, info) /* GT2 ULX */ |
| 220 | _INTEL_BDW_M(gt, 0x160E, info) /* ULX */ | ||
| 221 | |||
| 222 | #define _INTEL_BDW_D_IDS(gt, info) \ | ||
| 223 | _INTEL_BDW_D(gt, 0x160A, info), /* Server */ \ | ||
| 224 | _INTEL_BDW_D(gt, 0x160D, info) /* Workstation */ | ||
| 225 | |||
| 226 | #define INTEL_BDW_GT12M_IDS(info) \ | ||
| 227 | _INTEL_BDW_M_IDS(1, info), \ | ||
| 228 | _INTEL_BDW_M_IDS(2, info) | ||
| 229 | 220 | ||
| 230 | #define INTEL_BDW_GT12D_IDS(info) \ | 221 | #define INTEL_BDW_GT12D_IDS(info) \ |
| 231 | _INTEL_BDW_D_IDS(1, info), \ | 222 | INTEL_VGA_DEVICE(0x160A, info), /* GT1 Server */ \ |
| 232 | _INTEL_BDW_D_IDS(2, info) | 223 | INTEL_VGA_DEVICE(0x160D, info), /* GT1 Workstation */ \ |
| 224 | INTEL_VGA_DEVICE(0x161A, info), /* GT2 Server */ \ | ||
| 225 | INTEL_VGA_DEVICE(0x161D, info) /* GT2 Workstation */ | ||
| 233 | 226 | ||
| 234 | #define INTEL_BDW_GT3M_IDS(info) \ | 227 | #define INTEL_BDW_GT3M_IDS(info) \ |
| 235 | _INTEL_BDW_M_IDS(3, info) | 228 | INTEL_VGA_DEVICE(0x1622, info), /* ULT */ \ |
| 229 | INTEL_VGA_DEVICE(0x1626, info), /* ULT */ \ | ||
| 230 | INTEL_VGA_DEVICE(0x162B, info), /* Iris */ \ | ||
| 231 | INTEL_VGA_DEVICE(0x162E, info) /* ULX */ | ||
| 236 | 232 | ||
| 237 | #define INTEL_BDW_GT3D_IDS(info) \ | 233 | #define INTEL_BDW_GT3D_IDS(info) \ |
| 238 | _INTEL_BDW_D_IDS(3, info) | 234 | INTEL_VGA_DEVICE(0x162A, info), /* Server */ \ |
| 235 | INTEL_VGA_DEVICE(0x162D, info) /* Workstation */ | ||
| 239 | 236 | ||
| 240 | #define INTEL_BDW_RSVDM_IDS(info) \ | 237 | #define INTEL_BDW_RSVDM_IDS(info) \ |
| 241 | _INTEL_BDW_M_IDS(4, info) | 238 | INTEL_VGA_DEVICE(0x1632, info), /* ULT */ \ |
| 239 | INTEL_VGA_DEVICE(0x1636, info), /* ULT */ \ | ||
| 240 | INTEL_VGA_DEVICE(0x163B, info), /* Iris */ \ | ||
| 241 | INTEL_VGA_DEVICE(0x163E, info) /* ULX */ | ||
| 242 | 242 | ||
| 243 | #define INTEL_BDW_RSVDD_IDS(info) \ | 243 | #define INTEL_BDW_RSVDD_IDS(info) \ |
| 244 | _INTEL_BDW_D_IDS(4, info) | 244 | INTEL_VGA_DEVICE(0x163A, info), /* Server */ \ |
| 245 | INTEL_VGA_DEVICE(0x163D, info) /* Workstation */ | ||
| 245 | 246 | ||
| 246 | #define INTEL_BDW_M_IDS(info) \ | 247 | #define INTEL_BDW_M_IDS(info) \ |
| 247 | INTEL_BDW_GT12M_IDS(info), \ | 248 | INTEL_BDW_GT12M_IDS(info), \ |
