mux.c 26 KB

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