neponset.h 834 B

12345678910111213141516171819202122232425262728293031
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * arch/arm/mach-sa1100/include/mach/neponset.h
  4. *
  5. * Created 2000/06/05 by Nicolas Pitre <[email protected]>
  6. *
  7. * This file contains the hardware specific definitions for Assabet
  8. * Only include this file from SA1100-specific files.
  9. *
  10. * 2000/05/23 John Dorsey <[email protected]>
  11. * Definitions for Neponset added.
  12. */
  13. #ifndef __ASM_ARCH_NEPONSET_H
  14. #define __ASM_ARCH_NEPONSET_H
  15. /*
  16. * Neponset definitions:
  17. */
  18. #define NCR_GP01_OFF (1<<0)
  19. #define NCR_TP_PWR_EN (1<<1)
  20. #define NCR_MS_PWR_EN (1<<2)
  21. #define NCR_ENET_OSC_EN (1<<3)
  22. #define NCR_SPI_KB_WK_UP (1<<4)
  23. #define NCR_A0VPP (1<<5)
  24. #define NCR_A1VPP (1<<6)
  25. void neponset_ncr_frob(unsigned int, unsigned int);
  26. #define neponset_ncr_set(v) neponset_ncr_frob(0, v)
  27. #define neponset_ncr_clear(v) neponset_ncr_frob(v, 0)
  28. #endif