io.h 672 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * arch/arm/mach-rpc/include/mach/io.h
  4. *
  5. * Copyright (C) 1997 Russell King
  6. *
  7. * Modifications:
  8. * 06-Dec-1997 RMK Created.
  9. */
  10. #ifndef __ASM_ARM_ARCH_IO_H
  11. #define __ASM_ARM_ARCH_IO_H
  12. #include <mach/hardware.h>
  13. #define IO_SPACE_LIMIT 0xffff
  14. /*
  15. * We need PC style IO addressing for:
  16. * - floppy (at 0x3f2,0x3f4,0x3f5,0x3f7)
  17. * - parport (at 0x278-0x27a, 0x27b-0x27f, 0x778-0x77a)
  18. * - 8250 serial (only for compile)
  19. *
  20. * These peripherals are found in an area of MMIO which looks very much
  21. * like an ISA bus, but with registers at the low byte of each word.
  22. */
  23. #define __io(a) (PCIO_BASE + ((a) << 2))
  24. #endif