io.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2007-2009 PetaLogix
  4. * Copyright (C) 2006 Atmark Techno, Inc.
  5. *
  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
  8. * for more details.
  9. */
  10. #ifndef _ASM_MICROBLAZE_IO_H
  11. #define _ASM_MICROBLAZE_IO_H
  12. #include <asm/byteorder.h>
  13. #include <asm/page.h>
  14. #include <linux/types.h>
  15. #include <linux/mm.h> /* Get struct page {...} */
  16. #ifndef CONFIG_PCI
  17. #define _IO_BASE 0
  18. #define _ISA_MEM_BASE 0
  19. #else
  20. #define _IO_BASE isa_io_base
  21. #define _ISA_MEM_BASE isa_mem_base
  22. struct pci_dev;
  23. extern void pci_iounmap(struct pci_dev *dev, void __iomem *);
  24. #define pci_iounmap pci_iounmap
  25. extern unsigned long isa_io_base;
  26. extern resource_size_t isa_mem_base;
  27. #endif
  28. #define PCI_IOBASE ((void __iomem *)_IO_BASE)
  29. #define IO_SPACE_LIMIT (0xFFFFFFFF)
  30. #ifdef CONFIG_MMU
  31. #define page_to_bus(page) (page_to_phys(page))
  32. extern void iounmap(void __iomem *addr);
  33. extern void __iomem *ioremap(phys_addr_t address, unsigned long size);
  34. #define ioremap_nocache(addr, size) ioremap((addr), (size))
  35. #define ioremap_fullcache(addr, size) ioremap((addr), (size))
  36. #define ioremap_wc(addr, size) ioremap((addr), (size))
  37. #define ioremap_wt(addr, size) ioremap((addr), (size))
  38. #endif /* CONFIG_MMU */
  39. /* Big Endian */
  40. #define out_be32(a, v) __raw_writel((v), (void __iomem __force *)(a))
  41. #define out_be16(a, v) __raw_writew((v), (a))
  42. #define in_be32(a) __raw_readl((const void __iomem __force *)(a))
  43. #define in_be16(a) __raw_readw(a)
  44. #define writel_be(v, a) out_be32((__force unsigned *)a, v)
  45. #define readl_be(a) in_be32((__force unsigned *)a)
  46. /* Little endian */
  47. #define out_le32(a, v) __raw_writel(__cpu_to_le32(v), (a))
  48. #define out_le16(a, v) __raw_writew(__cpu_to_le16(v), (a))
  49. #define in_le32(a) __le32_to_cpu(__raw_readl(a))
  50. #define in_le16(a) __le16_to_cpu(__raw_readw(a))
  51. /* Byte ops */
  52. #define out_8(a, v) __raw_writeb((v), (a))
  53. #define in_8(a) __raw_readb(a)
  54. #include <asm-generic/io.h>
  55. #endif /* _ASM_MICROBLAZE_IO_H */