sparclinux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sui Jingfeng <15330273260@189.cn>
To: Thomas Zimmermann <tzimmermann@suse.de>,
	deller@gmx.de, geert@linux-m68k.org, javierm@redhat.com,
	daniel@ffwll.ch, vgupta@kernel.org, chenhuacai@kernel.org,
	kernel@xen0n.name, davem@davemloft.net,
	James.Bottomley@HansenPartnership.com, arnd@arndb.de,
	sam@ravnborg.org
Cc: linux-arch@vger.kernel.org, linux-fbdev@vger.kernel.org,
	linux-ia64@vger.kernel.org, linux-parisc@vger.kernel.org,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-m68k@lists.linux-m68k.org, loongarch@lists.linux.dev,
	sparclinux@vger.kernel.org, linux-snps-arc@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [v4,6/6] fbdev: Rename fb_mem*() helpers
Date: Thu, 4 May 2023 19:33:42 +0800	[thread overview]
Message-ID: <799a4027-cd45-5005-1b3d-56213fcd9042@189.cn> (raw)
In-Reply-To: <20230504074539.8181-7-tzimmermann@suse.de>


Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn>


On 2023/5/4 15:45, Thomas Zimmermann wrote:
> Update the names of the fb_mem*() helpers to be consistent with their
> regular counterparts. Hence, fb_memset() now becomes fb_memset_io(),
> fb_memcpy_fromfb() now becomes fb_memcpy_fromio() and fb_memcpy_tofb()
> becomes fb_memcpy_toio(). No functional changes.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>   arch/ia64/include/asm/fb.h              | 12 ++++++------
>   arch/loongarch/include/asm/fb.h         | 12 ++++++------
>   arch/sparc/include/asm/fb.h             | 12 ++++++------
>   drivers/video/fbdev/aty/mach64_cursor.c |  2 +-
>   drivers/video/fbdev/chipsfb.c           |  2 +-
>   drivers/video/fbdev/core/fbmem.c        |  4 ++--
>   drivers/video/fbdev/kyro/fbdev.c        |  2 +-
>   drivers/video/fbdev/pvr2fb.c            |  2 +-
>   drivers/video/fbdev/sstfb.c             |  2 +-
>   drivers/video/fbdev/stifb.c             |  4 ++--
>   drivers/video/fbdev/tdfxfb.c            |  2 +-
>   include/asm-generic/fb.h                | 16 ++++++++--------
>   12 files changed, 36 insertions(+), 36 deletions(-)
>
> diff --git a/arch/ia64/include/asm/fb.h b/arch/ia64/include/asm/fb.h
> index bcf982043a5c..1717b26fd423 100644
> --- a/arch/ia64/include/asm/fb.h
> +++ b/arch/ia64/include/asm/fb.h
> @@ -20,23 +20,23 @@ static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
>   }
>   #define fb_pgprotect fb_pgprotect
>   
> -static inline void fb_memcpy_fromfb(void *to, const volatile void __iomem *from, size_t n)
> +static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
>   {
>   	memcpy(to, (void __force *)from, n);
>   }
> -#define fb_memcpy_fromfb fb_memcpy_fromfb
> +#define fb_memcpy_fromio fb_memcpy_fromio
>   
> -static inline void fb_memcpy_tofb(volatile void __iomem *to, const void *from, size_t n)
> +static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
>   {
>   	memcpy((void __force *)to, from, n);
>   }
> -#define fb_memcpy_tofb fb_memcpy_tofb
> +#define fb_memcpy_toio fb_memcpy_toio
>   
> -static inline void fb_memset(volatile void __iomem *addr, int c, size_t n)
> +static inline void fb_memset_io(volatile void __iomem *addr, int c, size_t n)
>   {
>   	memset((void __force *)addr, c, n);
>   }
> -#define fb_memset fb_memset
> +#define fb_memset fb_memset_io
>   
>   #include <asm-generic/fb.h>
>   
> diff --git a/arch/loongarch/include/asm/fb.h b/arch/loongarch/include/asm/fb.h
> index c6fc7ef374a4..0b218b10a9ec 100644
> --- a/arch/loongarch/include/asm/fb.h
> +++ b/arch/loongarch/include/asm/fb.h
> @@ -8,23 +8,23 @@
>   #include <linux/compiler.h>
>   #include <linux/string.h>
>   
> -static inline void fb_memcpy_fromfb(void *to, const volatile void __iomem *from, size_t n)
> +static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
>   {
>   	memcpy(to, (void __force *)from, n);
>   }
> -#define fb_memcpy_fromfb fb_memcpy_fromfb
> +#define fb_memcpy_fromio fb_memcpy_fromio
>   
> -static inline void fb_memcpy_tofb(volatile void __iomem *to, const void *from, size_t n)
> +static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
>   {
>   	memcpy((void __force *)to, from, n);
>   }
> -#define fb_memcpy_tofb fb_memcpy_tofb
> +#define fb_memcpy_toio fb_memcpy_toio
>   
> -static inline void fb_memset(volatile void __iomem *addr, int c, size_t n)
> +static inline void fb_memset_io(volatile void __iomem *addr, int c, size_t n)
>   {
>   	memset((void __force *)addr, c, n);
>   }
> -#define fb_memset fb_memset
> +#define fb_memset fb_memset_io
>   
>   #include <asm-generic/fb.h>
>   
> diff --git a/arch/sparc/include/asm/fb.h b/arch/sparc/include/asm/fb.h
> index 077da91aeba1..572ecd3e1cc4 100644
> --- a/arch/sparc/include/asm/fb.h
> +++ b/arch/sparc/include/asm/fb.h
> @@ -18,23 +18,23 @@ static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
>   int fb_is_primary_device(struct fb_info *info);
>   #define fb_is_primary_device fb_is_primary_device
>   
> -static inline void fb_memcpy_fromfb(void *to, const volatile void __iomem *from, size_t n)
> +static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
>   {
>   	sbus_memcpy_fromio(to, from, n);
>   }
> -#define fb_memcpy_fromfb fb_memcpy_fromfb
> +#define fb_memcpy_fromio fb_memcpy_fromio
>   
> -static inline void fb_memcpy_tofb(volatile void __iomem *to, const void *from, size_t n)
> +static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
>   {
>   	sbus_memcpy_toio(to, from, n);
>   }
> -#define fb_memcpy_tofb fb_memcpy_tofb
> +#define fb_memcpy_toio fb_memcpy_toio
>   
> -static inline void fb_memset(volatile void __iomem *addr, int c, size_t n)
> +static inline void fb_memset_io(volatile void __iomem *addr, int c, size_t n)
>   {
>   	sbus_memset_io(addr, c, n);
>   }
> -#define fb_memset fb_memset
> +#define fb_memset fb_memset_io
>   
>   #include <asm-generic/fb.h>
>   
> diff --git a/drivers/video/fbdev/aty/mach64_cursor.c b/drivers/video/fbdev/aty/mach64_cursor.c
> index 4ad0331a8c57..971355c2cd7e 100644
> --- a/drivers/video/fbdev/aty/mach64_cursor.c
> +++ b/drivers/video/fbdev/aty/mach64_cursor.c
> @@ -153,7 +153,7 @@ static int atyfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
>   	    u8 m, b;
>   
>   	    // Clear cursor image with 1010101010...
> -	    fb_memset(dst, 0xaa, 1024);
> +	    fb_memset_io(dst, 0xaa, 1024);
>   
>   	    offset = align - width*2;
>   
> diff --git a/drivers/video/fbdev/chipsfb.c b/drivers/video/fbdev/chipsfb.c
> index 7799d52a651f..2a27ba94f652 100644
> --- a/drivers/video/fbdev/chipsfb.c
> +++ b/drivers/video/fbdev/chipsfb.c
> @@ -332,7 +332,7 @@ static const struct fb_var_screeninfo chipsfb_var = {
>   
>   static void init_chips(struct fb_info *p, unsigned long addr)
>   {
> -	fb_memset(p->screen_base, 0, 0x100000);
> +	fb_memset_io(p->screen_base, 0, 0x100000);
>   
>   	p->fix = chipsfb_fix;
>   	p->fix.smem_start = addr;
> diff --git a/drivers/video/fbdev/core/fbmem.c b/drivers/video/fbdev/core/fbmem.c
> index 38f7e83fa6e3..d433ba8015a7 100644
> --- a/drivers/video/fbdev/core/fbmem.c
> +++ b/drivers/video/fbdev/core/fbmem.c
> @@ -802,7 +802,7 @@ fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
>   	while (count) {
>   		c  = (count > PAGE_SIZE) ? PAGE_SIZE : count;
>   		dst = buffer;
> -		fb_memcpy_fromfb(dst, src, c);
> +		fb_memcpy_fromio(dst, src, c);
>   		dst += c;
>   		src += c;
>   
> @@ -879,7 +879,7 @@ fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
>   			break;
>   		}
>   
> -		fb_memcpy_tofb(dst, src, c);
> +		fb_memcpy_toio(dst, src, c);
>   		dst += c;
>   		src += c;
>   		*ppos += c;
> diff --git a/drivers/video/fbdev/kyro/fbdev.c b/drivers/video/fbdev/kyro/fbdev.c
> index 0596573ef140..3f277bdb3a32 100644
> --- a/drivers/video/fbdev/kyro/fbdev.c
> +++ b/drivers/video/fbdev/kyro/fbdev.c
> @@ -737,7 +737,7 @@ static int kyrofb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
>   			       info->var.bits_per_pixel);
>   	size *= info->var.yres_virtual;
>   
> -	fb_memset(info->screen_base, 0, size);
> +	fb_memset_io(info->screen_base, 0, size);
>   
>   	if (register_framebuffer(info) < 0)
>   		goto out_unmap;
> diff --git a/drivers/video/fbdev/pvr2fb.c b/drivers/video/fbdev/pvr2fb.c
> index 6888127a5eb8..d8d97a9d2436 100644
> --- a/drivers/video/fbdev/pvr2fb.c
> +++ b/drivers/video/fbdev/pvr2fb.c
> @@ -798,7 +798,7 @@ static int __maybe_unused pvr2fb_common_init(void)
>   		goto out_err;
>   	}
>   
> -	fb_memset(fb_info->screen_base, 0, pvr2_fix.smem_len);
> +	fb_memset_io(fb_info->screen_base, 0, pvr2_fix.smem_len);
>   
>   	pvr2_fix.ypanstep	= nopan  ? 0 : 1;
>   	pvr2_fix.ywrapstep	= nowrap ? 0 : 1;
> diff --git a/drivers/video/fbdev/sstfb.c b/drivers/video/fbdev/sstfb.c
> index da296b2ab54a..582324f5d869 100644
> --- a/drivers/video/fbdev/sstfb.c
> +++ b/drivers/video/fbdev/sstfb.c
> @@ -335,7 +335,7 @@ static int sst_calc_pll(const int freq, int *freq_out, struct pll_timing *t)
>   static void sstfb_clear_screen(struct fb_info *info)
>   {
>   	/* clear screen */
> -	fb_memset(info->screen_base, 0, info->fix.smem_len);
> +	fb_memset_io(info->screen_base, 0, info->fix.smem_len);
>   }
>   
>   
> diff --git a/drivers/video/fbdev/stifb.c b/drivers/video/fbdev/stifb.c
> index baca6974e288..01363dccfdaf 100644
> --- a/drivers/video/fbdev/stifb.c
> +++ b/drivers/video/fbdev/stifb.c
> @@ -527,8 +527,8 @@ rattlerSetupPlanes(struct stifb_info *fb)
>   	fb->id = saved_id;
>   
>   	for (y = 0; y < fb->info.var.yres; ++y)
> -		fb_memset(fb->info.screen_base + y * fb->info.fix.line_length,
> -			0xff, fb->info.var.xres * fb->info.var.bits_per_pixel/8);
> +		fb_memset_io(fb->info.screen_base + y * fb->info.fix.line_length,
> +			     0xff, fb->info.var.xres * fb->info.var.bits_per_pixel/8);
>   
>   	CRX24_SET_OVLY_MASK(fb);
>   	SETUP_FB(fb);
> diff --git a/drivers/video/fbdev/tdfxfb.c b/drivers/video/fbdev/tdfxfb.c
> index d17e5e1472aa..cdf8e9fe9948 100644
> --- a/drivers/video/fbdev/tdfxfb.c
> +++ b/drivers/video/fbdev/tdfxfb.c
> @@ -1116,7 +1116,7 @@ static int tdfxfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
>   		u8 *mask = (u8 *)cursor->mask;
>   		int i;
>   
> -		fb_memset(cursorbase, 0, 1024);
> +		fb_memset_io(cursorbase, 0, 1024);
>   
>   		for (i = 0; i < cursor->image.height; i++) {
>   			int h = 0;
> diff --git a/include/asm-generic/fb.h b/include/asm-generic/fb.h
> index 6ef624b3ce12..1964611f1ce2 100644
> --- a/include/asm-generic/fb.h
> +++ b/include/asm-generic/fb.h
> @@ -107,28 +107,28 @@ static inline void fb_writeq(u64 b, volatile void __iomem *addr)
>   #endif
>   #endif
>   
> -#ifndef fb_memcpy_fromfb
> -static inline void fb_memcpy_fromfb(void *to, const volatile void __iomem *from, size_t n)
> +#ifndef fb_memcpy_fromio
> +static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
>   {
>   	memcpy_fromio(to, from, n);
>   }
> -#define fb_memcpy_fromfb fb_memcpy_fromfb
> +#define fb_memcpy_fromio fb_memcpy_fromio
>   #endif
>   
> -#ifndef fb_memcpy_tofb
> -static inline void fb_memcpy_tofb(volatile void __iomem *to, const void *from, size_t n)
> +#ifndef fb_memcpy_toio
> +static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
>   {
>   	memcpy_toio(to, from, n);
>   }
> -#define fb_memcpy_tofb fb_memcpy_tofb
> +#define fb_memcpy_toio fb_memcpy_toio
>   #endif
>   
>   #ifndef fb_memset
> -static inline void fb_memset(volatile void __iomem *addr, int c, size_t n)
> +static inline void fb_memset_io(volatile void __iomem *addr, int c, size_t n)
>   {
>   	memset_io(addr, c, n);
>   }
> -#define fb_memset fb_memset
> +#define fb_memset fb_memset_io
>   #endif
>   
>   #endif /* __ASM_GENERIC_FB_H_ */

  reply	other threads:[~2023-05-04 11:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-04  7:45 [PATCH v4 0/6] fbdev: Move framebuffer I/O helpers to <asm/fb.h> Thomas Zimmermann
2023-05-04  7:45 ` [PATCH v4 1/6] fbdev/matrox: Remove trailing whitespaces Thomas Zimmermann
2023-05-04 11:25   ` [v4,1/6] " Sui Jingfeng
2023-05-04  7:45 ` [PATCH v4 2/6] ipu-v3: Include <linux/io.h> Thomas Zimmermann
2023-05-04 11:30   ` [v4,2/6] " Sui Jingfeng
2023-05-04  7:45 ` [PATCH v4 3/6] fbdev: Include <linux/io.h> in various drivers Thomas Zimmermann
2023-05-04 11:31   ` [v4,3/6] " Sui Jingfeng
2023-05-04  7:45 ` [PATCH v4 4/6] fbdev: Include <linux/fb.h> instead of <asm/fb.h> Thomas Zimmermann
2023-05-04 11:34   ` [v4,4/6] " Sui Jingfeng
2023-05-04 15:37   ` [PATCH v4 4/6] " Sam Ravnborg
2023-05-05  7:02     ` Thomas Zimmermann
2023-05-04  7:45 ` [PATCH v4 5/6] fbdev: Move framebuffer I/O helpers into <asm/fb.h> Thomas Zimmermann
2023-05-04 11:59   ` [v4,5/6] " Sui Jingfeng
2023-05-05  6:59     ` Thomas Zimmermann
2023-05-04  7:45 ` [PATCH v4 6/6] fbdev: Rename fb_mem*() helpers Thomas Zimmermann
2023-05-04 11:33   ` Sui Jingfeng [this message]
2023-05-04  8:08 ` [PATCH v4 0/6] fbdev: Move framebuffer I/O helpers to <asm/fb.h> Arnd Bergmann
2023-05-05  7:01   ` Thomas Zimmermann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=799a4027-cd45-5005-1b3d-56213fcd9042@189.cn \
    --to=15330273260@189.cn \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=arnd@arndb.de \
    --cc=chenhuacai@kernel.org \
    --cc=daniel@ffwll.ch \
    --cc=davem@davemloft.net \
    --cc=deller@gmx.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert@linux-m68k.org \
    --cc=javierm@redhat.com \
    --cc=kernel@xen0n.name \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@lists.linux-m68k.org \
    --cc=linux-parisc@vger.kernel.org \
    --cc=linux-snps-arc@lists.infradead.org \
    --cc=loongarch@lists.linux.dev \
    --cc=sam@ravnborg.org \
    --cc=sparclinux@vger.kernel.org \
    --cc=tzimmermann@suse.de \
    --cc=vgupta@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).