[PATCH 11/12] drm/xe/display: Add support for AuxCCS
Tvrtko Ursulin
tvrtko.ursulin at igalia.com
Fri Feb 21 10:17:30 UTC 2025
Add support for mapping the auxiliary CCS buffer into the DPT page tables.
This will allow for more power efficiency by enabling the render
compression frame buffer modifiers such as
I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS in a following patch.
We do this by refactoring the code a bit so handling for the linear
auxiliary frame buffer can be added in a tidy way. Also replace some
hardcoded constants and tighten the loops a bit.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin at igalia.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila at gmail.com>
Cc: Michael J. Ruhl <michael.j.ruhl at intel.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 107 ++++++++++++++++++-------
1 file changed, 80 insertions(+), 27 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 5e7813154733..bba2deb45f24 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -50,35 +50,98 @@ write_dpt_rotated(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs, u32 bo_
*dpt_ofs = ALIGN(*dpt_ofs, 4096);
}
-static void
-write_dpt_remapped(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs,
- u32 bo_ofs, u32 width, u32 height, u32 src_stride,
- u32 dst_stride)
+static unsigned int
+write_dpt_padding(struct iosys_map *map, unsigned int dest, unsigned int pad)
+{
+ while (pad--) {
+ iosys_map_wr(map, dest, u64, 0);
+ dest += sizeof(u64);
+ }
+
+ return dest;
+}
+
+static unsigned int
+write_dpt_remapped_linear(struct xe_bo *bo, struct iosys_map *map,
+ unsigned int dest,
+ const struct intel_remapped_plane_info *plane)
{
struct xe_device *xe = xe_bo_device(bo);
struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
u64 (*pte_encode_bo)(struct xe_bo *bo, u64 bo_offset, u16 pat_index)
= ggtt->pt_ops->pte_encode_bo;
- u32 column, row;
+ const u16 pat = xe->pat.idx[XE_CACHE_NONE];
+ u64 src = plane->offset * XE_PAGE_SIZE;
+ unsigned int size = plane->size;
- for (row = 0; row < height; row++) {
- u32 src_idx = src_stride * row + bo_ofs;
+ while (size--) {
+ iosys_map_wr(map, dest, u64, pte_encode_bo(bo, src, pat));
+ dest += sizeof(u64);
+ src += XE_PAGE_SIZE;
+ }
- for (column = 0; column < width; column++) {
- iosys_map_wr(map, *dpt_ofs, u64,
- pte_encode_bo(bo, src_idx * XE_PAGE_SIZE,
- xe->pat.idx[XE_CACHE_NONE]));
+ return dest;
+}
+
+static unsigned int
+write_dpt_remapped_tiled(struct xe_bo *bo, struct iosys_map *map,
+ unsigned int dest,
+ const struct intel_remapped_plane_info *plane)
+{
+ struct xe_device *xe = xe_bo_device(bo);
+ struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
+ u64 (*pte_encode_bo)(struct xe_bo *bo, u64 bo_offset, u16 pat_index)
+ = ggtt->pt_ops->pte_encode_bo;
+ const unsigned int next_row =
+ (plane->src_stride - plane->width) * XE_PAGE_SIZE;
+ const u16 pat = xe->pat.idx[XE_CACHE_NONE];
+ u64 src = plane->offset * XE_PAGE_SIZE;
+ unsigned int column, row;
- *dpt_ofs += 8;
- src_idx++;
+ for (row = 0; row < plane->height; row++, src += next_row) {
+ for (column = 0; column < plane->width; column++) {
+ iosys_map_wr(map, dest, u64,
+ pte_encode_bo(bo, src, pat));
+ dest += sizeof(u64);
+ src += XE_PAGE_SIZE;
}
/* The DE ignores the PTEs for the padding tiles */
- *dpt_ofs += (dst_stride - width) * 8;
+ dest = write_dpt_padding(map, dest,
+ plane->dst_stride - plane->width);
}
- /* Align to next page */
- *dpt_ofs = ALIGN(*dpt_ofs, 4096);
+ return dest;
+}
+
+static void
+write_dpt_remapped(struct xe_bo *bo,
+ const struct intel_remapped_info *remap_info,
+ struct iosys_map *map)
+{
+ unsigned int i, dest = 0;
+
+ for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++) {
+ const struct intel_remapped_plane_info *plane =
+ &remap_info->plane[i];
+
+ if (!plane->width && !plane->height && !plane->linear)
+ continue;
+
+ if (remap_info->plane_alignment) {
+ unsigned int index = dest / sizeof(u64);
+ unsigned int pad;
+
+ pad = ALIGN(index,
+ remap_info->plane_alignment) - index;
+ dest = write_dpt_padding(map, dest, pad);
+ }
+
+ if (plane->linear)
+ dest = write_dpt_remapped_linear(bo, map, dest, plane);
+ else
+ dest = write_dpt_remapped_tiled(bo, map, dest, plane);
+ }
}
static void gt_flush_ggtt_writes(struct xe_gt *gt)
@@ -180,17 +243,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
iosys_map_wr(&dpt->vmap, x * 8, u64, pte);
}
} else if (view->type == I915_GTT_VIEW_REMAPPED) {
- const struct intel_remapped_info *remap_info = &view->remapped;
- u32 i, dpt_ofs = 0;
-
- for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++)
- write_dpt_remapped(bo, &dpt->vmap, &dpt_ofs,
- remap_info->plane[i].offset,
- remap_info->plane[i].width,
- remap_info->plane[i].height,
- remap_info->plane[i].src_stride,
- remap_info->plane[i].dst_stride);
-
+ write_dpt_remapped(bo, &view->remapped, &dpt->vmap);
} else {
const struct intel_rotation_info *rot_info = &view->rotated;
u32 i, dpt_ofs = 0;
--
2.48.0
More information about the Intel-xe
mailing list