balloon3.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * linux/include/asm-arm/arch-pxa/balloon3.h
  3. *
  4. * Authors: Nick Bane and Wookey
  5. * Created: Oct, 2005
  6. * Copyright: Toby Churchill Ltd
  7. * Cribbed from mainstone.c, by Nicholas Pitre
  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. #ifndef ASM_ARCH_BALLOON3_H
  14. #define ASM_ARCH_BALLOON3_H
  15. #include "irqs.h" /* PXA_NR_BUILTIN_GPIO */
  16. enum balloon3_features {
  17. BALLOON3_FEATURE_OHCI,
  18. BALLOON3_FEATURE_MMC,
  19. BALLOON3_FEATURE_CF,
  20. BALLOON3_FEATURE_AUDIO,
  21. BALLOON3_FEATURE_TOPPOLY,
  22. };
  23. #define BALLOON3_FPGA_PHYS PXA_CS4_PHYS
  24. #define BALLOON3_FPGA_VIRT IOMEM(0xf1000000) /* as per balloon2 */
  25. #define BALLOON3_FPGA_LENGTH 0x01000000
  26. #define BALLOON3_FPGA_SETnCLR (0x1000)
  27. /* FPGA / CPLD registers for CF socket */
  28. #define BALLOON3_CF_STATUS_REG (BALLOON3_FPGA_VIRT + 0x00e00008)
  29. #define BALLOON3_CF_CONTROL_REG (BALLOON3_FPGA_VIRT + 0x00e00008)
  30. /* FPGA / CPLD version register */
  31. #define BALLOON3_FPGA_VER (BALLOON3_FPGA_VIRT + 0x00e0001c)
  32. /* FPGA / CPLD registers for NAND flash */
  33. #define BALLOON3_NAND_BASE (PXA_CS4_PHYS + 0x00e00000)
  34. #define BALLOON3_NAND_IO_REG (BALLOON3_FPGA_VIRT + 0x00e00000)
  35. #define BALLOON3_NAND_CONTROL2_REG (BALLOON3_FPGA_VIRT + 0x00e00010)
  36. #define BALLOON3_NAND_STAT_REG (BALLOON3_FPGA_VIRT + 0x00e00014)
  37. #define BALLOON3_NAND_CONTROL_REG (BALLOON3_FPGA_VIRT + 0x00e00014)
  38. /* fpga/cpld interrupt control register */
  39. #define BALLOON3_INT_CONTROL_REG (BALLOON3_FPGA_VIRT + 0x00e0000C)
  40. #define BALLOON3_VERSION_REG (BALLOON3_FPGA_VIRT + 0x00e0001c)
  41. #define BALLOON3_SAMOSA_ADDR_REG (BALLOON3_FPGA_VIRT + 0x00c00000)
  42. #define BALLOON3_SAMOSA_DATA_REG (BALLOON3_FPGA_VIRT + 0x00c00004)
  43. #define BALLOON3_SAMOSA_STATUS_REG (BALLOON3_FPGA_VIRT + 0x00c0001c)
  44. /* CF Status Register bits (read-only) bits */
  45. #define BALLOON3_CF_nIRQ (1 << 0)
  46. #define BALLOON3_CF_nSTSCHG_BVD1 (1 << 1)
  47. /* CF Control Set Register bits / CF Control Clear Register bits (write-only) */
  48. #define BALLOON3_CF_RESET (1 << 0)
  49. #define BALLOON3_CF_ENABLE (1 << 1)
  50. #define BALLOON3_CF_ADD_ENABLE (1 << 2)
  51. /* CF Interrupt sources */
  52. #define BALLOON3_BP_CF_NRDY_IRQ BALLOON3_IRQ(0)
  53. #define BALLOON3_BP_NSTSCHG_IRQ BALLOON3_IRQ(1)
  54. /* NAND Control register */
  55. #define BALLOON3_NAND_CONTROL_FLWP (1 << 7)
  56. #define BALLOON3_NAND_CONTROL_FLSE (1 << 6)
  57. #define BALLOON3_NAND_CONTROL_FLCE3 (1 << 5)
  58. #define BALLOON3_NAND_CONTROL_FLCE2 (1 << 4)
  59. #define BALLOON3_NAND_CONTROL_FLCE1 (1 << 3)
  60. #define BALLOON3_NAND_CONTROL_FLCE0 (1 << 2)
  61. #define BALLOON3_NAND_CONTROL_FLALE (1 << 1)
  62. #define BALLOON3_NAND_CONTROL_FLCLE (1 << 0)
  63. /* NAND Status register */
  64. #define BALLOON3_NAND_STAT_RNB (1 << 0)
  65. /* NAND Control2 register */
  66. #define BALLOON3_NAND_CONTROL2_16BIT (1 << 0)
  67. /* GPIOs for irqs */
  68. #define BALLOON3_GPIO_AUX_NIRQ (94)
  69. #define BALLOON3_GPIO_CODEC_IRQ (95)
  70. /* Timer and Idle LED locations */
  71. #define BALLOON3_GPIO_LED_NAND (9)
  72. #define BALLOON3_GPIO_LED_IDLE (10)
  73. /* backlight control */
  74. #define BALLOON3_GPIO_RUN_BACKLIGHT (99)
  75. #define BALLOON3_GPIO_S0_CD (105)
  76. /* NAND */
  77. #define BALLOON3_GPIO_RUN_NAND (102)
  78. /* PCF8574A Leds */
  79. #define BALLOON3_PCF_GPIO_BASE 160
  80. #define BALLOON3_PCF_GPIO_LED0 (BALLOON3_PCF_GPIO_BASE + 0)
  81. #define BALLOON3_PCF_GPIO_LED1 (BALLOON3_PCF_GPIO_BASE + 1)
  82. #define BALLOON3_PCF_GPIO_LED2 (BALLOON3_PCF_GPIO_BASE + 2)
  83. #define BALLOON3_PCF_GPIO_LED3 (BALLOON3_PCF_GPIO_BASE + 3)
  84. #define BALLOON3_PCF_GPIO_LED4 (BALLOON3_PCF_GPIO_BASE + 4)
  85. #define BALLOON3_PCF_GPIO_LED5 (BALLOON3_PCF_GPIO_BASE + 5)
  86. #define BALLOON3_PCF_GPIO_LED6 (BALLOON3_PCF_GPIO_BASE + 6)
  87. #define BALLOON3_PCF_GPIO_LED7 (BALLOON3_PCF_GPIO_BASE + 7)
  88. /* FPGA Interrupt Mask/Acknowledge Register */
  89. #define BALLOON3_INT_S0_IRQ (1 << 0) /* PCMCIA 0 IRQ */
  90. #define BALLOON3_INT_S0_STSCHG (1 << 1) /* PCMCIA 0 status changed */
  91. /* CPLD (and FPGA) interface definitions */
  92. #define CPLD_LCD0_DATA_SET 0x00
  93. #define CPLD_LCD0_DATA_CLR 0x10
  94. #define CPLD_LCD0_COMMAND_SET 0x01
  95. #define CPLD_LCD0_COMMAND_CLR 0x11
  96. #define CPLD_LCD1_DATA_SET 0x02
  97. #define CPLD_LCD1_DATA_CLR 0x12
  98. #define CPLD_LCD1_COMMAND_SET 0x03
  99. #define CPLD_LCD1_COMMAND_CLR 0x13
  100. #define CPLD_MISC_SET 0x07
  101. #define CPLD_MISC_CLR 0x17
  102. #define CPLD_MISC_LOON_NRESET_BIT 0
  103. #define CPLD_MISC_LOON_UNSUSP_BIT 1
  104. #define CPLD_MISC_RUN_5V_BIT 2
  105. #define CPLD_MISC_CHG_D0_BIT 3
  106. #define CPLD_MISC_CHG_D1_BIT 4
  107. #define CPLD_MISC_DAC_NCS_BIT 5
  108. #define CPLD_LCD_SET 0x08
  109. #define CPLD_LCD_CLR 0x18
  110. #define CPLD_LCD_BACKLIGHT_EN_0_BIT 0
  111. #define CPLD_LCD_BACKLIGHT_EN_1_BIT 1
  112. #define CPLD_LCD_LED_RED_BIT 4
  113. #define CPLD_LCD_LED_GREEN_BIT 5
  114. #define CPLD_LCD_NRESET_BIT 7
  115. #define CPLD_LCD_RO_SET 0x09
  116. #define CPLD_LCD_RO_CLR 0x19
  117. #define CPLD_LCD_RO_LCD0_nWAIT_BIT 0
  118. #define CPLD_LCD_RO_LCD1_nWAIT_BIT 1
  119. #define CPLD_SERIAL_SET 0x0a
  120. #define CPLD_SERIAL_CLR 0x1a
  121. #define CPLD_SERIAL_GSM_RI_BIT 0
  122. #define CPLD_SERIAL_GSM_CTS_BIT 1
  123. #define CPLD_SERIAL_GSM_DTR_BIT 2
  124. #define CPLD_SERIAL_LPR_CTS_BIT 3
  125. #define CPLD_SERIAL_TC232_CTS_BIT 4
  126. #define CPLD_SERIAL_TC232_DSR_BIT 5
  127. #define CPLD_SROUTING_SET 0x0b
  128. #define CPLD_SROUTING_CLR 0x1b
  129. #define CPLD_SROUTING_MSP430_LPR 0
  130. #define CPLD_SROUTING_MSP430_TC232 1
  131. #define CPLD_SROUTING_MSP430_GSM 2
  132. #define CPLD_SROUTING_LOON_LPR (0 << 4)
  133. #define CPLD_SROUTING_LOON_TC232 (1 << 4)
  134. #define CPLD_SROUTING_LOON_GSM (2 << 4)
  135. #define CPLD_AROUTING_SET 0x0c
  136. #define CPLD_AROUTING_CLR 0x1c
  137. #define CPLD_AROUTING_MIC2PHONE_BIT 0
  138. #define CPLD_AROUTING_PHONE2INT_BIT 1
  139. #define CPLD_AROUTING_PHONE2EXT_BIT 2
  140. #define CPLD_AROUTING_LOONL2INT_BIT 3
  141. #define CPLD_AROUTING_LOONL2EXT_BIT 4
  142. #define CPLD_AROUTING_LOONR2PHONE_BIT 5
  143. #define CPLD_AROUTING_LOONR2INT_BIT 6
  144. #define CPLD_AROUTING_LOONR2EXT_BIT 7
  145. /* Balloon3 Interrupts */
  146. #define BALLOON3_IRQ(x) (IRQ_BOARD_START + (x))
  147. #define BALLOON3_AUX_NIRQ PXA_GPIO_TO_IRQ(BALLOON3_GPIO_AUX_NIRQ)
  148. #define BALLOON3_CODEC_IRQ PXA_GPIO_TO_IRQ(BALLOON3_GPIO_CODEC_IRQ)
  149. #define BALLOON3_NR_IRQS (IRQ_BOARD_START + 16)
  150. extern int balloon3_has(enum balloon3_features feature);
  151. #endif