mux.c 26 KB

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