ulpi.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Copyright (C) 2011 Jana Rapava <fermata7@gmail.com>
  3. * Copyright (C) 2011 CompuLab, Ltd. <www.compulab.co.il>
  4. *
  5. * Authors: Jana Rapava <fermata7@gmail.com>
  6. * Igor Grinberg <grinberg@compulab.co.il>
  7. *
  8. * Based on:
  9. * linux/drivers/usb/otg/ulpi.c
  10. * Generic ULPI USB transceiver support
  11. *
  12. * Original Copyright follow:
  13. * Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
  14. *
  15. * Based on sources from
  16. *
  17. * Sascha Hauer <s.hauer@pengutronix.de>
  18. * Freescale Semiconductors
  19. *
  20. * This program is free software; you can redistribute it and/or modify
  21. * it under the terms of the GNU General Public License as published by
  22. * the Free Software Foundation; either version 2 of the License, or
  23. * (at your option) any later version.
  24. *
  25. * This program is distributed in the hope that it will be useful,
  26. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  28. * GNU General Public License for more details.
  29. */
  30. #include <common.h>
  31. #include <exports.h>
  32. #include <usb/ulpi.h>
  33. #define ULPI_ID_REGS_COUNT 4
  34. #define ULPI_TEST_VALUE 0x55 /* 0x55 == 0b01010101 */
  35. static struct ulpi_regs *ulpi = (struct ulpi_regs *)0;
  36. static int ulpi_integrity_check(u32 ulpi_viewport)
  37. {
  38. u32 val, tval = ULPI_TEST_VALUE;
  39. int err, i;
  40. /* Use the 'special' test value to check all bits */
  41. for (i = 0; i < 2; i++, tval <<= 1) {
  42. err = ulpi_write(ulpi_viewport, &ulpi->scratch, tval);
  43. if (err)
  44. return err;
  45. val = ulpi_read(ulpi_viewport, &ulpi->scratch);
  46. if (val != tval) {
  47. printf("ULPI integrity check failed\n");
  48. return val;
  49. }
  50. }
  51. return 0;
  52. }
  53. int ulpi_init(u32 ulpi_viewport)
  54. {
  55. u32 val, id = 0;
  56. u8 *reg = &ulpi->product_id_high;
  57. int i;
  58. /* Assemble ID from four ULPI ID registers (8 bits each). */
  59. for (i = 0; i < ULPI_ID_REGS_COUNT; i++) {
  60. val = ulpi_read(ulpi_viewport, reg - i);
  61. if (val == ULPI_ERROR)
  62. return val;
  63. id = (id << 8) | val;
  64. }
  65. /* Split ID into vendor and product ID. */
  66. debug("ULPI transceiver ID 0x%04x:0x%04x\n", id >> 16, id & 0xffff);
  67. return ulpi_integrity_check(ulpi_viewport);
  68. }
  69. int ulpi_select_transceiver(u32 ulpi_viewport, unsigned speed)
  70. {
  71. u32 tspeed = ULPI_FC_FULL_SPEED;
  72. u32 val;
  73. switch (speed) {
  74. case ULPI_FC_HIGH_SPEED:
  75. case ULPI_FC_FULL_SPEED:
  76. case ULPI_FC_LOW_SPEED:
  77. case ULPI_FC_FS4LS:
  78. tspeed = speed;
  79. break;
  80. default:
  81. printf("ULPI: %s: wrong transceiver speed specified: %u, "
  82. "falling back to full speed\n", __func__, speed);
  83. }
  84. val = ulpi_read(ulpi_viewport, &ulpi->function_ctrl);
  85. if (val == ULPI_ERROR)
  86. return val;
  87. /* clear the previous speed setting */
  88. val = (val & ~ULPI_FC_XCVRSEL_MASK) | tspeed;
  89. return ulpi_write(ulpi_viewport, &ulpi->function_ctrl, val);
  90. }
  91. int ulpi_set_vbus(u32 ulpi_viewport, int on, int ext_power, int ext_ind)
  92. {
  93. u32 flags = ULPI_OTG_DRVVBUS;
  94. u8 *reg = on ? &ulpi->otg_ctrl_set : &ulpi->otg_ctrl_clear;
  95. if (ext_power)
  96. flags |= ULPI_OTG_DRVVBUS_EXT;
  97. if (ext_ind)
  98. flags |= ULPI_OTG_EXTVBUSIND;
  99. return ulpi_write(ulpi_viewport, reg, flags);
  100. }
  101. int ulpi_set_pd(u32 ulpi_viewport, int enable)
  102. {
  103. u32 val = ULPI_OTG_DP_PULLDOWN | ULPI_OTG_DM_PULLDOWN;
  104. u8 *reg = enable ? &ulpi->otg_ctrl_set : &ulpi->otg_ctrl_clear;
  105. return ulpi_write(ulpi_viewport, reg, val);
  106. }
  107. int ulpi_opmode_sel(u32 ulpi_viewport, unsigned opmode)
  108. {
  109. u32 topmode = ULPI_FC_OPMODE_NORMAL;
  110. u32 val;
  111. switch (opmode) {
  112. case ULPI_FC_OPMODE_NORMAL:
  113. case ULPI_FC_OPMODE_NONDRIVING:
  114. case ULPI_FC_OPMODE_DISABLE_NRZI:
  115. case ULPI_FC_OPMODE_NOSYNC_NOEOP:
  116. topmode = opmode;
  117. break;
  118. default:
  119. printf("ULPI: %s: wrong OpMode specified: %u, "
  120. "falling back to OpMode Normal\n", __func__, opmode);
  121. }
  122. val = ulpi_read(ulpi_viewport, &ulpi->function_ctrl);
  123. if (val == ULPI_ERROR)
  124. return val;
  125. /* clear the previous opmode setting */
  126. val = (val & ~ULPI_FC_OPMODE_MASK) | topmode;
  127. return ulpi_write(ulpi_viewport, &ulpi->function_ctrl, val);
  128. }
  129. int ulpi_serial_mode_enable(u32 ulpi_viewport, unsigned smode)
  130. {
  131. switch (smode) {
  132. case ULPI_IFACE_6_PIN_SERIAL_MODE:
  133. case ULPI_IFACE_3_PIN_SERIAL_MODE:
  134. break;
  135. default:
  136. printf("ULPI: %s: unrecognized Serial Mode specified: %u\n",
  137. __func__, smode);
  138. return ULPI_ERROR;
  139. }
  140. return ulpi_write(ulpi_viewport, &ulpi->iface_ctrl_set, smode);
  141. }
  142. int ulpi_suspend(u32 ulpi_viewport)
  143. {
  144. int err;
  145. err = ulpi_write(ulpi_viewport, &ulpi->function_ctrl_clear,
  146. ULPI_FC_SUSPENDM);
  147. if (err)
  148. printf("ULPI: %s: failed writing the suspend bit\n", __func__);
  149. return err;
  150. }
  151. /*
  152. * Wait for ULPI PHY reset to complete.
  153. * Actual wait for reset must be done in a view port specific way,
  154. * because it involves checking the DIR line.
  155. */
  156. static int __ulpi_reset_wait(u32 ulpi_viewport)
  157. {
  158. u32 val;
  159. int timeout = CONFIG_USB_ULPI_TIMEOUT;
  160. /* Wait for the RESET bit to become zero */
  161. while (--timeout) {
  162. /*
  163. * This function is generic and suppose to work
  164. * with any viewport, so we cheat here and don't check
  165. * for the error of ulpi_read(), if there is one, then
  166. * there will be a timeout.
  167. */
  168. val = ulpi_read(ulpi_viewport, &ulpi->function_ctrl);
  169. if (!(val & ULPI_FC_RESET))
  170. return 0;
  171. udelay(1);
  172. }
  173. printf("ULPI: %s: reset timed out\n", __func__);
  174. return ULPI_ERROR;
  175. }
  176. int ulpi_reset_wait(u32) __attribute__((weak, alias("__ulpi_reset_wait")));
  177. int ulpi_reset(u32 ulpi_viewport)
  178. {
  179. int err;
  180. err = ulpi_write(ulpi_viewport,
  181. &ulpi->function_ctrl_set, ULPI_FC_RESET);
  182. if (err) {
  183. printf("ULPI: %s: failed writing reset bit\n", __func__);
  184. return err;
  185. }
  186. return ulpi_reset_wait(ulpi_viewport);
  187. }