blob: 19bb5a1fe5d52a61b47aa0479a1ffbd54ea89da6 [file] [log] [blame]
Hans de Goedea1441982015-01-07 15:08:43 +01001/*
Hans de Goede86979092015-04-27 14:54:47 +02002 * Sunxi usb-phy code
Hans de Goedea1441982015-01-07 15:08:43 +01003 *
Hans de Goede86979092015-04-27 14:54:47 +02004 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
5 * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
Hans de Goedea1441982015-01-07 15:08:43 +01006 *
7 * Based on code from
8 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
Hans de Goede7e5aabd2015-04-27 11:44:22 +020013#include <common.h>
Hans de Goedea1441982015-01-07 15:08:43 +010014#include <asm/arch/clock.h>
15#include <asm/arch/cpu.h>
Hans de Goede26a90052015-04-27 15:05:10 +020016#include <asm/arch/usb_phy.h>
Hans de Goedea1441982015-01-07 15:08:43 +010017#include <asm/gpio.h>
18#include <asm/io.h>
Hans de Goede494f5d02015-04-22 17:39:59 +020019#include <errno.h>
Hans de Goedea1441982015-01-07 15:08:43 +010020
21#define SUNXI_USB_PMU_IRQ_ENABLE 0x800
Vishnu Patekar3702f142015-03-01 23:47:48 +053022#ifdef CONFIG_MACH_SUN8I_A33
23#define SUNXI_USB_CSR 0x410
24#else
Hans de Goedea1441982015-01-07 15:08:43 +010025#define SUNXI_USB_CSR 0x404
Vishnu Patekar3702f142015-03-01 23:47:48 +053026#endif
Hans de Goedea1441982015-01-07 15:08:43 +010027#define SUNXI_USB_PASSBY_EN 1
28
29#define SUNXI_EHCI_AHB_ICHR8_EN (1 << 10)
30#define SUNXI_EHCI_AHB_INCR4_BURST_EN (1 << 9)
31#define SUNXI_EHCI_AHB_INCRX_ALIGN_EN (1 << 8)
32#define SUNXI_EHCI_ULPI_BYPASS_EN (1 << 0)
33
Hans de Goede86979092015-04-27 14:54:47 +020034static struct sunxi_usb_phy {
Hans de Goedea1441982015-01-07 15:08:43 +010035 int usb_rst_mask;
Hans de Goedea1441982015-01-07 15:08:43 +010036 int gpio_vbus;
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +010037 int gpio_vbus_det;
Hans de Goedeaadd97f2015-06-14 17:29:53 +020038 int gpio_id_det;
Hans de Goedea1441982015-01-07 15:08:43 +010039 int id;
Hans de Goedee8204022015-04-27 16:57:54 +020040 int init_count;
41 int power_on_count;
Hans de Goede86979092015-04-27 14:54:47 +020042} sunxi_usb_phy[] = {
Hans de Goedea1441982015-01-07 15:08:43 +010043 {
Hans de Goedee7b852a2015-01-07 15:26:06 +010044 .usb_rst_mask = CCM_USB_CTRL_PHY0_RST | CCM_USB_CTRL_PHY0_CLK,
Hans de Goedee7b852a2015-01-07 15:26:06 +010045 .id = 0,
46 },
47 {
Hans de Goedea1441982015-01-07 15:08:43 +010048 .usb_rst_mask = CCM_USB_CTRL_PHY1_RST | CCM_USB_CTRL_PHY1_CLK,
Hans de Goedea1441982015-01-07 15:08:43 +010049 .id = 1,
50 },
Hans de Goede1168e092015-04-27 16:50:04 +020051#if CONFIG_SUNXI_USB_PHYS >= 3
Hans de Goedea1441982015-01-07 15:08:43 +010052 {
53 .usb_rst_mask = CCM_USB_CTRL_PHY2_RST | CCM_USB_CTRL_PHY2_CLK,
Hans de Goedea1441982015-01-07 15:08:43 +010054 .id = 2,
55 }
56#endif
57};
58
Hans de Goedea1441982015-01-07 15:08:43 +010059static int get_vbus_gpio(int index)
60{
61 switch (index) {
Hans de Goedee7b852a2015-01-07 15:26:06 +010062 case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_PIN);
Hans de Goedea1441982015-01-07 15:08:43 +010063 case 1: return sunxi_name_to_gpio(CONFIG_USB1_VBUS_PIN);
64 case 2: return sunxi_name_to_gpio(CONFIG_USB2_VBUS_PIN);
65 }
Hans de Goede494f5d02015-04-22 17:39:59 +020066 return -EINVAL;
Hans de Goedea1441982015-01-07 15:08:43 +010067}
68
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +010069static int get_vbus_detect_gpio(int index)
70{
71 switch (index) {
72 case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_DET);
73 }
Hans de Goede494f5d02015-04-22 17:39:59 +020074 return -EINVAL;
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +010075}
76
Hans de Goedeaadd97f2015-06-14 17:29:53 +020077static int get_id_detect_gpio(int index)
78{
79 switch (index) {
80 case 0: return sunxi_name_to_gpio(CONFIG_USB0_ID_DET);
81 }
82 return -EINVAL;
83}
84
Hans de Goede86979092015-04-27 14:54:47 +020085static void usb_phy_write(struct sunxi_usb_phy *phy, int addr,
Hans de Goedea1441982015-01-07 15:08:43 +010086 int data, int len)
87{
88 int j = 0, usbc_bit = 0;
Hans de Goede1f4e1d12015-04-27 14:36:23 +020089 void *dest = (void *)SUNXI_USB0_BASE + SUNXI_USB_CSR;
Hans de Goedea1441982015-01-07 15:08:43 +010090
Vishnu Patekar3702f142015-03-01 23:47:48 +053091#ifdef CONFIG_MACH_SUN8I_A33
92 /* CSR needs to be explicitly initialized to 0 on A33 */
93 writel(0, dest);
94#endif
95
Hans de Goede86979092015-04-27 14:54:47 +020096 usbc_bit = 1 << (phy->id * 2);
Hans de Goedea1441982015-01-07 15:08:43 +010097 for (j = 0; j < len; j++) {
98 /* set the bit address to be written */
99 clrbits_le32(dest, 0xff << 8);
100 setbits_le32(dest, (addr + j) << 8);
101
102 clrbits_le32(dest, usbc_bit);
103 /* set data bit */
104 if (data & 0x1)
105 setbits_le32(dest, 1 << 7);
106 else
107 clrbits_le32(dest, 1 << 7);
108
109 setbits_le32(dest, usbc_bit);
110
111 clrbits_le32(dest, usbc_bit);
112
113 data >>= 1;
114 }
115}
116
Hans de Goede86979092015-04-27 14:54:47 +0200117static void sunxi_usb_phy_config(struct sunxi_usb_phy *phy)
Hans de Goedea1441982015-01-07 15:08:43 +0100118{
119 /* The following comments are machine
120 * translated from Chinese, you have been warned!
121 */
122
Hans de Goedee7b852a2015-01-07 15:26:06 +0100123 /* Regulation 45 ohms */
Hans de Goede86979092015-04-27 14:54:47 +0200124 if (phy->id == 0)
125 usb_phy_write(phy, 0x0c, 0x01, 1);
Hans de Goedee7b852a2015-01-07 15:26:06 +0100126
Hans de Goedea1441982015-01-07 15:08:43 +0100127 /* adjust PHY's magnitude and rate */
Hans de Goede86979092015-04-27 14:54:47 +0200128 usb_phy_write(phy, 0x20, 0x14, 5);
Hans de Goedea1441982015-01-07 15:08:43 +0100129
130 /* threshold adjustment disconnect */
Hans de Goede9395a0e2015-05-31 19:26:54 +0200131#if defined CONFIG_MACH_SUN5I || defined CONFIG_MACH_SUN7I
Hans de Goede86979092015-04-27 14:54:47 +0200132 usb_phy_write(phy, 0x2a, 2, 2);
Hans de Goede9395a0e2015-05-31 19:26:54 +0200133#else
134 usb_phy_write(phy, 0x2a, 3, 2);
Hans de Goedea1441982015-01-07 15:08:43 +0100135#endif
136
137 return;
138}
139
Hans de Goede1f4e1d12015-04-27 14:36:23 +0200140static void sunxi_usb_phy_passby(int index, int enable)
Hans de Goedea1441982015-01-07 15:08:43 +0100141{
142 unsigned long bits = 0;
Hans de Goede1f4e1d12015-04-27 14:36:23 +0200143 void *addr;
144
145 if (index == 1)
146 addr = (void *)SUNXI_USB1_BASE + SUNXI_USB_PMU_IRQ_ENABLE;
147 else
148 addr = (void *)SUNXI_USB2_BASE + SUNXI_USB_PMU_IRQ_ENABLE;
Hans de Goedea1441982015-01-07 15:08:43 +0100149
150 bits = SUNXI_EHCI_AHB_ICHR8_EN |
151 SUNXI_EHCI_AHB_INCR4_BURST_EN |
152 SUNXI_EHCI_AHB_INCRX_ALIGN_EN |
153 SUNXI_EHCI_ULPI_BYPASS_EN;
154
155 if (enable)
156 setbits_le32(addr, bits);
157 else
158 clrbits_le32(addr, bits);
159
160 return;
161}
162
Hans de Goede86979092015-04-27 14:54:47 +0200163void sunxi_usb_phy_enable_squelch_detect(int index, int enable)
Hans de Goedeab721ad2015-03-27 20:54:25 +0100164{
Hans de Goede86979092015-04-27 14:54:47 +0200165 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedeab721ad2015-03-27 20:54:25 +0100166
Hans de Goede86979092015-04-27 14:54:47 +0200167 usb_phy_write(phy, 0x3c, enable ? 0 : 2, 2);
Hans de Goedeab721ad2015-03-27 20:54:25 +0100168}
169
Hans de Goede86979092015-04-27 14:54:47 +0200170void sunxi_usb_phy_init(int index)
Hans de Goedea1441982015-01-07 15:08:43 +0100171{
Hans de Goede86979092015-04-27 14:54:47 +0200172 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedea1441982015-01-07 15:08:43 +0100173 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
174
Hans de Goedee8204022015-04-27 16:57:54 +0200175 phy->init_count++;
176 if (phy->init_count != 1)
177 return;
178
Hans de Goede86979092015-04-27 14:54:47 +0200179 setbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
Hans de Goedea1441982015-01-07 15:08:43 +0100180
Hans de Goede86979092015-04-27 14:54:47 +0200181 sunxi_usb_phy_config(phy);
Hans de Goedea1441982015-01-07 15:08:43 +0100182
Hans de Goede86979092015-04-27 14:54:47 +0200183 if (phy->id != 0)
Hans de Goede1f4e1d12015-04-27 14:36:23 +0200184 sunxi_usb_phy_passby(index, SUNXI_USB_PASSBY_EN);
Hans de Goedea1441982015-01-07 15:08:43 +0100185}
186
Hans de Goede86979092015-04-27 14:54:47 +0200187void sunxi_usb_phy_exit(int index)
Hans de Goedea1441982015-01-07 15:08:43 +0100188{
Hans de Goede86979092015-04-27 14:54:47 +0200189 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedea1441982015-01-07 15:08:43 +0100190 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
191
Hans de Goedee8204022015-04-27 16:57:54 +0200192 phy->init_count--;
193 if (phy->init_count != 0)
194 return;
195
Hans de Goede86979092015-04-27 14:54:47 +0200196 if (phy->id != 0)
Hans de Goede1f4e1d12015-04-27 14:36:23 +0200197 sunxi_usb_phy_passby(index, !SUNXI_USB_PASSBY_EN);
Hans de Goedea1441982015-01-07 15:08:43 +0100198
Hans de Goede86979092015-04-27 14:54:47 +0200199 clrbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
Hans de Goedea1441982015-01-07 15:08:43 +0100200}
201
Hans de Goede86979092015-04-27 14:54:47 +0200202void sunxi_usb_phy_power_on(int index)
Hans de Goedea1441982015-01-07 15:08:43 +0100203{
Hans de Goede86979092015-04-27 14:54:47 +0200204 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedea1441982015-01-07 15:08:43 +0100205
Hans de Goedee8204022015-04-27 16:57:54 +0200206 phy->power_on_count++;
207 if (phy->power_on_count != 1)
208 return;
209
Hans de Goede86979092015-04-27 14:54:47 +0200210 if (phy->gpio_vbus >= 0)
211 gpio_set_value(phy->gpio_vbus, 1);
Hans de Goedea1441982015-01-07 15:08:43 +0100212}
213
Hans de Goede86979092015-04-27 14:54:47 +0200214void sunxi_usb_phy_power_off(int index)
Hans de Goedea1441982015-01-07 15:08:43 +0100215{
Hans de Goede86979092015-04-27 14:54:47 +0200216 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedea1441982015-01-07 15:08:43 +0100217
Hans de Goedee8204022015-04-27 16:57:54 +0200218 phy->power_on_count--;
219 if (phy->power_on_count != 0)
220 return;
221
Hans de Goede86979092015-04-27 14:54:47 +0200222 if (phy->gpio_vbus >= 0)
223 gpio_set_value(phy->gpio_vbus, 0);
Hans de Goedea1441982015-01-07 15:08:43 +0100224}
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +0100225
Hans de Goede39c119d2015-07-08 16:44:22 +0200226int sunxi_usb_phy_power_is_on(int index)
227{
228 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
229
230 return phy->power_on_count > 0;
231}
232
Hans de Goede86979092015-04-27 14:54:47 +0200233int sunxi_usb_phy_vbus_detect(int index)
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +0100234{
Hans de Goede86979092015-04-27 14:54:47 +0200235 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede444af392015-03-27 21:46:00 +0100236 int err, retries = 3;
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +0100237
Hans de Goede78c2e642015-06-18 18:21:33 +0200238 if (phy->gpio_vbus_det < 0)
Hans de Goede86979092015-04-27 14:54:47 +0200239 return phy->gpio_vbus_det;
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +0100240
Hans de Goede86979092015-04-27 14:54:47 +0200241 err = gpio_get_value(phy->gpio_vbus_det);
Hans de Goede444af392015-03-27 21:46:00 +0100242 /*
243 * Vbus may have been provided by the board and just been turned of
244 * some milliseconds ago on reset, what we're measuring then is a
245 * residual charge on Vbus, sleep a bit and try again.
246 */
247 while (err > 0 && retries--) {
248 mdelay(100);
Hans de Goede86979092015-04-27 14:54:47 +0200249 err = gpio_get_value(phy->gpio_vbus_det);
Hans de Goede444af392015-03-27 21:46:00 +0100250 }
251
252 return err;
Paul Kocialkowski7e9b7de2015-03-22 18:07:12 +0100253}
Hans de Goede1168e092015-04-27 16:50:04 +0200254
Hans de Goedeaadd97f2015-06-14 17:29:53 +0200255int sunxi_usb_phy_id_detect(int index)
256{
257 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
258
259 if (phy->gpio_id_det < 0)
260 return phy->gpio_id_det;
261
262 return gpio_get_value(phy->gpio_id_det);
263}
264
Hans de Goede1168e092015-04-27 16:50:04 +0200265int sunxi_usb_phy_probe(void)
266{
267 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
268 struct sunxi_usb_phy *phy;
269 int i, ret = 0;
270
271 for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
272 phy = &sunxi_usb_phy[i];
273
274 phy->gpio_vbus = get_vbus_gpio(i);
275 if (phy->gpio_vbus >= 0) {
276 ret = gpio_request(phy->gpio_vbus, "usb_vbus");
277 if (ret)
278 return ret;
279 ret = gpio_direction_output(phy->gpio_vbus, 0);
280 if (ret)
281 return ret;
282 }
283
284 phy->gpio_vbus_det = get_vbus_detect_gpio(i);
285 if (phy->gpio_vbus_det >= 0) {
286 ret = gpio_request(phy->gpio_vbus_det, "usb_vbus_det");
287 if (ret)
288 return ret;
289 ret = gpio_direction_input(phy->gpio_vbus_det);
290 if (ret)
291 return ret;
292 }
Hans de Goedeaadd97f2015-06-14 17:29:53 +0200293
294 phy->gpio_id_det = get_id_detect_gpio(i);
295 if (phy->gpio_id_det >= 0) {
296 ret = gpio_request(phy->gpio_id_det, "usb_id_det");
297 if (ret)
298 return ret;
299 ret = gpio_direction_input(phy->gpio_id_det);
300 if (ret)
301 return ret;
302 sunxi_gpio_set_pull(phy->gpio_id_det,
303 SUNXI_GPIO_PULL_UP);
304 }
Hans de Goede1168e092015-04-27 16:50:04 +0200305 }
306
307 setbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
308
309 return 0;
310}
311
312int sunxi_usb_phy_remove(void)
313{
314 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
315 struct sunxi_usb_phy *phy;
316 int i;
317
318 clrbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
319
320 for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
321 phy = &sunxi_usb_phy[i];
322
323 if (phy->gpio_vbus >= 0)
324 gpio_free(phy->gpio_vbus);
325
326 if (phy->gpio_vbus_det >= 0)
327 gpio_free(phy->gpio_vbus_det);
Hans de Goedeaadd97f2015-06-14 17:29:53 +0200328
329 if (phy->gpio_id_det >= 0)
330 gpio_free(phy->gpio_id_det);
Hans de Goede1168e092015-04-27 16:50:04 +0200331 }
332
333 return 0;
334}