Go to the documentation of this file.
12 #ifndef __UNICORE_IO_H__
13 #define __UNICORE_IO_H__
17 #include <asm/byteorder.h>
18 #include <asm/memory.h>
20 #define PCI_IOBASE PKUNITY_PCILIO_BASE
37 #define ioremap(cookie, size) __uc32_ioremap(cookie, size)
38 #define ioremap_cached(cookie, size) __uc32_ioremap_cached(cookie, size)
39 #define ioremap_nocache(cookie, size) __uc32_ioremap(cookie, size)
40 #define iounmap(cookie) __uc32_iounmap(cookie)
42 #define HAVE_ARCH_PIO_SIZE
43 #define PIO_OFFSET (unsigned int)(PCI_IOBASE)
44 #define PIO_MASK (unsigned int)(IO_SPACE_LIMIT)
45 #define PIO_RESERVED (PIO_OFFSET + PIO_MASK + 1)