iomux.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * (C) Copyright 2009 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <asm/io.h>
  24. #include <asm/arch/imx-regs.h>
  25. #include <asm/arch/mx5x_pins.h>
  26. #include <asm/arch/iomux.h>
  27. #include <asm/arch/sys_proto.h>
  28. /* IOMUX register (base) addresses */
  29. enum iomux_reg_addr {
  30. IOMUXGPR0 = IOMUXC_BASE_ADDR,
  31. IOMUXGPR1 = IOMUXC_BASE_ADDR + 0x004,
  32. IOMUXSW_MUX_CTL = IOMUXC_BASE_ADDR,
  33. IOMUXSW_MUX_END = IOMUXC_BASE_ADDR + MUX_I_END,
  34. IOMUXSW_PAD_CTL = IOMUXC_BASE_ADDR + PAD_I_START,
  35. IOMUXSW_INPUT_CTL = IOMUXC_BASE_ADDR + INPUT_CTL_START,
  36. };
  37. #define MUX_PIN_NUM_MAX (((MUX_I_END - MUX_I_START) >> 2) + 1)
  38. /* Get the iomux register address of this pin */
  39. static inline u32 get_mux_reg(iomux_pin_name_t pin)
  40. {
  41. u32 mux_reg = PIN_TO_IOMUX_MUX(pin);
  42. #if defined(CONFIG_MX51)
  43. if (is_soc_rev(CHIP_REV_2_0) < 0) {
  44. /*
  45. * Fixup register address:
  46. * i.MX51 TO1 has offset with the register
  47. * which is define as TO2.
  48. */
  49. if ((pin == MX51_PIN_NANDF_RB5) ||
  50. (pin == MX51_PIN_NANDF_RB6) ||
  51. (pin == MX51_PIN_NANDF_RB7))
  52. ; /* Do nothing */
  53. else if (mux_reg >= 0x2FC)
  54. mux_reg += 8;
  55. else if (mux_reg >= 0x130)
  56. mux_reg += 0xC;
  57. }
  58. #endif
  59. mux_reg += IOMUXSW_MUX_CTL;
  60. return mux_reg;
  61. }
  62. /* Get the pad register address of this pin */
  63. static inline u32 get_pad_reg(iomux_pin_name_t pin)
  64. {
  65. u32 pad_reg = PIN_TO_IOMUX_PAD(pin);
  66. #if defined(CONFIG_MX51)
  67. if (is_soc_rev(CHIP_REV_2_0) < 0) {
  68. /*
  69. * Fixup register address:
  70. * i.MX51 TO1 has offset with the register
  71. * which is define as TO2.
  72. */
  73. if ((pin == MX51_PIN_NANDF_RB5) ||
  74. (pin == MX51_PIN_NANDF_RB6) ||
  75. (pin == MX51_PIN_NANDF_RB7))
  76. ; /* Do nothing */
  77. else if (pad_reg == 0x4D0 - PAD_I_START)
  78. pad_reg += 0x4C;
  79. else if (pad_reg == 0x860 - PAD_I_START)
  80. pad_reg += 0x9C;
  81. else if (pad_reg >= 0x804 - PAD_I_START)
  82. pad_reg += 0xB0;
  83. else if (pad_reg >= 0x7FC - PAD_I_START)
  84. pad_reg += 0xB4;
  85. else if (pad_reg >= 0x4E4 - PAD_I_START)
  86. pad_reg += 0xCC;
  87. else
  88. pad_reg += 8;
  89. }
  90. #endif
  91. pad_reg += IOMUXSW_PAD_CTL;
  92. return pad_reg;
  93. }
  94. /* Get the last iomux register address */
  95. static inline u32 get_mux_end(void)
  96. {
  97. #if defined(CONFIG_MX51)
  98. if (is_soc_rev(CHIP_REV_2_0) < 0)
  99. return IOMUXC_BASE_ADDR + (0x3F8 - 4);
  100. else
  101. return IOMUXC_BASE_ADDR + (0x3F0 - 4);
  102. #endif
  103. return IOMUXSW_MUX_END;
  104. }
  105. /*
  106. * This function is used to configure a pin through the IOMUX module.
  107. * @param pin a pin number as defined in iomux_pin_name_t
  108. * @param cfg an output function as defined in iomux_pin_cfg_t
  109. *
  110. * @return 0 if successful; Non-zero otherwise
  111. */
  112. static void iomux_config_mux(iomux_pin_name_t pin, iomux_pin_cfg_t cfg)
  113. {
  114. u32 mux_reg = get_mux_reg(pin);
  115. if ((mux_reg > get_mux_end()) || (mux_reg < IOMUXSW_MUX_CTL))
  116. return ;
  117. if (cfg == IOMUX_CONFIG_GPIO)
  118. writel(PIN_TO_ALT_GPIO(pin), mux_reg);
  119. else
  120. writel(cfg, mux_reg);
  121. }
  122. /*
  123. * Request ownership for an IO pin. This function has to be the first one
  124. * being called before that pin is used. The caller has to check the
  125. * return value to make sure it returns 0.
  126. *
  127. * @param pin a name defined by iomux_pin_name_t
  128. * @param cfg an input function as defined in iomux_pin_cfg_t
  129. *
  130. */
  131. void mxc_request_iomux(iomux_pin_name_t pin, iomux_pin_cfg_t cfg)
  132. {
  133. iomux_config_mux(pin, cfg);
  134. }
  135. /*
  136. * Release ownership for an IO pin
  137. *
  138. * @param pin a name defined by iomux_pin_name_t
  139. * @param cfg an input function as defined in iomux_pin_cfg_t
  140. */
  141. void mxc_free_iomux(iomux_pin_name_t pin, iomux_pin_cfg_t cfg)
  142. {
  143. }
  144. /*
  145. * This function configures the pad value for a IOMUX pin.
  146. *
  147. * @param pin a pin number as defined in iomux_pin_name_t
  148. * @param config the ORed value of elements defined in iomux_pad_config_t
  149. */
  150. void mxc_iomux_set_pad(iomux_pin_name_t pin, u32 config)
  151. {
  152. u32 pad_reg = get_pad_reg(pin);
  153. writel(config, pad_reg);
  154. }
  155. unsigned int mxc_iomux_get_pad(iomux_pin_name_t pin)
  156. {
  157. u32 pad_reg = get_pad_reg(pin);
  158. return readl(pad_reg);
  159. }
  160. /*
  161. * This function configures daisy-chain
  162. *
  163. * @param input index of input select register
  164. * @param config the binary value of elements
  165. */
  166. void mxc_iomux_set_input(iomux_input_select_t input, u32 config)
  167. {
  168. u32 reg = IOMUXSW_INPUT_CTL + (input << 2);
  169. writel(config, reg);
  170. }