diff options
| author | Dave Airlie <airlied@redhat.com> | 2014-05-18 17:42:27 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2014-05-18 17:42:27 -0400 |
| commit | e5daa1ddc1b01587cba2915390e52c0dd0190e1e (patch) | |
| tree | d6440ea5c804e0e3dd0323e10c0dd406dd771229 /include/drm | |
| parent | 425a9a3ad1e64a00b4dbc827ae58df2aaf10ef43 (diff) | |
| parent | 10efa9321efe5f62637b189587539e4086726a2b (diff) | |
Merge tag 'drm-intel-next-2014-05-06' of git://anongit.freedesktop.org/drm-intel into drm-next
- ring init improvements (Chris)
- vebox2 support (Zhao Yakui)
- more prep work for runtime pm on Baytrail (Imre)
- eDram support for BDW (Ben)
- prep work for userptr support (Chris)
- first parts of the encoder->mode_set callback removal (Daniel)
- 64b reloc fixes (Ben)
- first part of atomic plane updates (Ville)
* tag 'drm-intel-next-2014-05-06' of git://anongit.freedesktop.org/drm-intel: (75 commits)
drm/i915: Remove useless checks from primary enable/disable
drm/i915: Merge LP1+ watermarks in safer way
drm/i915: Make sure computed watermarks never overflow the registers
drm/i915: Add pipe update trace points
drm/i915: Perform primary enable/disable atomically with sprite updates
drm/i915: Make sprite updates atomic
drm/i915: Support 64b relocations
drm/i915: Support 64b execbuf
drm/i915/sdvo: Remove ->mode_set callback
drm/i915/crt: Remove ->mode_set callback
drm/i915/tv: Remove ->mode_set callback
drm/i915/tv: Rip out pipe-disabling nonsense from ->mode_set
drm/i915/tv: De-magic device check
drm/i915/tv: extract set_color_conversion
drm/i915/tv: extract set_tv_mode_timings
drm/i915/dvo: Remove ->mode_set callback
drm/i915: Make encoder->mode_set callbacks optional
drm/i915: Make primary_enabled match the actual hardware state
drm/i915: Move ring_begin to signal()
drm/i915: Virtualize the ringbuffer signal func
...
Diffstat (limited to 'include/drm')
| -rw-r--r-- | include/drm/i915_pciids.h | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index 940ece4934ba..24f3cad045db 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h | |||
| @@ -223,14 +223,26 @@ | |||
| 223 | _INTEL_BDW_D(gt, 0x160A, info), /* Server */ \ | 223 | _INTEL_BDW_D(gt, 0x160A, info), /* Server */ \ |
| 224 | _INTEL_BDW_D(gt, 0x160D, info) /* Workstation */ | 224 | _INTEL_BDW_D(gt, 0x160D, info) /* Workstation */ |
| 225 | 225 | ||
| 226 | #define INTEL_BDW_M_IDS(info) \ | 226 | #define INTEL_BDW_GT12M_IDS(info) \ |
| 227 | _INTEL_BDW_M_IDS(1, info), \ | 227 | _INTEL_BDW_M_IDS(1, info), \ |
| 228 | _INTEL_BDW_M_IDS(2, info), \ | 228 | _INTEL_BDW_M_IDS(2, info) |
| 229 | _INTEL_BDW_M_IDS(3, info) | ||
| 230 | 229 | ||
| 231 | #define INTEL_BDW_D_IDS(info) \ | 230 | #define INTEL_BDW_GT12D_IDS(info) \ |
| 232 | _INTEL_BDW_D_IDS(1, info), \ | 231 | _INTEL_BDW_D_IDS(1, info), \ |
| 233 | _INTEL_BDW_D_IDS(2, info), \ | 232 | _INTEL_BDW_D_IDS(2, info) |
| 233 | |||
| 234 | #define INTEL_BDW_GT3M_IDS(info) \ | ||
| 235 | _INTEL_BDW_M_IDS(3, info) | ||
| 236 | |||
| 237 | #define INTEL_BDW_GT3D_IDS(info) \ | ||
| 234 | _INTEL_BDW_D_IDS(3, info) | 238 | _INTEL_BDW_D_IDS(3, info) |
| 235 | 239 | ||
| 240 | #define INTEL_BDW_M_IDS(info) \ | ||
| 241 | INTEL_BDW_GT12M_IDS(info), \ | ||
| 242 | INTEL_BDW_GT3M_IDS(info) | ||
| 243 | |||
| 244 | #define INTEL_BDW_D_IDS(info) \ | ||
| 245 | INTEL_BDW_GT12D_IDS(info), \ | ||
| 246 | INTEL_BDW_GT3D_IDS(info) | ||
| 247 | |||
| 236 | #endif /* _I915_PCIIDS_H */ | 248 | #endif /* _I915_PCIIDS_H */ |
