badge4.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * arch/arm/mach-sa1100/include/mach/badge4.h
  3. *
  4. * Tim Connors <connors@hpl.hp.com>
  5. * Christopher Hoover <ch@hpl.hp.com>
  6. *
  7. * Copyright (C) 2002 Hewlett-Packard Company
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. */
  14. #ifndef __ASM_ARCH_HARDWARE_H
  15. #error "include <mach/hardware.h> instead"
  16. #endif
  17. #define BADGE4_SA1111_BASE (0x48000000)
  18. /* GPIOs on the BadgePAD 4 */
  19. #define BADGE4_GPIO_INT_1111 GPIO_GPIO0 /* SA-1111 IRQ */
  20. #define BADGE4_GPIO_INT_VID GPIO_GPIO1 /* Video expansion */
  21. #define BADGE4_GPIO_LGP2 GPIO_GPIO2 /* GPIO_LDD8 */
  22. #define BADGE4_GPIO_LGP3 GPIO_GPIO3 /* GPIO_LDD9 */
  23. #define BADGE4_GPIO_LGP4 GPIO_GPIO4 /* GPIO_LDD10 */
  24. #define BADGE4_GPIO_LGP5 GPIO_GPIO5 /* GPIO_LDD11 */
  25. #define BADGE4_GPIO_LGP6 GPIO_GPIO6 /* GPIO_LDD12 */
  26. #define BADGE4_GPIO_LGP7 GPIO_GPIO7 /* GPIO_LDD13 */
  27. #define BADGE4_GPIO_LGP8 GPIO_GPIO8 /* GPIO_LDD14 */
  28. #define BADGE4_GPIO_LGP9 GPIO_GPIO9 /* GPIO_LDD15 */
  29. #define BADGE4_GPIO_GPA_VID GPIO_GPIO10 /* Video expansion */
  30. #define BADGE4_GPIO_GPB_VID GPIO_GPIO11 /* Video expansion */
  31. #define BADGE4_GPIO_GPC_VID GPIO_GPIO12 /* Video expansion */
  32. #define BADGE4_GPIO_UART_HS1 GPIO_GPIO13
  33. #define BADGE4_GPIO_UART_HS2 GPIO_GPIO14
  34. #define BADGE4_GPIO_MUXSEL0 GPIO_GPIO15
  35. #define BADGE4_GPIO_TESTPT_J7 GPIO_GPIO16
  36. #define BADGE4_GPIO_SDSDA GPIO_GPIO17 /* SDRAM SPD Data */
  37. #define BADGE4_GPIO_SDSCL GPIO_GPIO18 /* SDRAM SPD Clock */
  38. #define BADGE4_GPIO_SDTYP0 GPIO_GPIO19 /* SDRAM Type Control */
  39. #define BADGE4_GPIO_SDTYP1 GPIO_GPIO20 /* SDRAM Type Control */
  40. #define BADGE4_GPIO_BGNT_1111 GPIO_GPIO21 /* GPIO_MBGNT */
  41. #define BADGE4_GPIO_BREQ_1111 GPIO_GPIO22 /* GPIO_TREQA */
  42. #define BADGE4_GPIO_TESTPT_J6 GPIO_GPIO23
  43. #define BADGE4_GPIO_PCMEN5V GPIO_GPIO24 /* 5V power */
  44. #define BADGE4_GPIO_SA1111_NRST GPIO_GPIO25 /* SA-1111 nRESET */
  45. #define BADGE4_GPIO_TESTPT_J5 GPIO_GPIO26
  46. #define BADGE4_GPIO_CLK_1111 GPIO_GPIO27 /* GPIO_32_768kHz */
  47. /* Interrupts on the BadgePAD 4 */
  48. #define BADGE4_IRQ_GPIO_SA1111 IRQ_GPIO0 /* SA-1111 interrupt */
  49. /* PCM5ENV Usage tracking */
  50. #define BADGE4_5V_PCMCIA_SOCK0 (1<<0)
  51. #define BADGE4_5V_PCMCIA_SOCK1 (1<<1)
  52. #define BADGE4_5V_PCMCIA_SOCK(n) (1<<(n))
  53. #define BADGE4_5V_USB (1<<2)
  54. #define BADGE4_5V_INITIALLY (1<<3)
  55. #ifndef __ASSEMBLY__
  56. extern void badge4_set_5V(unsigned subsystem, int on);
  57. #endif