neponset.h 795 B

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