io.h 887 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * arch/arm/mach-orion5x/include/mach/io.h
  3. *
  4. * Tzachi Perelstein <tzachi@marvell.com>
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #ifndef __ASM_ARCH_IO_H
  11. #define __ASM_ARCH_IO_H
  12. #include "orion5x.h"
  13. #define IO_SPACE_LIMIT 0xffffffff
  14. #define __io(a) __typesafe_io(a)
  15. #define __mem_pci(a) (a)
  16. /*****************************************************************************
  17. * Helpers to access Orion registers
  18. ****************************************************************************/
  19. /*
  20. * These are not preempt-safe. Locks, if needed, must be taken
  21. * care of by the caller.
  22. */
  23. #define orion5x_setbits(r, mask) writel(readl(r) | (mask), (r))
  24. #define orion5x_clrbits(r, mask) writel(readl(r) & ~(mask), (r))
  25. #endif