io-defs.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* This file is meant to be include multiple times by other headers */
  2. /* last 2 argments are used by platforms/cell/io-workarounds.[ch] */
  3. DEF_PCI_AC_RET(readb, u8, (const PCI_IO_ADDR addr), (addr), mem, addr)
  4. DEF_PCI_AC_RET(readw, u16, (const PCI_IO_ADDR addr), (addr), mem, addr)
  5. DEF_PCI_AC_RET(readl, u32, (const PCI_IO_ADDR addr), (addr), mem, addr)
  6. DEF_PCI_AC_RET(readw_be, u16, (const PCI_IO_ADDR addr), (addr), mem, addr)
  7. DEF_PCI_AC_RET(readl_be, u32, (const PCI_IO_ADDR addr), (addr), mem, addr)
  8. DEF_PCI_AC_NORET(writeb, (u8 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  9. DEF_PCI_AC_NORET(writew, (u16 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  10. DEF_PCI_AC_NORET(writel, (u32 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  11. DEF_PCI_AC_NORET(writew_be, (u16 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  12. DEF_PCI_AC_NORET(writel_be, (u32 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  13. #ifdef __powerpc64__
  14. DEF_PCI_AC_RET(readq, u64, (const PCI_IO_ADDR addr), (addr), mem, addr)
  15. DEF_PCI_AC_RET(readq_be, u64, (const PCI_IO_ADDR addr), (addr), mem, addr)
  16. DEF_PCI_AC_NORET(writeq, (u64 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  17. DEF_PCI_AC_NORET(writeq_be, (u64 val, PCI_IO_ADDR addr), (val, addr), mem, addr)
  18. #endif /* __powerpc64__ */
  19. DEF_PCI_AC_RET(inb, u8, (unsigned long port), (port), pio, port)
  20. DEF_PCI_AC_RET(inw, u16, (unsigned long port), (port), pio, port)
  21. DEF_PCI_AC_RET(inl, u32, (unsigned long port), (port), pio, port)
  22. DEF_PCI_AC_NORET(outb, (u8 val, unsigned long port), (val, port), pio, port)
  23. DEF_PCI_AC_NORET(outw, (u16 val, unsigned long port), (val, port), pio, port)
  24. DEF_PCI_AC_NORET(outl, (u32 val, unsigned long port), (val, port), pio, port)
  25. DEF_PCI_AC_NORET(readsb, (const PCI_IO_ADDR a, void *b, unsigned long c),
  26. (a, b, c), mem, a)
  27. DEF_PCI_AC_NORET(readsw, (const PCI_IO_ADDR a, void *b, unsigned long c),
  28. (a, b, c), mem, a)
  29. DEF_PCI_AC_NORET(readsl, (const PCI_IO_ADDR a, void *b, unsigned long c),
  30. (a, b, c), mem, a)
  31. DEF_PCI_AC_NORET(writesb, (PCI_IO_ADDR a, const void *b, unsigned long c),
  32. (a, b, c), mem, a)
  33. DEF_PCI_AC_NORET(writesw, (PCI_IO_ADDR a, const void *b, unsigned long c),
  34. (a, b, c), mem, a)
  35. DEF_PCI_AC_NORET(writesl, (PCI_IO_ADDR a, const void *b, unsigned long c),
  36. (a, b, c), mem, a)
  37. DEF_PCI_AC_NORET(insb, (unsigned long p, void *b, unsigned long c),
  38. (p, b, c), pio, p)
  39. DEF_PCI_AC_NORET(insw, (unsigned long p, void *b, unsigned long c),
  40. (p, b, c), pio, p)
  41. DEF_PCI_AC_NORET(insl, (unsigned long p, void *b, unsigned long c),
  42. (p, b, c), pio, p)
  43. DEF_PCI_AC_NORET(outsb, (unsigned long p, const void *b, unsigned long c),
  44. (p, b, c), pio, p)
  45. DEF_PCI_AC_NORET(outsw, (unsigned long p, const void *b, unsigned long c),
  46. (p, b, c), pio, p)
  47. DEF_PCI_AC_NORET(outsl, (unsigned long p, const void *b, unsigned long c),
  48. (p, b, c), pio, p)
  49. DEF_PCI_AC_NORET(memset_io, (PCI_IO_ADDR a, int c, unsigned long n),
  50. (a, c, n), mem, a)
  51. DEF_PCI_AC_NORET(memcpy_fromio, (void *d, const PCI_IO_ADDR s, unsigned long n),
  52. (d, s, n), mem, s)
  53. DEF_PCI_AC_NORET(memcpy_toio, (PCI_IO_ADDR d, const void *s, unsigned long n),
  54. (d, s, n), mem, d)