Patch "drm/ast: Init iosys_map pointer as I/O memory for damage handling" has been added to the 6.2-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/ast: Init iosys_map pointer as I/O memory for damage handling

to the 6.2-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-ast-init-iosys_map-pointer-as-i-o-memory-for-dam.patch
and it can be found in the queue-6.2 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit b2a17e82bac4c09bfd0c1c42bb4eb6f145eb12fc
Author: Thomas Zimmermann <tzimmermann@xxxxxxx>
Date:   Fri Dec 16 20:30:05 2022 +0100

    drm/ast: Init iosys_map pointer as I/O memory for damage handling
    
    [ Upstream commit b1def7fadfa544bd2467581ce40b659583eb7e79 ]
    
    Ast hardware scans out the primary plane from video memory, which
    is in I/O-memory space. Hence init the damage handler's iosys_map
    pointer as I/O memory.
    
    Not all platforms support accessing I/O memory as system memory,
    although it's usually not a problem in ast's x86-based systems.
    
    The error report is at [1].
    
    Reported-by: kernel test robot <lkp@xxxxxxxxx>
    Signed-off-by: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Reviewed-by: Jocelyn Falempe <jfalempe@xxxxxxxxxx>
    Fixes: f2fa5a99ca81 ("drm/ast: Convert ast to SHMEM")
    Cc: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Cc: Jocelyn Falempe <jfalempe@xxxxxxxxxx>
    Cc: Dave Airlie <airlied@xxxxxxxxxx>
    Cc: dri-devel@xxxxxxxxxxxxxxxxxxxxx
    Link: https://lore.kernel.org/lkml/202212170111.eInM0unS-lkp@xxxxxxxxx/T/#u # 1
    Link: https://patchwork.freedesktop.org/patch/msgid/20221216193005.30280-1-tzimmermann@xxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
index 66a4a41c3fe94..d314b9e7c05f9 100644
--- a/drivers/gpu/drm/ast/ast_mode.c
+++ b/drivers/gpu/drm/ast/ast_mode.c
@@ -636,7 +636,7 @@ static void ast_handle_damage(struct ast_plane *ast_plane, struct iosys_map *src
 			      struct drm_framebuffer *fb,
 			      const struct drm_rect *clip)
 {
-	struct iosys_map dst = IOSYS_MAP_INIT_VADDR(ast_plane->vaddr);
+	struct iosys_map dst = IOSYS_MAP_INIT_VADDR_IOMEM(ast_plane->vaddr);
 
 	iosys_map_incr(&dst, drm_fb_clip_offset(fb->pitches[0], fb->format, clip));
 	drm_fb_memcpy(&dst, fb->pitches, src, fb, clip);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux