[PATCH 07/10] drm/xe/display: Convert GGTT mapping to use pte_encode_flags

Juha-Pekka Heikkilä juhapekka.heikkila at gmail.com
Tue May 20 13:20:25 UTC 2025


Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila at gmail.com>

On Mon, May 5, 2025 at 3:20 PM Maarten Lankhorst <dev at lankhorst.se> wrote:
>
> Another small step in removing pte_encode_bo callback.
>
> Signed-off-by: Maarten Lankhorst <dev at lankhorst.se>
> ---
>  drivers/gpu/drm/xe/display/xe_fb_pin.c | 17 +++++------------
>  1 file changed, 5 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
> index 5392e46a3a134..9059b56bc23c8 100644
> --- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
> +++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
> @@ -171,15 +171,15 @@ write_ggtt_rotated(struct xe_bo *bo, struct xe_ggtt *ggtt, u32 *ggtt_ofs, u32 bo
>  {
>         struct xe_device *xe = xe_bo_device(bo);
>         u32 column, row;
> +       u64 pte = ggtt->pt_ops->pte_encode_flags(bo, xe->pat.idx[XE_CACHE_NONE]);
>
>         for (column = 0; column < width; column++) {
>                 u32 src_idx = src_stride * (height - 1) + column + bo_ofs;
>
>                 for (row = 0; row < height; row++) {
> -                       u64 pte = ggtt->pt_ops->pte_encode_bo(bo, src_idx * XE_PAGE_SIZE,
> -                                                             xe->pat.idx[XE_CACHE_NONE]);
> +                       u64 addr = xe_bo_addr(bo, src_idx * XE_PAGE_SIZE, XE_PAGE_SIZE);
>
> -                       ggtt->pt_ops->ggtt_set_pte(ggtt, *ggtt_ofs, pte);
> +                       ggtt->pt_ops->ggtt_set_pte(ggtt, *ggtt_ofs, pte | addr);
>                         *ggtt_ofs += XE_PAGE_SIZE;
>                         src_idx -= src_stride;
>                 }
> @@ -217,26 +217,19 @@ static int __xe_pin_fb_vma_ggtt(const struct intel_framebuffer *fb,
>         if (bo->ggtt_node[tile0->id] && view->type == I915_GTT_VIEW_NORMAL) {
>                 vma->node = bo->ggtt_node[tile0->id];
>         } else if (view->type == I915_GTT_VIEW_NORMAL) {
> -               u32 x, size = bo->ttm.base.size;
> -
>                 vma->node = xe_ggtt_node_init(ggtt);
>                 if (IS_ERR(vma->node)) {
>                         ret = PTR_ERR(vma->node);
>                         goto out_unlock;
>                 }
>
> -               ret = xe_ggtt_node_insert_locked(vma->node, size, align, 0);
> +               ret = xe_ggtt_node_insert_locked(vma->node, bo->size, align, 0);
>                 if (ret) {
>                         xe_ggtt_node_fini(vma->node);
>                         goto out_unlock;
>                 }
>
> -               for (x = 0; x < size; x += XE_PAGE_SIZE) {
> -                       u64 pte = ggtt->pt_ops->pte_encode_bo(bo, x,
> -                                                             xe->pat.idx[XE_CACHE_NONE]);
> -
> -                       ggtt->pt_ops->ggtt_set_pte(ggtt, vma->node->base.start + x, pte);
> -               }
> +               xe_ggtt_map_bo(ggtt, vma->node, bo, xe->pat.idx[XE_CACHE_NONE]);
>         } else {
>                 u32 i, ggtt_ofs;
>                 const struct intel_rotation_info *rot_info = &view->rotated;
> --
> 2.45.2
>


More information about the Intel-xe mailing list