io.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * DaVinci IO address definitions
  3. *
  4. * Copied from include/asm/arm/arch-omap/io.h
  5. *
  6. * 2007 (c) MontaVista Software, Inc. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #ifndef __ASM_ARCH_IO_H
  12. #define __ASM_ARCH_IO_H
  13. #define IO_SPACE_LIMIT 0xffffffff
  14. /*
  15. * ----------------------------------------------------------------------------
  16. * I/O mapping
  17. * ----------------------------------------------------------------------------
  18. */
  19. #define IO_PHYS 0x01c00000
  20. #define IO_OFFSET 0xfd000000 /* Virtual IO = 0xfec00000 */
  21. #define IO_SIZE 0x00400000
  22. #define IO_VIRT (IO_PHYS + IO_OFFSET)
  23. #define io_v2p(va) ((va) - IO_OFFSET)
  24. #define __IO_ADDRESS(x) ((x) + IO_OFFSET)
  25. /*
  26. * We don't actually have real ISA nor PCI buses, but there is so many
  27. * drivers out there that might just work if we fake them...
  28. */
  29. #define __io(a) __typesafe_io(a)
  30. #define __mem_pci(a) (a)
  31. #define __mem_isa(a) (a)
  32. #define IO_ADDRESS(pa) IOMEM(__IO_ADDRESS(pa))
  33. #ifdef __ASSEMBLER__
  34. #define IOMEM(x) x
  35. #else
  36. #define IOMEM(x) ((void __force __iomem *)(x))
  37. #define __arch_ioremap(p, s, t) davinci_ioremap(p, s, t)
  38. #define __arch_iounmap(v) davinci_iounmap(v)
  39. void __iomem *davinci_ioremap(unsigned long phys, size_t size,
  40. unsigned int type);
  41. void davinci_iounmap(volatile void __iomem *addr);
  42. #endif /* __ASSEMBLER__ */
  43. #endif /* __ASM_ARCH_IO_H */