|
#define | mmiowb() do {} while (0) |
|
#define | __raw_readb readb |
|
#define | __raw_readw readw |
|
#define | __raw_readl readl |
|
#define | readb_relaxed readb |
|
#define | readw_relaxed readw |
|
#define | readl_relaxed readl |
|
#define | __raw_writeb writeb |
|
#define | __raw_writew writew |
|
#define | __raw_writel writel |
|
#define | inb_p(addr) inb(addr) |
|
#define | inw_p(addr) inw(addr) |
|
#define | inl_p(addr) inl(addr) |
|
#define | outb_p(x, addr) outb((x), (addr)) |
|
#define | outw_p(x, addr) outw((x), (addr)) |
|
#define | outl_p(x, addr) outl((x), (addr)) |
|
#define | ioread8(addr) readb(addr) |
|
#define | ioread16(addr) readw(addr) |
|
#define | ioread32(addr) readl(addr) |
|
#define | iowrite8(v, addr) writeb((v), (addr)) |
|
#define | iowrite16(v, addr) writew((v), (addr)) |
|
#define | iowrite32(v, addr) writel((v), (addr)) |
|
#define | ioread8_rep(p, dst, count) insb((unsigned long) (p), (dst), (count)) |
|
#define | ioread16_rep(p, dst, count) insw((unsigned long) (p), (dst), (count)) |
|
#define | ioread32_rep(p, dst, count) insl((unsigned long) (p), (dst), (count)) |
|
#define | iowrite8_rep(p, src, count) outsb((unsigned long) (p), (src), (count)) |
|
#define | iowrite16_rep(p, src, count) outsw((unsigned long) (p), (src), (count)) |
|
#define | iowrite32_rep(p, src, count) outsl((unsigned long) (p), (src), (count)) |
|
#define | readsb(p, dst, count) insb((unsigned long) (p), (dst), (count)) |
|
#define | readsw(p, dst, count) insw((unsigned long) (p), (dst), (count)) |
|
#define | readsl(p, dst, count) insl((unsigned long) (p), (dst), (count)) |
|
#define | writesb(p, src, count) outsb((unsigned long) (p), (src), (count)) |
|
#define | writesw(p, src, count) outsw((unsigned long) (p), (src), (count)) |
|
#define | writesl(p, src, count) outsl((unsigned long) (p), (src), (count)) |
|
#define | IO_SPACE_LIMIT 0xffffffff |
|