linux-zen-desktop/arch/ia64/include/asm/fb.h

44 lines
1.1 KiB
C
Raw Permalink Normal View History

2023-08-30 16:31:07 +01:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_FB_H_
#define _ASM_FB_H_
2023-10-24 11:59:35 +01:00
#include <linux/compiler.h>
2023-08-30 16:31:07 +01:00
#include <linux/efi.h>
2023-10-24 11:59:35 +01:00
#include <linux/string.h>
2023-08-30 16:31:07 +01:00
#include <asm/page.h>
2023-10-24 11:59:35 +01:00
struct file;
2023-08-30 16:31:07 +01:00
static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
unsigned long off)
{
if (efi_range_is_wc(vma->vm_start, vma->vm_end - vma->vm_start))
vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
else
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
}
2023-10-24 11:59:35 +01:00
#define fb_pgprotect fb_pgprotect
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_fromio fb_memcpy_fromio
2023-08-30 16:31:07 +01:00
2023-10-24 11:59:35 +01:00
static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
2023-08-30 16:31:07 +01:00
{
2023-10-24 11:59:35 +01:00
memcpy((void __force *)to, from, n);
2023-08-30 16:31:07 +01:00
}
2023-10-24 11:59:35 +01:00
#define fb_memcpy_toio fb_memcpy_toio
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_io
#include <asm-generic/fb.h>
2023-08-30 16:31:07 +01:00
#endif /* _ASM_FB_H_ */