Go to the documentation of this file.
7 #ifndef _LINUX_ASM_VGA_H_
8 #define _LINUX_ASM_VGA_H_
12 #define VT_BUF_HAVE_RW
13 #define VT_BUF_HAVE_MEMSETW
14 #define VT_BUF_HAVE_MEMCPYW
18 if (__is_ioaddr(addr))
26 if (__is_ioaddr(addr))
32 static inline void scr_memsetw(
u16 *
s,
u16 c,
unsigned int count)
46 #define vga_readb(a) readb((u8 __iomem *)(a))
47 #define vga_writeb(v,a) writeb(v, (u8 __iomem *)(a))
49 #ifdef CONFIG_VGA_HOSE
51 #include <linux/pci.h>
55 # define __is_port_vga(a) \
56 (((a) >= 0x3b0) && ((a) < 0x3e0) && \
57 ((a) != 0x3b3) && ((a) != 0x3d3))
59 # define __is_mem_vga(a) \
60 (((a) >= 0xa0000) && ((a) <= 0xc0000))
62 # define FIXUP_IOADDR_VGA(a) do { \
63 if (pci_vga_hose && __is_port_vga(a)) \
64 (a) += pci_vga_hose->io_space->start; \
67 # define FIXUP_MEMADDR_VGA(a) do { \
68 if (pci_vga_hose && __is_mem_vga(a)) \
69 (a) += pci_vga_hose->mem_space->start; \
73 # define pci_vga_hose 0
74 # define __is_port_vga(a) 0
75 # define __is_mem_vga(a) 0
76 # define FIXUP_IOADDR_VGA(a)
77 # define FIXUP_MEMADDR_VGA(a)
80 #define VGA_MAP_MEM(x,s) ((unsigned long) ioremap(x, s))