2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 #ifndef _ASM_MICROBLAZE_IO_H
12 #define _ASM_MICROBLAZE_IO_H
14 #include <asm/byteorder.h>
16 #include <linux/types.h>
17 #include <linux/mm.h> /* Get struct page {...} */
21 #define _ISA_MEM_BASE 0
23 #define _IO_BASE isa_io_base
24 #define _ISA_MEM_BASE isa_mem_base
26 extern void pci_iounmap(struct pci_dev
*dev
, void __iomem
*);
27 #define pci_iounmap pci_iounmap
29 extern unsigned long isa_io_base
;
30 extern resource_size_t isa_mem_base
;
33 #define PCI_IOBASE ((void __iomem *)_IO_BASE)
34 #define IO_SPACE_LIMIT (0xFFFFFFFF)
37 #define page_to_bus(page) (page_to_phys(page))
39 extern void iounmap(volatile void __iomem
*addr
);
41 extern void __iomem
*ioremap(phys_addr_t address
, unsigned long size
);
42 #define ioremap_nocache(addr, size) ioremap((addr), (size))
43 #define ioremap_fullcache(addr, size) ioremap((addr), (size))
44 #define ioremap_wc(addr, size) ioremap((addr), (size))
45 #define ioremap_wt(addr, size) ioremap((addr), (size))
47 #endif /* CONFIG_MMU */
50 #define out_be32(a, v) __raw_writel((v), (void __iomem __force *)(a))
51 #define out_be16(a, v) __raw_writew((v), (a))
53 #define in_be32(a) __raw_readl((const void __iomem __force *)(a))
54 #define in_be16(a) __raw_readw(a)
56 #define writel_be(v, a) out_be32((__force unsigned *)a, v)
57 #define readl_be(a) in_be32((__force unsigned *)a)
60 #define out_le32(a, v) __raw_writel(__cpu_to_le32(v), (a))
61 #define out_le16(a, v) __raw_writew(__cpu_to_le16(v), (a))
63 #define in_le32(a) __le32_to_cpu(__raw_readl(a))
64 #define in_le16(a) __le16_to_cpu(__raw_readw(a))
67 #define out_8(a, v) __raw_writeb((v), (a))
68 #define in_8(a) __raw_readb(a)
70 #include <asm-generic/io.h>
72 #endif /* _ASM_MICROBLAZE_IO_H */