blob: e6de53851dd2fc854056fd91a7e577c76f39eae7 [file] [log] [blame]
Hung-Te Lin2fc3b622013-10-21 21:43:03 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Hung-Te Lin2fc3b622013-10-21 21:43:03 +080018 */
19
20#include <delay.h>
21#include <arch/io.h>
22#include <console/console.h>
23#include <soc/clock.h>
24
25#include "usb.h"
26
Furquan Shaikh22967742014-08-06 09:53:55 -070027struct utmip_ctlr {
28 u32 pll0;
29 u32 pll1;
30 u32 xcvr0;
31 u32 bias0;
32 u32 hsrx0;
33 u32 hsrx1;
34 u32 fslsrx0;
35 u32 fslsrx1;
36 u32 tx;
37 u32 misc0;
38 u32 misc1;
39 u32 debounce;
40 u32 batchrgr;
41 u32 spare;
42 u32 xcvr1;
43 u32 bias1;
44 u32 bias_sts;
45 u32 chrgr_debounce;
46 u32 misc_sts;
47 u32 pmc_wakeup;
48};
49check_member(utmip_ctlr, pmc_wakeup, 0x84c - 0x800);
50
51struct usb_ctlr {
52 u32 id;
53 u32 _rsv0;
54 u32 host;
55 u32 device;
56 u32 txbuf; /* 0x010 */
57 u32 rxbuf;
58 u32 _rsv1[58];
59 u16 ehci_caplen; /* 0x100 */
60 u16 ehci_version;
61 u32 ehci_hcsp;
62 u32 ehci_hccp;
63 u32 _rsv2[5];
64 u32 dci_version; /* 0x120 */
65 u32 dcc_params;
66 u32 extsts;
67 u32 extintr;
68 u32 ehci_usbcmd; /* 0x130 */
69 u32 ehci_usbsts;
70 u32 ehci_usbintr;
71 u32 ehci_frindex;
72 u32 _rsv3; /* 0x140 */
73 u32 ehci_periodic_base;
74 u32 ehci_async_base;
75 u32 async_ttsts;
76 u32 burst_size; /* 0x150 */
77 u32 tx_fill_tuning;
78 u32 _rsv4;
79 u32 icusb_ctrl;
80 u32 ulpi_viewport; /* 0x160 */
81 u32 _rsv5[4];
82 u32 ehci_portsc;
83 u32 _rsv6[15];
84 u32 lpm_ctrl;
85 u32 _rsv7[15];
86 u32 otgsc;
87 u32 usb_mode;
88 u32 _rsv8;
89 u32 ep_nak; /* 0x200 */
90 u32 ep_nak_enable;
91 u32 ep_setup;
92 u32 ep_init;
93 u32 ep_deinit;
94 u32 ep_sts;
95 u32 ep_complete;
96 u32 ep_ctrl[16];
97 u32 _rsv9[105];
98 u32 suspend_ctrl; /* 0x400 */
99 u32 vbus_sensors;
100 u32 vbus_wakeup_id;
101 u32 alt_vbus_sts;
102 u32 legacy_ctrl;
103 u32 _rsv10[3];
104 u32 interpacket_delay;
105 u32 _rsv11[27];
106 u32 resume_delay;
107 u32 _rsv12;
108 u32 spare;
109 u32 _rsv13[9];
110 u32 new_ctrl;
111 u32 _rsv14[207];
112 struct utmip_ctlr utmip; /* 0x800 */
113};
114check_member(usb_ctlr, utmip, 0x800);
115
116/*
117 * Tegra EHCI controllers need their usb_mode, lpm_ctrl and tx_fill_tuning
118 * registers initialized after every EHCI reset and before any other actions
119 * (such as Run/Stop bit) are taken. We reset the controller here, set those
120 * registers and rely on the fact that libpayload doesn't reset EHCI controllers
121 * on initialization for whatever weird reason. This is ugly, fragile, and I
122 * really don't like it, but making this work will require an ugly hack one way
123 * or another so we might as well take the path of least resistance for now.
124 */
125static void usb_ehci_reset_and_prepare(struct usb_ctlr *usb, enum usb_phy_type type)
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800126{
Furquan Shaikh22967742014-08-06 09:53:55 -0700127 int timeout = 1000;
128
Julius Werner2f37bd62015-02-19 14:51:15 -0800129 write32(&usb->ehci_usbcmd, 1 << 1); /* Host Controller Reset */
Furquan Shaikh22967742014-08-06 09:53:55 -0700130 /* TODO: Resets are long, find way to parallelize... or just use XHCI */
131 while (--timeout && (read32(&usb->ehci_usbcmd) & 1 << 1))
132 /* wait for HC to reset */;
133
134 if (!timeout) {
135 printk(BIOS_ERR, "ERROR: EHCI(%p) reset timeout", usb);
136 return;
137 }
138
139 /* Controller mode: HOST */
Julius Werner2f37bd62015-02-19 14:51:15 -0800140 write32(&usb->usb_mode, 3 << 0);
Furquan Shaikh22967742014-08-06 09:53:55 -0700141 /* Parallel transceiver selct */
Julius Werner2f37bd62015-02-19 14:51:15 -0800142 write32(&usb->lpm_ctrl, type << 29);
Furquan Shaikh22967742014-08-06 09:53:55 -0700143 /* Tx FIFO Burst thresh */
Julius Werner2f37bd62015-02-19 14:51:15 -0800144 write32(&usb->tx_fill_tuning, 0x10 << 16);
Furquan Shaikh22967742014-08-06 09:53:55 -0700145}
146
147/* Assume USBx clocked, out of reset, UTMI+ PLL set up, SAMP_x out of pwrdn */
148void usb_setup_utmip(void *usb_base)
149{
150 struct usb_ctlr *usb = (struct usb_ctlr *)usb_base;
151
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800152 /* KHz formulas were guessed from U-Boot constants. Formats unclear. */
Julius Wernere57c3032014-04-11 18:23:12 -0700153 int khz = clock_get_pll_input_khz();
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800154
155 /* Stop UTMI+ crystal clock while we mess with its settings */
156 clrbits_le32(&usb->utmip.misc1, 1 << 30); /* PHY_XTAL_CLKEN */
157 udelay(1);
158
159 /* Take stuff out of pwrdn and add some magic numbers from U-Boot */
Julius Werner2f37bd62015-02-19 14:51:15 -0800160 write32(&usb->utmip.xcvr0,
Julius Werner94184762015-02-19 20:19:23 -0800161 0x8 << 25 | /* HS slew rate [10:4] */
162 0x3 << 22 | /* HS driver output 'SETUP' [6:4] */
163 0 << 21 | /* LS bias selection */
164 0 << 18 | /* PDZI pwrdn */
165 0 << 16 | /* PD2 pwrdn */
166 0 << 14 | /* PD pwrdn */
167 1 << 13 | /* (rst) HS receiver terminations */
168 0x1 << 10 | /* (rst) LS falling slew rate */
169 0x1 << 8 | /* (rst) LS rising slew rate */
170 0x4 << 0); /* HS driver output 'SETUP' [3:0] */
171 write32(&usb->utmip.xcvr1,
172 0x7 << 18 | /* Termination range adjustment */
173 0 << 4 | /* PDDR pwrdn */
174 0 << 2 | /* PDCHRP pwrdn */
175 0 << 0); /* PDDISC pwrdn */
176 write32(&usb->utmip.tx,
177 1 << 19 | /* FS send initial J before sync(?) */
178 1 << 16 | /* (rst) Allow stuff error on SoP */
179 1 << 9); /* (rst) Check disc only on EoP */
Julius Werner2f37bd62015-02-19 14:51:15 -0800180 write32(&usb->utmip.hsrx0,
Julius Werner94184762015-02-19 20:19:23 -0800181 0x2 << 30 | /* (rst) Keep pattern on active */
182 1 << 28 | /* (rst) Realign inertia on pkt */
Stephen Barbere7248792015-06-16 13:44:13 -0700183 0x0 << 24 | /* (rst) edges-1 to move sampling */
Julius Werner94184762015-02-19 20:19:23 -0800184 0x3 << 21 | /* (rst) squelch delay on EoP */
185 0x11 << 15 | /* cycles until IDLE */
186 0x10 << 10); /* elastic input depth */
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800187
188 /* U-Boot claims the USBD values for these are used across all UTMI+
189 * PHYs. That sounds so horribly wrong that I'm not going to implement
190 * it, but keep it in mind if we're ever not using the USBD port. */
Julius Werner2f37bd62015-02-19 14:51:15 -0800191 write32(&usb->utmip.bias0,
Julius Werner94184762015-02-19 20:19:23 -0800192 0x1 << 24 | /* HS disconnect detect level [2] */
193 1 << 23 | /* (rst) IDPD value */
194 1 << 22 | /* (rst) IDPD select */
195 1 << 11 | /* (rst) OTG pwrdn */
196 0 << 10 | /* bias pwrdn */
197 0x1 << 2 | /* HS disconnect detect level [1:0] */
198 0x2 << 0); /* HS squelch detect level */
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800199
Julius Werner94184762015-02-19 20:19:23 -0800200 write32(&usb->utmip.bias1,
201 khz / 2200 << 3 | /* bias pwrdn cycles (20us?) */
202 1 << 2 | /* (rst) VBUS wakeup pwrdn */
203 0 << 0); /* PDTRK pwrdn */
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800204
Julius Werner94184762015-02-19 20:19:23 -0800205 write32(&usb->utmip.debounce,
206 0xffff << 16 | /* (rst) */
207 25 * khz / 10 << 0); /* TODO: what's this, really? */
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800208
209 udelay(1);
210 setbits_le32(&usb->utmip.misc1, 1 << 30); /* PHY_XTAL_CLKEN */
211
Julius Werner94184762015-02-19 20:19:23 -0800212 write32(&usb->suspend_ctrl,
213 1 << 12 | /* UTMI+ enable */
214 0 << 11); /* UTMI+ reset */
Furquan Shaikh22967742014-08-06 09:53:55 -0700215
216 usb_ehci_reset_and_prepare(usb, USB_PHY_UTMIP);
217 printk(BIOS_DEBUG, "USB controller @ %p set up with UTMI+ PHY\n",usb_base);
Hung-Te Lin2fc3b622013-10-21 21:43:03 +0800218}