]> git.ipfire.org Git - thirdparty/linux.git/commit
drm/ast: Use constants for MCR registers
authorThomas Zimmermann <tzimmermann@suse.de>
Fri, 27 Mar 2026 13:32:56 +0000 (14:32 +0100)
committerThomas Zimmermann <tzimmermann@suse.de>
Wed, 8 Apr 2026 09:04:48 +0000 (11:04 +0200)
commit392993767d940fd3d0db35e64b5fcf4e00f2ea49
treeb889bf0c8ce5474d868b5aaf4d30c505e244313d
parente1e31ef34f63bdbee392a5b02d590bacb2296595
drm/ast: Use constants for MCR registers

SDRAM registers are located in the memory range at
[0x1e160000, 0x1e160fff]. Refer to them with constants named
AST_REG_MCR<n>, where n is the byte offset into the range.

Replacing the magic values in the ast driver was done with grep
and sed as shown below

  git grep -l \,\ 0x1e6e00 | xargs sed -i -e 's/, 0x1e6e00/, AST_REG_MCR/g'
  git grep -l \,\ 0x1E6E00 | xargs sed -i -e 's/, 0x1E6E00/, AST_REG_MCR/g'

plus some manual fixes.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://patch.msgid.link/20260327133532.79696-5-tzimmermann@suse.de
drivers/gpu/drm/ast/ast_2000.c
drivers/gpu/drm/ast/ast_2100.c
drivers/gpu/drm/ast/ast_2300.c
drivers/gpu/drm/ast/ast_2500.c
drivers/gpu/drm/ast/ast_dp501.c
drivers/gpu/drm/ast/ast_drv.c
drivers/gpu/drm/ast/ast_post.c
drivers/gpu/drm/ast/ast_reg.h