mux.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. /*
  2. * linux/arch/arm/mach-omap2/mux.c
  3. *
  4. * OMAP2 and OMAP3 pin multiplexing configurations
  5. *
  6. * Copyright (C) 2004 - 2008 Texas Instruments Inc.
  7. * Copyright (C) 2003 - 2008 Nokia Corporation
  8. *
  9. * Written by Tony Lindgren
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. *
  25. */
  26. #include <linux/module.h>
  27. #include <linux/init.h>
  28. #include <linux/io.h>
  29. #include <linux/spinlock.h>
  30. #include <linux/list.h>
  31. #include <linux/ctype.h>
  32. #include <linux/debugfs.h>
  33. #include <linux/seq_file.h>
  34. #include <linux/uaccess.h>
  35. #include <asm/system.h>
  36. #include <plat/control.h>
  37. #include <plat/mux.h>
  38. #include "mux.h"
  39. #define OMAP_MUX_BASE_OFFSET 0x30 /* Offset from CTRL_BASE */
  40. #define OMAP_MUX_BASE_SZ 0x5ca
  41. struct omap_mux_entry {
  42. struct omap_mux mux;
  43. struct list_head node;
  44. };
  45. static unsigned long mux_phys;
  46. static void __iomem *mux_base;
  47. static inline u16 omap_mux_read(u16 reg)
  48. {
  49. if (cpu_is_omap24xx())
  50. return __raw_readb(mux_base + reg);
  51. else
  52. return __raw_readw(mux_base + reg);
  53. }
  54. static inline void omap_mux_write(u16 val, u16 reg)
  55. {
  56. if (cpu_is_omap24xx())
  57. __raw_writeb(val, mux_base + reg);
  58. else
  59. __raw_writew(val, mux_base + reg);
  60. }
  61. #if defined(CONFIG_ARCH_OMAP24XX) && defined(CONFIG_OMAP_MUX)
  62. static struct omap_mux_cfg arch_mux_cfg;
  63. /* NOTE: See mux.h for the enumeration */
  64. static struct pin_config __initdata_or_module omap24xx_pins[] = {
  65. /*
  66. * description mux mux pull pull debug
  67. * offset mode ena type
  68. */
  69. /* 24xx I2C */
  70. MUX_CFG_24XX("M19_24XX_I2C1_SCL", 0x111, 0, 0, 0, 1)
  71. MUX_CFG_24XX("L15_24XX_I2C1_SDA", 0x112, 0, 0, 0, 1)
  72. MUX_CFG_24XX("J15_24XX_I2C2_SCL", 0x113, 0, 0, 1, 1)
  73. MUX_CFG_24XX("H19_24XX_I2C2_SDA", 0x114, 0, 0, 0, 1)
  74. /* Menelaus interrupt */
  75. MUX_CFG_24XX("W19_24XX_SYS_NIRQ", 0x12c, 0, 1, 1, 1)
  76. /* 24xx clocks */
  77. MUX_CFG_24XX("W14_24XX_SYS_CLKOUT", 0x137, 0, 1, 1, 1)
  78. /* 24xx GPMC chipselects, wait pin monitoring */
  79. MUX_CFG_24XX("E2_GPMC_NCS2", 0x08e, 0, 1, 1, 1)
  80. MUX_CFG_24XX("L2_GPMC_NCS7", 0x093, 0, 1, 1, 1)
  81. MUX_CFG_24XX("L3_GPMC_WAIT0", 0x09a, 0, 1, 1, 1)
  82. MUX_CFG_24XX("N7_GPMC_WAIT1", 0x09b, 0, 1, 1, 1)
  83. MUX_CFG_24XX("M1_GPMC_WAIT2", 0x09c, 0, 1, 1, 1)
  84. MUX_CFG_24XX("P1_GPMC_WAIT3", 0x09d, 0, 1, 1, 1)
  85. /* 24xx McBSP */
  86. MUX_CFG_24XX("Y15_24XX_MCBSP2_CLKX", 0x124, 1, 1, 0, 1)
  87. MUX_CFG_24XX("R14_24XX_MCBSP2_FSX", 0x125, 1, 1, 0, 1)
  88. MUX_CFG_24XX("W15_24XX_MCBSP2_DR", 0x126, 1, 1, 0, 1)
  89. MUX_CFG_24XX("V15_24XX_MCBSP2_DX", 0x127, 1, 1, 0, 1)
  90. /* 24xx GPIO */
  91. MUX_CFG_24XX("M21_242X_GPIO11", 0x0c9, 3, 1, 1, 1)
  92. MUX_CFG_24XX("P21_242X_GPIO12", 0x0ca, 3, 0, 0, 1)
  93. MUX_CFG_24XX("AA10_242X_GPIO13", 0x0e5, 3, 0, 0, 1)
  94. MUX_CFG_24XX("AA6_242X_GPIO14", 0x0e6, 3, 0, 0, 1)
  95. MUX_CFG_24XX("AA4_242X_GPIO15", 0x0e7, 3, 0, 0, 1)
  96. MUX_CFG_24XX("Y11_242X_GPIO16", 0x0e8, 3, 0, 0, 1)
  97. MUX_CFG_24XX("AA12_242X_GPIO17", 0x0e9, 3, 0, 0, 1)
  98. MUX_CFG_24XX("AA8_242X_GPIO58", 0x0ea, 3, 0, 0, 1)
  99. MUX_CFG_24XX("Y20_24XX_GPIO60", 0x12c, 3, 0, 0, 1)
  100. MUX_CFG_24XX("W4__24XX_GPIO74", 0x0f2, 3, 0, 0, 1)
  101. MUX_CFG_24XX("N15_24XX_GPIO85", 0x103, 3, 0, 0, 1)
  102. MUX_CFG_24XX("M15_24XX_GPIO92", 0x10a, 3, 0, 0, 1)
  103. MUX_CFG_24XX("P20_24XX_GPIO93", 0x10b, 3, 0, 0, 1)
  104. MUX_CFG_24XX("P18_24XX_GPIO95", 0x10d, 3, 0, 0, 1)
  105. MUX_CFG_24XX("M18_24XX_GPIO96", 0x10e, 3, 0, 0, 1)
  106. MUX_CFG_24XX("L14_24XX_GPIO97", 0x10f, 3, 0, 0, 1)
  107. MUX_CFG_24XX("J15_24XX_GPIO99", 0x113, 3, 1, 1, 1)
  108. MUX_CFG_24XX("V14_24XX_GPIO117", 0x128, 3, 1, 0, 1)
  109. MUX_CFG_24XX("P14_24XX_GPIO125", 0x140, 3, 1, 1, 1)
  110. /* 242x DBG GPIO */
  111. MUX_CFG_24XX("V4_242X_GPIO49", 0xd3, 3, 0, 0, 1)
  112. MUX_CFG_24XX("W2_242X_GPIO50", 0xd4, 3, 0, 0, 1)
  113. MUX_CFG_24XX("U4_242X_GPIO51", 0xd5, 3, 0, 0, 1)
  114. MUX_CFG_24XX("V3_242X_GPIO52", 0xd6, 3, 0, 0, 1)
  115. MUX_CFG_24XX("V2_242X_GPIO53", 0xd7, 3, 0, 0, 1)
  116. MUX_CFG_24XX("V6_242X_GPIO53", 0xcf, 3, 0, 0, 1)
  117. MUX_CFG_24XX("T4_242X_GPIO54", 0xd8, 3, 0, 0, 1)
  118. MUX_CFG_24XX("Y4_242X_GPIO54", 0xd0, 3, 0, 0, 1)
  119. MUX_CFG_24XX("T3_242X_GPIO55", 0xd9, 3, 0, 0, 1)
  120. MUX_CFG_24XX("U2_242X_GPIO56", 0xda, 3, 0, 0, 1)
  121. /* 24xx external DMA requests */
  122. MUX_CFG_24XX("AA10_242X_DMAREQ0", 0x0e5, 2, 0, 0, 1)
  123. MUX_CFG_24XX("AA6_242X_DMAREQ1", 0x0e6, 2, 0, 0, 1)
  124. MUX_CFG_24XX("E4_242X_DMAREQ2", 0x074, 2, 0, 0, 1)
  125. MUX_CFG_24XX("G4_242X_DMAREQ3", 0x073, 2, 0, 0, 1)
  126. MUX_CFG_24XX("D3_242X_DMAREQ4", 0x072, 2, 0, 0, 1)
  127. MUX_CFG_24XX("E3_242X_DMAREQ5", 0x071, 2, 0, 0, 1)
  128. /* UART3 */
  129. MUX_CFG_24XX("K15_24XX_UART3_TX", 0x118, 0, 0, 0, 1)
  130. MUX_CFG_24XX("K14_24XX_UART3_RX", 0x119, 0, 0, 0, 1)
  131. /* MMC/SDIO */
  132. MUX_CFG_24XX("G19_24XX_MMC_CLKO", 0x0f3, 0, 0, 0, 1)
  133. MUX_CFG_24XX("H18_24XX_MMC_CMD", 0x0f4, 0, 0, 0, 1)
  134. MUX_CFG_24XX("F20_24XX_MMC_DAT0", 0x0f5, 0, 0, 0, 1)
  135. MUX_CFG_24XX("H14_24XX_MMC_DAT1", 0x0f6, 0, 0, 0, 1)
  136. MUX_CFG_24XX("E19_24XX_MMC_DAT2", 0x0f7, 0, 0, 0, 1)
  137. MUX_CFG_24XX("D19_24XX_MMC_DAT3", 0x0f8, 0, 0, 0, 1)
  138. MUX_CFG_24XX("F19_24XX_MMC_DAT_DIR0", 0x0f9, 0, 0, 0, 1)
  139. MUX_CFG_24XX("E20_24XX_MMC_DAT_DIR1", 0x0fa, 0, 0, 0, 1)
  140. MUX_CFG_24XX("F18_24XX_MMC_DAT_DIR2", 0x0fb, 0, 0, 0, 1)
  141. MUX_CFG_24XX("E18_24XX_MMC_DAT_DIR3", 0x0fc, 0, 0, 0, 1)
  142. MUX_CFG_24XX("G18_24XX_MMC_CMD_DIR", 0x0fd, 0, 0, 0, 1)
  143. MUX_CFG_24XX("H15_24XX_MMC_CLKI", 0x0fe, 0, 0, 0, 1)
  144. /* Full speed USB */
  145. MUX_CFG_24XX("J20_24XX_USB0_PUEN", 0x11d, 0, 0, 0, 1)
  146. MUX_CFG_24XX("J19_24XX_USB0_VP", 0x11e, 0, 0, 0, 1)
  147. MUX_CFG_24XX("K20_24XX_USB0_VM", 0x11f, 0, 0, 0, 1)
  148. MUX_CFG_24XX("J18_24XX_USB0_RCV", 0x120, 0, 0, 0, 1)
  149. MUX_CFG_24XX("K19_24XX_USB0_TXEN", 0x121, 0, 0, 0, 1)
  150. MUX_CFG_24XX("J14_24XX_USB0_SE0", 0x122, 0, 0, 0, 1)
  151. MUX_CFG_24XX("K18_24XX_USB0_DAT", 0x123, 0, 0, 0, 1)
  152. MUX_CFG_24XX("N14_24XX_USB1_SE0", 0x0ed, 2, 0, 0, 1)
  153. MUX_CFG_24XX("W12_24XX_USB1_SE0", 0x0dd, 3, 0, 0, 1)
  154. MUX_CFG_24XX("P15_24XX_USB1_DAT", 0x0ee, 2, 0, 0, 1)
  155. MUX_CFG_24XX("R13_24XX_USB1_DAT", 0x0e0, 3, 0, 0, 1)
  156. MUX_CFG_24XX("W20_24XX_USB1_TXEN", 0x0ec, 2, 0, 0, 1)
  157. MUX_CFG_24XX("P13_24XX_USB1_TXEN", 0x0df, 3, 0, 0, 1)
  158. MUX_CFG_24XX("V19_24XX_USB1_RCV", 0x0eb, 2, 0, 0, 1)
  159. MUX_CFG_24XX("V12_24XX_USB1_RCV", 0x0de, 3, 0, 0, 1)
  160. MUX_CFG_24XX("AA10_24XX_USB2_SE0", 0x0e5, 2, 0, 0, 1)
  161. MUX_CFG_24XX("Y11_24XX_USB2_DAT", 0x0e8, 2, 0, 0, 1)
  162. MUX_CFG_24XX("AA12_24XX_USB2_TXEN", 0x0e9, 2, 0, 0, 1)
  163. MUX_CFG_24XX("AA6_24XX_USB2_RCV", 0x0e6, 2, 0, 0, 1)
  164. MUX_CFG_24XX("AA4_24XX_USB2_TLLSE0", 0x0e7, 2, 0, 0, 1)
  165. /* Keypad GPIO*/
  166. MUX_CFG_24XX("T19_24XX_KBR0", 0x106, 3, 1, 1, 1)
  167. MUX_CFG_24XX("R19_24XX_KBR1", 0x107, 3, 1, 1, 1)
  168. MUX_CFG_24XX("V18_24XX_KBR2", 0x139, 3, 1, 1, 1)
  169. MUX_CFG_24XX("M21_24XX_KBR3", 0xc9, 3, 1, 1, 1)
  170. MUX_CFG_24XX("E5__24XX_KBR4", 0x138, 3, 1, 1, 1)
  171. MUX_CFG_24XX("M18_24XX_KBR5", 0x10e, 3, 1, 1, 1)
  172. MUX_CFG_24XX("R20_24XX_KBC0", 0x108, 3, 0, 0, 1)
  173. MUX_CFG_24XX("M14_24XX_KBC1", 0x109, 3, 0, 0, 1)
  174. MUX_CFG_24XX("H19_24XX_KBC2", 0x114, 3, 0, 0, 1)
  175. MUX_CFG_24XX("V17_24XX_KBC3", 0x135, 3, 0, 0, 1)
  176. MUX_CFG_24XX("P21_24XX_KBC4", 0xca, 3, 0, 0, 1)
  177. MUX_CFG_24XX("L14_24XX_KBC5", 0x10f, 3, 0, 0, 1)
  178. MUX_CFG_24XX("N19_24XX_KBC6", 0x110, 3, 0, 0, 1)
  179. /* 24xx Menelaus Keypad GPIO */
  180. MUX_CFG_24XX("B3__24XX_KBR5", 0x30, 3, 1, 1, 1)
  181. MUX_CFG_24XX("AA4_24XX_KBC2", 0xe7, 3, 0, 0, 1)
  182. MUX_CFG_24XX("B13_24XX_KBC6", 0x110, 3, 0, 0, 1)
  183. /* 2430 USB */
  184. MUX_CFG_24XX("AD9_2430_USB0_PUEN", 0x133, 4, 0, 0, 1)
  185. MUX_CFG_24XX("Y11_2430_USB0_VP", 0x134, 4, 0, 0, 1)
  186. MUX_CFG_24XX("AD7_2430_USB0_VM", 0x135, 4, 0, 0, 1)
  187. MUX_CFG_24XX("AE7_2430_USB0_RCV", 0x136, 4, 0, 0, 1)
  188. MUX_CFG_24XX("AD4_2430_USB0_TXEN", 0x137, 4, 0, 0, 1)
  189. MUX_CFG_24XX("AF9_2430_USB0_SE0", 0x138, 4, 0, 0, 1)
  190. MUX_CFG_24XX("AE6_2430_USB0_DAT", 0x139, 4, 0, 0, 1)
  191. MUX_CFG_24XX("AD24_2430_USB1_SE0", 0x107, 2, 0, 0, 1)
  192. MUX_CFG_24XX("AB24_2430_USB1_RCV", 0x108, 2, 0, 0, 1)
  193. MUX_CFG_24XX("Y25_2430_USB1_TXEN", 0x109, 2, 0, 0, 1)
  194. MUX_CFG_24XX("AA26_2430_USB1_DAT", 0x10A, 2, 0, 0, 1)
  195. /* 2430 HS-USB */
  196. MUX_CFG_24XX("AD9_2430_USB0HS_DATA3", 0x133, 0, 0, 0, 1)
  197. MUX_CFG_24XX("Y11_2430_USB0HS_DATA4", 0x134, 0, 0, 0, 1)
  198. MUX_CFG_24XX("AD7_2430_USB0HS_DATA5", 0x135, 0, 0, 0, 1)
  199. MUX_CFG_24XX("AE7_2430_USB0HS_DATA6", 0x136, 0, 0, 0, 1)
  200. MUX_CFG_24XX("AD4_2430_USB0HS_DATA2", 0x137, 0, 0, 0, 1)
  201. MUX_CFG_24XX("AF9_2430_USB0HS_DATA0", 0x138, 0, 0, 0, 1)
  202. MUX_CFG_24XX("AE6_2430_USB0HS_DATA1", 0x139, 0, 0, 0, 1)
  203. MUX_CFG_24XX("AE8_2430_USB0HS_CLK", 0x13A, 0, 0, 0, 1)
  204. MUX_CFG_24XX("AD8_2430_USB0HS_DIR", 0x13B, 0, 0, 0, 1)
  205. MUX_CFG_24XX("AE5_2430_USB0HS_STP", 0x13c, 0, 1, 1, 1)
  206. MUX_CFG_24XX("AE9_2430_USB0HS_NXT", 0x13D, 0, 0, 0, 1)
  207. MUX_CFG_24XX("AC7_2430_USB0HS_DATA7", 0x13E, 0, 0, 0, 1)
  208. /* 2430 McBSP */
  209. MUX_CFG_24XX("AD6_2430_MCBSP_CLKS", 0x011E, 0, 0, 0, 1)
  210. MUX_CFG_24XX("AB2_2430_MCBSP1_CLKR", 0x011A, 0, 0, 0, 1)
  211. MUX_CFG_24XX("AD5_2430_MCBSP1_FSR", 0x011B, 0, 0, 0, 1)
  212. MUX_CFG_24XX("AA1_2430_MCBSP1_DX", 0x011C, 0, 0, 0, 1)
  213. MUX_CFG_24XX("AF3_2430_MCBSP1_DR", 0x011D, 0, 0, 0, 1)
  214. MUX_CFG_24XX("AB3_2430_MCBSP1_FSX", 0x011F, 0, 0, 0, 1)
  215. MUX_CFG_24XX("Y9_2430_MCBSP1_CLKX", 0x0120, 0, 0, 0, 1)
  216. MUX_CFG_24XX("AC10_2430_MCBSP2_FSX", 0x012E, 1, 0, 0, 1)
  217. MUX_CFG_24XX("AD16_2430_MCBSP2_CLX", 0x012F, 1, 0, 0, 1)
  218. MUX_CFG_24XX("AE13_2430_MCBSP2_DX", 0x0130, 1, 0, 0, 1)
  219. MUX_CFG_24XX("AD13_2430_MCBSP2_DR", 0x0131, 1, 0, 0, 1)
  220. MUX_CFG_24XX("AC10_2430_MCBSP2_FSX_OFF",0x012E, 0, 0, 0, 1)
  221. MUX_CFG_24XX("AD16_2430_MCBSP2_CLX_OFF",0x012F, 0, 0, 0, 1)
  222. MUX_CFG_24XX("AE13_2430_MCBSP2_DX_OFF", 0x0130, 0, 0, 0, 1)
  223. MUX_CFG_24XX("AD13_2430_MCBSP2_DR_OFF", 0x0131, 0, 0, 0, 1)
  224. MUX_CFG_24XX("AC9_2430_MCBSP3_CLKX", 0x0103, 0, 0, 0, 1)
  225. MUX_CFG_24XX("AE4_2430_MCBSP3_FSX", 0x0104, 0, 0, 0, 1)
  226. MUX_CFG_24XX("AE2_2430_MCBSP3_DR", 0x0105, 0, 0, 0, 1)
  227. MUX_CFG_24XX("AF4_2430_MCBSP3_DX", 0x0106, 0, 0, 0, 1)
  228. MUX_CFG_24XX("N3_2430_MCBSP4_CLKX", 0x010B, 1, 0, 0, 1)
  229. MUX_CFG_24XX("AD23_2430_MCBSP4_DR", 0x010C, 1, 0, 0, 1)
  230. MUX_CFG_24XX("AB25_2430_MCBSP4_DX", 0x010D, 1, 0, 0, 1)
  231. MUX_CFG_24XX("AC25_2430_MCBSP4_FSX", 0x010E, 1, 0, 0, 1)
  232. MUX_CFG_24XX("AE16_2430_MCBSP5_CLKX", 0x00ED, 1, 0, 0, 1)
  233. MUX_CFG_24XX("AF12_2430_MCBSP5_FSX", 0x00ED, 1, 0, 0, 1)
  234. MUX_CFG_24XX("K7_2430_MCBSP5_DX", 0x00EF, 1, 0, 0, 1)
  235. MUX_CFG_24XX("M1_2430_MCBSP5_DR", 0x00F0, 1, 0, 0, 1)
  236. /* 2430 MCSPI1 */
  237. MUX_CFG_24XX("Y18_2430_MCSPI1_CLK", 0x010F, 0, 0, 0, 1)
  238. MUX_CFG_24XX("AD15_2430_MCSPI1_SIMO", 0x0110, 0, 0, 0, 1)
  239. MUX_CFG_24XX("AE17_2430_MCSPI1_SOMI", 0x0111, 0, 0, 0, 1)
  240. MUX_CFG_24XX("U1_2430_MCSPI1_CS0", 0x0112, 0, 0, 0, 1)
  241. /* Touchscreen GPIO */
  242. MUX_CFG_24XX("AF19_2430_GPIO_85", 0x0113, 3, 0, 0, 1)
  243. };
  244. #define OMAP24XX_PINS_SZ ARRAY_SIZE(omap24xx_pins)
  245. #if defined(CONFIG_OMAP_MUX_DEBUG) || defined(CONFIG_OMAP_MUX_WARNINGS)
  246. static void __init_or_module omap2_cfg_debug(const struct pin_config *cfg, u16 reg)
  247. {
  248. u16 orig;
  249. u8 warn = 0, debug = 0;
  250. orig = omap_mux_read(cfg->mux_reg - OMAP_MUX_BASE_OFFSET);
  251. #ifdef CONFIG_OMAP_MUX_DEBUG
  252. debug = cfg->debug;
  253. #endif
  254. warn = (orig != reg);
  255. if (debug || warn)
  256. printk(KERN_WARNING
  257. "MUX: setup %s (0x%p): 0x%04x -> 0x%04x\n",
  258. cfg->name, omap_ctrl_base_get() + cfg->mux_reg,
  259. orig, reg);
  260. }
  261. #else
  262. #define omap2_cfg_debug(x, y) do {} while (0)
  263. #endif
  264. static int __init_or_module omap24xx_cfg_reg(const struct pin_config *cfg)
  265. {
  266. static DEFINE_SPINLOCK(mux_spin_lock);
  267. unsigned long flags;
  268. u8 reg = 0;
  269. spin_lock_irqsave(&mux_spin_lock, flags);
  270. reg |= cfg->mask & 0x7;
  271. if (cfg->pull_val)
  272. reg |= OMAP2_PULL_ENA;
  273. if (cfg->pu_pd_val)
  274. reg |= OMAP2_PULL_UP;
  275. omap2_cfg_debug(cfg, reg);
  276. omap_mux_write(reg, cfg->mux_reg - OMAP_MUX_BASE_OFFSET);
  277. spin_unlock_irqrestore(&mux_spin_lock, flags);
  278. return 0;
  279. }
  280. int __init omap2_mux_init(void)
  281. {
  282. u32 mux_pbase;
  283. if (cpu_is_omap2420())
  284. mux_pbase = OMAP2420_CTRL_BASE + OMAP_MUX_BASE_OFFSET;
  285. else if (cpu_is_omap2430())
  286. mux_pbase = OMAP243X_CTRL_BASE + OMAP_MUX_BASE_OFFSET;
  287. else
  288. return -ENODEV;
  289. mux_base = ioremap(mux_pbase, OMAP_MUX_BASE_SZ);
  290. if (!mux_base) {
  291. printk(KERN_ERR "mux: Could not ioremap\n");
  292. return -ENODEV;
  293. }
  294. if (cpu_is_omap24xx()) {
  295. arch_mux_cfg.pins = omap24xx_pins;
  296. arch_mux_cfg.size = OMAP24XX_PINS_SZ;
  297. arch_mux_cfg.cfg_reg = omap24xx_cfg_reg;
  298. return omap_mux_register(&arch_mux_cfg);
  299. }
  300. return 0;
  301. }
  302. #else
  303. int __init omap2_mux_init(void)
  304. {
  305. return 0;
  306. }
  307. #endif /* CONFIG_OMAP_MUX */
  308. /*----------------------------------------------------------------------------*/
  309. #ifdef CONFIG_ARCH_OMAP34XX
  310. static LIST_HEAD(muxmodes);
  311. static DEFINE_MUTEX(muxmode_mutex);
  312. #ifdef CONFIG_OMAP_MUX
  313. static char *omap_mux_options;
  314. int __init omap_mux_init_gpio(int gpio, int val)
  315. {
  316. struct omap_mux_entry *e;
  317. int found = 0;
  318. if (!gpio)
  319. return -EINVAL;
  320. list_for_each_entry(e, &muxmodes, node) {
  321. struct omap_mux *m = &e->mux;
  322. if (gpio == m->gpio) {
  323. u16 old_mode;
  324. u16 mux_mode;
  325. old_mode = omap_mux_read(m->reg_offset);
  326. mux_mode = val & ~(OMAP_MUX_NR_MODES - 1);
  327. mux_mode |= OMAP_MUX_MODE4;
  328. printk(KERN_DEBUG "mux: Setting signal "
  329. "%s.gpio%i 0x%04x -> 0x%04x\n",
  330. m->muxnames[0], gpio, old_mode, mux_mode);
  331. omap_mux_write(mux_mode, m->reg_offset);
  332. found++;
  333. }
  334. }
  335. if (found == 1)
  336. return 0;
  337. if (found > 1) {
  338. printk(KERN_ERR "mux: Multiple gpio paths for gpio%i\n", gpio);
  339. return -EINVAL;
  340. }
  341. printk(KERN_ERR "mux: Could not set gpio%i\n", gpio);
  342. return -ENODEV;
  343. }
  344. int __init omap_mux_init_signal(char *muxname, int val)
  345. {
  346. struct omap_mux_entry *e;
  347. char *m0_name = NULL, *mode_name = NULL;
  348. int found = 0;
  349. mode_name = strchr(muxname, '.');
  350. if (mode_name) {
  351. *mode_name = '\0';
  352. mode_name++;
  353. m0_name = muxname;
  354. } else {
  355. mode_name = muxname;
  356. }
  357. list_for_each_entry(e, &muxmodes, node) {
  358. struct omap_mux *m = &e->mux;
  359. char *m0_entry = m->muxnames[0];
  360. int i;
  361. if (m0_name && strcmp(m0_name, m0_entry))
  362. continue;
  363. for (i = 0; i < OMAP_MUX_NR_MODES; i++) {
  364. char *mode_cur = m->muxnames[i];
  365. if (!mode_cur)
  366. continue;
  367. if (!strcmp(mode_name, mode_cur)) {
  368. u16 old_mode;
  369. u16 mux_mode;
  370. old_mode = omap_mux_read(m->reg_offset);
  371. mux_mode = val | i;
  372. printk(KERN_DEBUG "mux: Setting signal "
  373. "%s.%s 0x%04x -> 0x%04x\n",
  374. m0_entry, muxname, old_mode, mux_mode);
  375. omap_mux_write(mux_mode, m->reg_offset);
  376. found++;
  377. }
  378. }
  379. }
  380. if (found == 1)
  381. return 0;
  382. if (found > 1) {
  383. printk(KERN_ERR "mux: Multiple signal paths (%i) for %s\n",
  384. found, muxname);
  385. return -EINVAL;
  386. }
  387. printk(KERN_ERR "mux: Could not set signal %s\n", muxname);
  388. return -ENODEV;
  389. }
  390. #ifdef CONFIG_DEBUG_FS
  391. #define OMAP_MUX_MAX_NR_FLAGS 10
  392. #define OMAP_MUX_TEST_FLAG(val, mask) \
  393. if (((val) & (mask)) == (mask)) { \
  394. i++; \
  395. flags[i] = #mask; \
  396. }
  397. /* REVISIT: Add checking for non-optimal mux settings */
  398. static inline void omap_mux_decode(struct seq_file *s, u16 val)
  399. {
  400. char *flags[OMAP_MUX_MAX_NR_FLAGS];
  401. char mode[14];
  402. int i = -1;
  403. sprintf(mode, "OMAP_MUX_MODE%d", val & 0x7);
  404. i++;
  405. flags[i] = mode;
  406. OMAP_MUX_TEST_FLAG(val, OMAP_PIN_OFF_WAKEUPENABLE);
  407. if (val & OMAP_OFF_EN) {
  408. if (!(val & OMAP_OFFOUT_EN)) {
  409. if (!(val & OMAP_OFF_PULL_UP)) {
  410. OMAP_MUX_TEST_FLAG(val,
  411. OMAP_PIN_OFF_INPUT_PULLDOWN);
  412. } else {
  413. OMAP_MUX_TEST_FLAG(val,
  414. OMAP_PIN_OFF_INPUT_PULLUP);
  415. }
  416. } else {
  417. if (!(val & OMAP_OFFOUT_VAL)) {
  418. OMAP_MUX_TEST_FLAG(val,
  419. OMAP_PIN_OFF_OUTPUT_LOW);
  420. } else {
  421. OMAP_MUX_TEST_FLAG(val,
  422. OMAP_PIN_OFF_OUTPUT_HIGH);
  423. }
  424. }
  425. }
  426. if (val & OMAP_INPUT_EN) {
  427. if (val & OMAP_PULL_ENA) {
  428. if (!(val & OMAP_PULL_UP)) {
  429. OMAP_MUX_TEST_FLAG(val,
  430. OMAP_PIN_INPUT_PULLDOWN);
  431. } else {
  432. OMAP_MUX_TEST_FLAG(val, OMAP_PIN_INPUT_PULLUP);
  433. }
  434. } else {
  435. OMAP_MUX_TEST_FLAG(val, OMAP_PIN_INPUT);
  436. }
  437. } else {
  438. i++;
  439. flags[i] = "OMAP_PIN_OUTPUT";
  440. }
  441. do {
  442. seq_printf(s, "%s", flags[i]);
  443. if (i > 0)
  444. seq_printf(s, " | ");
  445. } while (i-- > 0);
  446. }
  447. #define OMAP_MUX_DEFNAME_LEN 16
  448. static int omap_mux_dbg_board_show(struct seq_file *s, void *unused)
  449. {
  450. struct omap_mux_entry *e;
  451. list_for_each_entry(e, &muxmodes, node) {
  452. struct omap_mux *m = &e->mux;
  453. char m0_def[OMAP_MUX_DEFNAME_LEN];
  454. char *m0_name = m->muxnames[0];
  455. u16 val;
  456. int i, mode;
  457. if (!m0_name)
  458. continue;
  459. for (i = 0; i < OMAP_MUX_DEFNAME_LEN; i++) {
  460. if (m0_name[i] == '\0') {
  461. m0_def[i] = m0_name[i];
  462. break;
  463. }
  464. m0_def[i] = toupper(m0_name[i]);
  465. }
  466. val = omap_mux_read(m->reg_offset);
  467. mode = val & OMAP_MUX_MODE7;
  468. seq_printf(s, "OMAP%i_MUX(%s, ",
  469. cpu_is_omap34xx() ? 3 : 0, m0_def);
  470. omap_mux_decode(s, val);
  471. seq_printf(s, "),\n");
  472. }
  473. return 0;
  474. }
  475. static int omap_mux_dbg_board_open(struct inode *inode, struct file *file)
  476. {
  477. return single_open(file, omap_mux_dbg_board_show, &inode->i_private);
  478. }
  479. static const struct file_operations omap_mux_dbg_board_fops = {
  480. .open = omap_mux_dbg_board_open,
  481. .read = seq_read,
  482. .llseek = seq_lseek,
  483. .release = single_release,
  484. };
  485. static int omap_mux_dbg_signal_show(struct seq_file *s, void *unused)
  486. {
  487. struct omap_mux *m = s->private;
  488. const char *none = "NA";
  489. u16 val;
  490. int mode;
  491. val = omap_mux_read(m->reg_offset);
  492. mode = val & OMAP_MUX_MODE7;
  493. seq_printf(s, "name: %s.%s (0x%08lx/0x%03x = 0x%04x), b %s, t %s\n",
  494. m->muxnames[0], m->muxnames[mode],
  495. mux_phys + m->reg_offset, m->reg_offset, val,
  496. m->balls[0] ? m->balls[0] : none,
  497. m->balls[1] ? m->balls[1] : none);
  498. seq_printf(s, "mode: ");
  499. omap_mux_decode(s, val);
  500. seq_printf(s, "\n");
  501. seq_printf(s, "signals: %s | %s | %s | %s | %s | %s | %s | %s\n",
  502. m->muxnames[0] ? m->muxnames[0] : none,
  503. m->muxnames[1] ? m->muxnames[1] : none,
  504. m->muxnames[2] ? m->muxnames[2] : none,
  505. m->muxnames[3] ? m->muxnames[3] : none,
  506. m->muxnames[4] ? m->muxnames[4] : none,
  507. m->muxnames[5] ? m->muxnames[5] : none,
  508. m->muxnames[6] ? m->muxnames[6] : none,
  509. m->muxnames[7] ? m->muxnames[7] : none);
  510. return 0;
  511. }
  512. #define OMAP_MUX_MAX_ARG_CHAR 7
  513. static ssize_t omap_mux_dbg_signal_write(struct file *file,
  514. const char __user *user_buf,
  515. size_t count, loff_t *ppos)
  516. {
  517. char buf[OMAP_MUX_MAX_ARG_CHAR];
  518. struct seq_file *seqf;
  519. struct omap_mux *m;
  520. unsigned long val;
  521. int buf_size, ret;
  522. if (count > OMAP_MUX_MAX_ARG_CHAR)
  523. return -EINVAL;
  524. memset(buf, 0, sizeof(buf));
  525. buf_size = min(count, sizeof(buf) - 1);
  526. if (copy_from_user(buf, user_buf, buf_size))
  527. return -EFAULT;
  528. ret = strict_strtoul(buf, 0x10, &val);
  529. if (ret < 0)
  530. return ret;
  531. if (val > 0xffff)
  532. return -EINVAL;
  533. seqf = file->private_data;
  534. m = seqf->private;
  535. omap_mux_write((u16)val, m->reg_offset);
  536. *ppos += count;
  537. return count;
  538. }
  539. static int omap_mux_dbg_signal_open(struct inode *inode, struct file *file)
  540. {
  541. return single_open(file, omap_mux_dbg_signal_show, inode->i_private);
  542. }
  543. static const struct file_operations omap_mux_dbg_signal_fops = {
  544. .open = omap_mux_dbg_signal_open,
  545. .read = seq_read,
  546. .write = omap_mux_dbg_signal_write,
  547. .llseek = seq_lseek,
  548. .release = single_release,
  549. };
  550. static struct dentry *mux_dbg_dir;
  551. static void __init omap_mux_dbg_init(void)
  552. {
  553. struct omap_mux_entry *e;
  554. mux_dbg_dir = debugfs_create_dir("omap_mux", NULL);
  555. if (!mux_dbg_dir)
  556. return;
  557. (void)debugfs_create_file("board", S_IRUGO, mux_dbg_dir,
  558. NULL, &omap_mux_dbg_board_fops);
  559. list_for_each_entry(e, &muxmodes, node) {
  560. struct omap_mux *m = &e->mux;
  561. (void)debugfs_create_file(m->muxnames[0], S_IWUGO, mux_dbg_dir,
  562. m, &omap_mux_dbg_signal_fops);
  563. }
  564. }
  565. #else
  566. static inline void omap_mux_dbg_init(void)
  567. {
  568. }
  569. #endif /* CONFIG_DEBUG_FS */
  570. static void __init omap_mux_free_names(struct omap_mux *m)
  571. {
  572. int i;
  573. for (i = 0; i < OMAP_MUX_NR_MODES; i++)
  574. kfree(m->muxnames[i]);
  575. #ifdef CONFIG_DEBUG_FS
  576. for (i = 0; i < OMAP_MUX_NR_SIDES; i++)
  577. kfree(m->balls[i]);
  578. #endif
  579. }
  580. /* Free all data except for GPIO pins unless CONFIG_DEBUG_FS is set */
  581. static int __init omap_mux_late_init(void)
  582. {
  583. struct omap_mux_entry *e, *tmp;
  584. list_for_each_entry_safe(e, tmp, &muxmodes, node) {
  585. struct omap_mux *m = &e->mux;
  586. u16 mode = omap_mux_read(m->reg_offset);
  587. if (OMAP_MODE_GPIO(mode))
  588. continue;
  589. #ifndef CONFIG_DEBUG_FS
  590. mutex_lock(&muxmode_mutex);
  591. list_del(&e->node);
  592. mutex_unlock(&muxmode_mutex);
  593. omap_mux_free_names(m);
  594. kfree(m);
  595. #endif
  596. }
  597. omap_mux_dbg_init();
  598. return 0;
  599. }
  600. late_initcall(omap_mux_late_init);
  601. static void __init omap_mux_package_fixup(struct omap_mux *p,
  602. struct omap_mux *superset)
  603. {
  604. while (p->reg_offset != OMAP_MUX_TERMINATOR) {
  605. struct omap_mux *s = superset;
  606. int found = 0;
  607. while (s->reg_offset != OMAP_MUX_TERMINATOR) {
  608. if (s->reg_offset == p->reg_offset) {
  609. *s = *p;
  610. found++;
  611. break;
  612. }
  613. s++;
  614. }
  615. if (!found)
  616. printk(KERN_ERR "mux: Unknown entry offset 0x%x\n",
  617. p->reg_offset);
  618. p++;
  619. }
  620. }
  621. #ifdef CONFIG_DEBUG_FS
  622. static void __init omap_mux_package_init_balls(struct omap_ball *b,
  623. struct omap_mux *superset)
  624. {
  625. while (b->reg_offset != OMAP_MUX_TERMINATOR) {
  626. struct omap_mux *s = superset;
  627. int found = 0;
  628. while (s->reg_offset != OMAP_MUX_TERMINATOR) {
  629. if (s->reg_offset == b->reg_offset) {
  630. s->balls[0] = b->balls[0];
  631. s->balls[1] = b->balls[1];
  632. found++;
  633. break;
  634. }
  635. s++;
  636. }
  637. if (!found)
  638. printk(KERN_ERR "mux: Unknown ball offset 0x%x\n",
  639. b->reg_offset);
  640. b++;
  641. }
  642. }
  643. #else /* CONFIG_DEBUG_FS */
  644. static inline void omap_mux_package_init_balls(struct omap_ball *b,
  645. struct omap_mux *superset)
  646. {
  647. }
  648. #endif /* CONFIG_DEBUG_FS */
  649. static int __init omap_mux_setup(char *options)
  650. {
  651. if (!options)
  652. return 0;
  653. omap_mux_options = options;
  654. return 1;
  655. }
  656. __setup("omap_mux=", omap_mux_setup);
  657. /*
  658. * Note that the omap_mux=some.signal1=0x1234,some.signal2=0x1234
  659. * cmdline options only override the bootloader values.
  660. * During development, please enable CONFIG_DEBUG_FS, and use the
  661. * signal specific entries under debugfs.
  662. */
  663. static void __init omap_mux_set_cmdline_signals(void)
  664. {
  665. char *options, *next_opt, *token;
  666. if (!omap_mux_options)
  667. return;
  668. options = kmalloc(strlen(omap_mux_options) + 1, GFP_KERNEL);
  669. if (!options)
  670. return;
  671. strcpy(options, omap_mux_options);
  672. next_opt = options;
  673. while ((token = strsep(&next_opt, ",")) != NULL) {
  674. char *keyval, *name;
  675. unsigned long val;
  676. keyval = token;
  677. name = strsep(&keyval, "=");
  678. if (name) {
  679. int res;
  680. res = strict_strtoul(keyval, 0x10, &val);
  681. if (res < 0)
  682. continue;
  683. omap_mux_init_signal(name, (u16)val);
  684. }
  685. }
  686. kfree(options);
  687. }
  688. static void __init omap_mux_set_board_signals(struct omap_board_mux *board_mux)
  689. {
  690. while (board_mux->reg_offset != OMAP_MUX_TERMINATOR) {
  691. omap_mux_write(board_mux->value, board_mux->reg_offset);
  692. board_mux++;
  693. }
  694. }
  695. static int __init omap_mux_copy_names(struct omap_mux *src,
  696. struct omap_mux *dst)
  697. {
  698. int i;
  699. for (i = 0; i < OMAP_MUX_NR_MODES; i++) {
  700. if (src->muxnames[i]) {
  701. dst->muxnames[i] =
  702. kmalloc(strlen(src->muxnames[i]) + 1,
  703. GFP_KERNEL);
  704. if (!dst->muxnames[i])
  705. goto free;
  706. strcpy(dst->muxnames[i], src->muxnames[i]);
  707. }
  708. }
  709. #ifdef CONFIG_DEBUG_FS
  710. for (i = 0; i < OMAP_MUX_NR_SIDES; i++) {
  711. if (src->balls[i]) {
  712. dst->balls[i] =
  713. kmalloc(strlen(src->balls[i]) + 1,
  714. GFP_KERNEL);
  715. if (!dst->balls[i])
  716. goto free;
  717. strcpy(dst->balls[i], src->balls[i]);
  718. }
  719. }
  720. #endif
  721. return 0;
  722. free:
  723. omap_mux_free_names(dst);
  724. return -ENOMEM;
  725. }
  726. #endif /* CONFIG_OMAP_MUX */
  727. static u16 omap_mux_get_by_gpio(int gpio)
  728. {
  729. struct omap_mux_entry *e;
  730. u16 offset = OMAP_MUX_TERMINATOR;
  731. list_for_each_entry(e, &muxmodes, node) {
  732. struct omap_mux *m = &e->mux;
  733. if (m->gpio == gpio) {
  734. offset = m->reg_offset;
  735. break;
  736. }
  737. }
  738. return offset;
  739. }
  740. /* Needed for dynamic muxing of GPIO pins for off-idle */
  741. u16 omap_mux_get_gpio(int gpio)
  742. {
  743. u16 offset;
  744. offset = omap_mux_get_by_gpio(gpio);
  745. if (offset == OMAP_MUX_TERMINATOR) {
  746. printk(KERN_ERR "mux: Could not get gpio%i\n", gpio);
  747. return offset;
  748. }
  749. return omap_mux_read(offset);
  750. }
  751. /* Needed for dynamic muxing of GPIO pins for off-idle */
  752. void omap_mux_set_gpio(u16 val, int gpio)
  753. {
  754. u16 offset;
  755. offset = omap_mux_get_by_gpio(gpio);
  756. if (offset == OMAP_MUX_TERMINATOR) {
  757. printk(KERN_ERR "mux: Could not set gpio%i\n", gpio);
  758. return;
  759. }
  760. omap_mux_write(val, offset);
  761. }
  762. static struct omap_mux * __init omap_mux_list_add(struct omap_mux *src)
  763. {
  764. struct omap_mux_entry *entry;
  765. struct omap_mux *m;
  766. entry = kzalloc(sizeof(struct omap_mux_entry), GFP_KERNEL);
  767. if (!entry)
  768. return NULL;
  769. m = &entry->mux;
  770. memcpy(m, src, sizeof(struct omap_mux_entry));
  771. #ifdef CONFIG_OMAP_MUX
  772. if (omap_mux_copy_names(src, m)) {
  773. kfree(entry);
  774. return NULL;
  775. }
  776. #endif
  777. mutex_lock(&muxmode_mutex);
  778. list_add_tail(&entry->node, &muxmodes);
  779. mutex_unlock(&muxmode_mutex);
  780. return m;
  781. }
  782. /*
  783. * Note if CONFIG_OMAP_MUX is not selected, we will only initialize
  784. * the GPIO to mux offset mapping that is needed for dynamic muxing
  785. * of GPIO pins for off-idle.
  786. */
  787. static void __init omap_mux_init_list(struct omap_mux *superset)
  788. {
  789. while (superset->reg_offset != OMAP_MUX_TERMINATOR) {
  790. struct omap_mux *entry;
  791. #ifndef CONFIG_OMAP_MUX
  792. /* Skip pins that are not muxed as GPIO by bootloader */
  793. if (!OMAP_MODE_GPIO(omap_mux_read(superset->reg_offset))) {
  794. superset++;
  795. continue;
  796. }
  797. #endif
  798. entry = omap_mux_list_add(superset);
  799. if (!entry) {
  800. printk(KERN_ERR "mux: Could not add entry\n");
  801. return;
  802. }
  803. superset++;
  804. }
  805. }
  806. int __init omap_mux_init(u32 mux_pbase, u32 mux_size,
  807. struct omap_mux *superset,
  808. struct omap_mux *package_subset,
  809. struct omap_board_mux *board_mux,
  810. struct omap_ball *package_balls)
  811. {
  812. if (mux_base)
  813. return -EBUSY;
  814. mux_phys = mux_pbase;
  815. mux_base = ioremap(mux_pbase, mux_size);
  816. if (!mux_base) {
  817. printk(KERN_ERR "mux: Could not ioremap\n");
  818. return -ENODEV;
  819. }
  820. #ifdef CONFIG_OMAP_MUX
  821. if (package_subset)
  822. omap_mux_package_fixup(package_subset, superset);
  823. if (package_balls)
  824. omap_mux_package_init_balls(package_balls, superset);
  825. omap_mux_set_cmdline_signals();
  826. omap_mux_set_board_signals(board_mux);
  827. #endif
  828. omap_mux_init_list(superset);
  829. return 0;
  830. }
  831. #endif /* CONFIG_ARCH_OMAP34XX */