blob: e0fb43f89bf590cf70b3502e6fa148cdc01ba66d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jana Rapavaf93022c2011-12-05 11:07:00 +02002/*
3 * Copyright (C) 2011 Jana Rapava <fermata7@gmail.com>
4 * Copyright (C) 2011 CompuLab, Ltd. <www.compulab.co.il>
5 *
6 * Authors: Jana Rapava <fermata7@gmail.com>
7 * Igor Grinberg <grinberg@compulab.co.il>
8 *
9 * Based on:
10 * linux/drivers/usb/otg/ulpi.c
11 * Generic ULPI USB transceiver support
12 *
13 * Original Copyright follow:
14 * Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
15 *
16 * Based on sources from
17 *
18 * Sascha Hauer <s.hauer@pengutronix.de>
19 * Freescale Semiconductors
Jana Rapavaf93022c2011-12-05 11:07:00 +020020 */
21
22#include <common.h>
23#include <exports.h>
24#include <usb/ulpi.h>
25
26#define ULPI_ID_REGS_COUNT 4
27#define ULPI_TEST_VALUE 0x55 /* 0x55 == 0b01010101 */
28
29static struct ulpi_regs *ulpi = (struct ulpi_regs *)0;
30
Govindraj.R3e6e8092012-02-06 03:55:31 +000031static int ulpi_integrity_check(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +020032{
Igor Grinberg42561012011-12-12 12:08:33 +020033 u32 val, tval = ULPI_TEST_VALUE;
34 int err, i;
Jana Rapavaf93022c2011-12-05 11:07:00 +020035
36 /* Use the 'special' test value to check all bits */
37 for (i = 0; i < 2; i++, tval <<= 1) {
Govindraj.R3e6e8092012-02-06 03:55:31 +000038 err = ulpi_write(ulpi_vp, &ulpi->scratch, tval);
Jana Rapavaf93022c2011-12-05 11:07:00 +020039 if (err)
40 return err;
41
Govindraj.R3e6e8092012-02-06 03:55:31 +000042 val = ulpi_read(ulpi_vp, &ulpi->scratch);
Jana Rapavaf93022c2011-12-05 11:07:00 +020043 if (val != tval) {
44 printf("ULPI integrity check failed\n");
45 return val;
46 }
47 }
48
49 return 0;
50}
51
Govindraj.R3e6e8092012-02-06 03:55:31 +000052int ulpi_init(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +020053{
54 u32 val, id = 0;
55 u8 *reg = &ulpi->product_id_high;
56 int i;
57
58 /* Assemble ID from four ULPI ID registers (8 bits each). */
59 for (i = 0; i < ULPI_ID_REGS_COUNT; i++) {
Govindraj.R3e6e8092012-02-06 03:55:31 +000060 val = ulpi_read(ulpi_vp, reg - i);
Jana Rapavaf93022c2011-12-05 11:07:00 +020061 if (val == ULPI_ERROR)
62 return val;
63
64 id = (id << 8) | val;
65 }
66
67 /* Split ID into vendor and product ID. */
68 debug("ULPI transceiver ID 0x%04x:0x%04x\n", id >> 16, id & 0xffff);
69
Govindraj.R3e6e8092012-02-06 03:55:31 +000070 return ulpi_integrity_check(ulpi_vp);
Jana Rapavaf93022c2011-12-05 11:07:00 +020071}
72
Govindraj.R3e6e8092012-02-06 03:55:31 +000073int ulpi_select_transceiver(struct ulpi_viewport *ulpi_vp, unsigned speed)
Jana Rapavaf93022c2011-12-05 11:07:00 +020074{
Igor Grinberg1113a792011-12-14 08:16:03 +020075 u32 tspeed = ULPI_FC_FULL_SPEED;
Jana Rapavaf93022c2011-12-05 11:07:00 +020076 u32 val;
77
78 switch (speed) {
79 case ULPI_FC_HIGH_SPEED:
80 case ULPI_FC_FULL_SPEED:
81 case ULPI_FC_LOW_SPEED:
82 case ULPI_FC_FS4LS:
83 tspeed = speed;
84 break;
85 default:
Igor Grinbergcf9f95f2011-12-12 12:08:34 +020086 printf("ULPI: %s: wrong transceiver speed specified: %u, "
87 "falling back to full speed\n", __func__, speed);
Jana Rapavaf93022c2011-12-05 11:07:00 +020088 }
89
Govindraj.R3e6e8092012-02-06 03:55:31 +000090 val = ulpi_read(ulpi_vp, &ulpi->function_ctrl);
Jana Rapavaf93022c2011-12-05 11:07:00 +020091 if (val == ULPI_ERROR)
92 return val;
93
94 /* clear the previous speed setting */
95 val = (val & ~ULPI_FC_XCVRSEL_MASK) | tspeed;
96
Govindraj.R3e6e8092012-02-06 03:55:31 +000097 return ulpi_write(ulpi_vp, &ulpi->function_ctrl, val);
Jana Rapavaf93022c2011-12-05 11:07:00 +020098}
99
Lucas Stach141288b2012-10-01 00:44:34 +0200100int ulpi_set_vbus(struct ulpi_viewport *ulpi_vp, int on, int ext_power)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200101{
102 u32 flags = ULPI_OTG_DRVVBUS;
103 u8 *reg = on ? &ulpi->otg_ctrl_set : &ulpi->otg_ctrl_clear;
104
105 if (ext_power)
106 flags |= ULPI_OTG_DRVVBUS_EXT;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200107
Govindraj.R3e6e8092012-02-06 03:55:31 +0000108 return ulpi_write(ulpi_vp, reg, flags);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200109}
110
Lucas Stach141288b2012-10-01 00:44:34 +0200111int ulpi_set_vbus_indicator(struct ulpi_viewport *ulpi_vp, int external,
112 int passthu, int complement)
113{
114 u32 flags, val;
115 u8 *reg;
116
117 reg = external ? &ulpi->otg_ctrl_set : &ulpi->otg_ctrl_clear;
118 val = ulpi_write(ulpi_vp, reg, ULPI_OTG_EXTVBUSIND);
119 if (val)
120 return val;
121
122 flags = passthu ? ULPI_IFACE_PASSTHRU : 0;
123 flags |= complement ? ULPI_IFACE_EXTVBUS_COMPLEMENT : 0;
124
125 val = ulpi_read(ulpi_vp, &ulpi->iface_ctrl);
126 if (val == ULPI_ERROR)
127 return val;
128
129 val = val & ~(ULPI_IFACE_PASSTHRU & ULPI_IFACE_EXTVBUS_COMPLEMENT);
130 val |= flags;
131 val = ulpi_write(ulpi_vp, &ulpi->iface_ctrl, val);
132 if (val)
133 return val;
134
135 return 0;
136}
137
Govindraj.R3e6e8092012-02-06 03:55:31 +0000138int ulpi_set_pd(struct ulpi_viewport *ulpi_vp, int enable)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200139{
140 u32 val = ULPI_OTG_DP_PULLDOWN | ULPI_OTG_DM_PULLDOWN;
141 u8 *reg = enable ? &ulpi->otg_ctrl_set : &ulpi->otg_ctrl_clear;
142
Govindraj.R3e6e8092012-02-06 03:55:31 +0000143 return ulpi_write(ulpi_vp, reg, val);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200144}
145
Govindraj.R3e6e8092012-02-06 03:55:31 +0000146int ulpi_opmode_sel(struct ulpi_viewport *ulpi_vp, unsigned opmode)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200147{
Igor Grinberg1113a792011-12-14 08:16:03 +0200148 u32 topmode = ULPI_FC_OPMODE_NORMAL;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200149 u32 val;
150
151 switch (opmode) {
152 case ULPI_FC_OPMODE_NORMAL:
153 case ULPI_FC_OPMODE_NONDRIVING:
154 case ULPI_FC_OPMODE_DISABLE_NRZI:
155 case ULPI_FC_OPMODE_NOSYNC_NOEOP:
156 topmode = opmode;
157 break;
158 default:
Igor Grinbergcf9f95f2011-12-12 12:08:34 +0200159 printf("ULPI: %s: wrong OpMode specified: %u, "
160 "falling back to OpMode Normal\n", __func__, opmode);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200161 }
162
Govindraj.R3e6e8092012-02-06 03:55:31 +0000163 val = ulpi_read(ulpi_vp, &ulpi->function_ctrl);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200164 if (val == ULPI_ERROR)
165 return val;
166
167 /* clear the previous opmode setting */
168 val = (val & ~ULPI_FC_OPMODE_MASK) | topmode;
169
Govindraj.R3e6e8092012-02-06 03:55:31 +0000170 return ulpi_write(ulpi_vp, &ulpi->function_ctrl, val);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200171}
172
Govindraj.R3e6e8092012-02-06 03:55:31 +0000173int ulpi_serial_mode_enable(struct ulpi_viewport *ulpi_vp, unsigned smode)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200174{
175 switch (smode) {
176 case ULPI_IFACE_6_PIN_SERIAL_MODE:
177 case ULPI_IFACE_3_PIN_SERIAL_MODE:
178 break;
179 default:
Igor Grinbergcf9f95f2011-12-12 12:08:34 +0200180 printf("ULPI: %s: unrecognized Serial Mode specified: %u\n",
181 __func__, smode);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200182 return ULPI_ERROR;
183 }
184
Govindraj.R3e6e8092012-02-06 03:55:31 +0000185 return ulpi_write(ulpi_vp, &ulpi->iface_ctrl_set, smode);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200186}
187
Govindraj.R3e6e8092012-02-06 03:55:31 +0000188int ulpi_suspend(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200189{
Igor Grinberg42561012011-12-12 12:08:33 +0200190 int err;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200191
Govindraj.R3e6e8092012-02-06 03:55:31 +0000192 err = ulpi_write(ulpi_vp, &ulpi->function_ctrl_clear,
Jana Rapavaf93022c2011-12-05 11:07:00 +0200193 ULPI_FC_SUSPENDM);
194 if (err)
195 printf("ULPI: %s: failed writing the suspend bit\n", __func__);
196
197 return err;
198}
199
200/*
201 * Wait for ULPI PHY reset to complete.
202 * Actual wait for reset must be done in a view port specific way,
203 * because it involves checking the DIR line.
204 */
Govindraj.R3e6e8092012-02-06 03:55:31 +0000205static int __ulpi_reset_wait(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200206{
207 u32 val;
208 int timeout = CONFIG_USB_ULPI_TIMEOUT;
209
210 /* Wait for the RESET bit to become zero */
211 while (--timeout) {
212 /*
213 * This function is generic and suppose to work
214 * with any viewport, so we cheat here and don't check
215 * for the error of ulpi_read(), if there is one, then
216 * there will be a timeout.
217 */
Govindraj.R3e6e8092012-02-06 03:55:31 +0000218 val = ulpi_read(ulpi_vp, &ulpi->function_ctrl);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200219 if (!(val & ULPI_FC_RESET))
220 return 0;
221
222 udelay(1);
223 }
224
225 printf("ULPI: %s: reset timed out\n", __func__);
226
227 return ULPI_ERROR;
228}
Govindraj.R3e6e8092012-02-06 03:55:31 +0000229int ulpi_reset_wait(struct ulpi_viewport *ulpi_vp)
230 __attribute__((weak, alias("__ulpi_reset_wait")));
Jana Rapavaf93022c2011-12-05 11:07:00 +0200231
Govindraj.R3e6e8092012-02-06 03:55:31 +0000232int ulpi_reset(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200233{
Igor Grinberg42561012011-12-12 12:08:33 +0200234 int err;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200235
Govindraj.R3e6e8092012-02-06 03:55:31 +0000236 err = ulpi_write(ulpi_vp,
Jana Rapavaf93022c2011-12-05 11:07:00 +0200237 &ulpi->function_ctrl_set, ULPI_FC_RESET);
238 if (err) {
239 printf("ULPI: %s: failed writing reset bit\n", __func__);
240 return err;
241 }
242
Govindraj.R3e6e8092012-02-06 03:55:31 +0000243 return ulpi_reset_wait(ulpi_vp);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200244}