diff options
author | Ayaz A Siddiqui <ayaz.siddiqui@intel.com> | 2022-05-06 00:38:03 +0300 |
---|---|---|
committer | Matt Roper <matthew.d.roper@intel.com> | 2022-05-11 01:30:05 +0300 |
commit | 9d67edba730c4663eb7d87771123c3fb86ba606d (patch) | |
tree | a54f1369e8d577c147a6a282dd8e4c4289314b29 /drivers/gpu/drm/i915/i915_pci.c | |
parent | 429e1fc1b2c257f35b6a1318eb3a1ffb80bc6640 (diff) | |
download | linux-9d67edba730c4663eb7d87771123c3fb86ba606d.tar.xz |
drm/i915/pvc: Define MOCS table for PVC
v2 (MattR):
- Clarify comment above RING_CMD_CCTL programming.
- Remove bspec reference from field definition. (Lucas)
- Add WARN if we try to use a (presumably uninitialized) wb_index of 0.
On most platforms 0 is an invalid MOCS entry and even on the ones
where it isn't, it isn't the right setting for wb_index. (Lucas)
Bspec: 45101, 72161
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Ayaz A Siddiqui <ayaz.siddiqui@intel.com>
Signed-off-by: Fei Yang <fei.yang@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220505213812.3979301-4-matthew.d.roper@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_pci.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c index 1f320245c344..0e1d0493d3fe 100644 --- a/drivers/gpu/drm/i915/i915_pci.c +++ b/drivers/gpu/drm/i915/i915_pci.c @@ -1051,7 +1051,8 @@ static const struct intel_device_info ats_m_info = { #define XE_HPC_FEATURES \ XE_HP_FEATURES, \ - .dma_mask_size = 52 + .dma_mask_size = 52, \ + .has_l3_ccs_read = 1 __maybe_unused static const struct intel_device_info pvc_info = { |