blob: 318e225528d2fad832bcc446a7256cab1ddd402f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hans de Goede0eccec42015-01-07 15:08:43 +01002/*
Hans de Goede7b798652015-04-27 14:54:47 +02003 * Sunxi usb-phy code
Hans de Goede0eccec42015-01-07 15:08:43 +01004 *
Hans de Goede7b798652015-04-27 14:54:47 +02005 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
6 * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
Hans de Goede0eccec42015-01-07 15:08:43 +01007 *
8 * Based on code from
9 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
Hans de Goede0eccec42015-01-07 15:08:43 +010010 */
11
Hans de Goede375de012015-04-27 11:44:22 +020012#include <common.h>
Hans de Goede0eccec42015-01-07 15:08:43 +010013#include <asm/arch/clock.h>
14#include <asm/arch/cpu.h>
Hans de Goede2aacc422015-04-27 15:05:10 +020015#include <asm/arch/usb_phy.h>
Hans de Goede0eccec42015-01-07 15:08:43 +010016#include <asm/gpio.h>
17#include <asm/io.h>
Hans de Goedea7254262015-04-22 17:39:59 +020018#include <errno.h>
Hans de Goede0eccec42015-01-07 15:08:43 +010019
Maxime Ripard9f356882017-08-23 13:31:08 +020020#if defined(CONFIG_MACH_SUN4I) || \
21 defined(CONFIG_MACH_SUN5I) || \
22 defined(CONFIG_MACH_SUN6I) || \
23 defined(CONFIG_MACH_SUN7I) || \
24 defined(CONFIG_MACH_SUN8I_A23) || \
25 defined(CONFIG_MACH_SUN9I)
Hans de Goede0eccec42015-01-07 15:08:43 +010026#define SUNXI_USB_CSR 0x404
Maxime Ripard9f356882017-08-23 13:31:08 +020027#else
28#define SUNXI_USB_CSR 0x410
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +053029#endif
Maxime Ripard9f356882017-08-23 13:31:08 +020030
31#define SUNXI_USB_PMU_IRQ_ENABLE 0x800
Hans de Goede0eccec42015-01-07 15:08:43 +010032#define SUNXI_USB_PASSBY_EN 1
33
34#define SUNXI_EHCI_AHB_ICHR8_EN (1 << 10)
35#define SUNXI_EHCI_AHB_INCR4_BURST_EN (1 << 9)
36#define SUNXI_EHCI_AHB_INCRX_ALIGN_EN (1 << 8)
37#define SUNXI_EHCI_ULPI_BYPASS_EN (1 << 0)
38
Jelle van der Waadc44fd82016-02-09 23:59:33 +010039#define REG_PHY_UNK_H3 0x420
40#define REG_PMU_UNK_H3 0x810
41
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +080042/* A83T specific control bits for PHY0 */
43#define SUNXI_PHY_CTL_VBUSVLDEXT BIT(5)
44#define SUNXI_PHY_CTL_SIDDQ BIT(3)
45
46/* A83T HSIC specific bits */
47#define SUNXI_EHCI_HS_FORCE BIT(20)
48#define SUNXI_EHCI_CONNECT_DET BIT(17)
49#define SUNXI_EHCI_CONNECT_INT BIT(16)
50#define SUNXI_EHCI_HSIC BIT(1)
51
Hans de Goede7b798652015-04-27 14:54:47 +020052static struct sunxi_usb_phy {
Hans de Goede0eccec42015-01-07 15:08:43 +010053 int usb_rst_mask;
Hans de Goede0eccec42015-01-07 15:08:43 +010054 int gpio_vbus;
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +010055 int gpio_vbus_det;
Hans de Goede48c06c92015-06-14 17:29:53 +020056 int gpio_id_det;
Hans de Goede0eccec42015-01-07 15:08:43 +010057 int id;
Hans de Goedefd01ae12015-04-27 16:57:54 +020058 int init_count;
59 int power_on_count;
Alexander Graf0ea5a042016-03-29 17:29:09 +020060 ulong base;
Hans de Goede7b798652015-04-27 14:54:47 +020061} sunxi_usb_phy[] = {
Hans de Goede0eccec42015-01-07 15:08:43 +010062 {
Hans de Goede4458b7a2015-01-07 15:26:06 +010063 .usb_rst_mask = CCM_USB_CTRL_PHY0_RST | CCM_USB_CTRL_PHY0_CLK,
Hans de Goede4458b7a2015-01-07 15:26:06 +010064 .id = 0,
Jelle van der Waadc44fd82016-02-09 23:59:33 +010065 .base = SUNXI_USB0_BASE,
Hans de Goede4458b7a2015-01-07 15:26:06 +010066 },
67 {
Hans de Goede0eccec42015-01-07 15:08:43 +010068 .usb_rst_mask = CCM_USB_CTRL_PHY1_RST | CCM_USB_CTRL_PHY1_CLK,
Hans de Goede0eccec42015-01-07 15:08:43 +010069 .id = 1,
Jelle van der Waadc44fd82016-02-09 23:59:33 +010070 .base = SUNXI_USB1_BASE,
Hans de Goede0eccec42015-01-07 15:08:43 +010071 },
Hans de Goedee13afee2015-04-27 16:50:04 +020072#if CONFIG_SUNXI_USB_PHYS >= 3
Hans de Goede0eccec42015-01-07 15:08:43 +010073 {
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +080074#ifdef CONFIG_MACH_SUN8I_A83T
75 .usb_rst_mask = CCM_USB_CTRL_HSIC_RST | CCM_USB_CTRL_HSIC_CLK |
76 CCM_USB_CTRL_12M_CLK,
77#else
Hans de Goede0eccec42015-01-07 15:08:43 +010078 .usb_rst_mask = CCM_USB_CTRL_PHY2_RST | CCM_USB_CTRL_PHY2_CLK,
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +080079#endif
Hans de Goede0eccec42015-01-07 15:08:43 +010080 .id = 2,
Jelle van der Waadc44fd82016-02-09 23:59:33 +010081 .base = SUNXI_USB2_BASE,
82 },
83#endif
84#if CONFIG_SUNXI_USB_PHYS >= 4
85 {
86 .usb_rst_mask = CCM_USB_CTRL_PHY3_RST | CCM_USB_CTRL_PHY3_CLK,
87 .id = 3,
88 .base = SUNXI_USB3_BASE,
Hans de Goede0eccec42015-01-07 15:08:43 +010089 }
90#endif
91};
92
Hans de Goede2c3c3ec2016-04-01 22:39:26 +020093static int initial_usb_scan_delay = CONFIG_INITIAL_USB_SCAN_DELAY;
94
Hans de Goede0eccec42015-01-07 15:08:43 +010095static int get_vbus_gpio(int index)
96{
97 switch (index) {
Hans de Goede4458b7a2015-01-07 15:26:06 +010098 case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_PIN);
Hans de Goede0eccec42015-01-07 15:08:43 +010099 case 1: return sunxi_name_to_gpio(CONFIG_USB1_VBUS_PIN);
100 case 2: return sunxi_name_to_gpio(CONFIG_USB2_VBUS_PIN);
Hans de Goede60fa6302016-03-18 08:42:01 +0100101 case 3: return sunxi_name_to_gpio(CONFIG_USB3_VBUS_PIN);
Hans de Goede0eccec42015-01-07 15:08:43 +0100102 }
Hans de Goedea7254262015-04-22 17:39:59 +0200103 return -EINVAL;
Hans de Goede0eccec42015-01-07 15:08:43 +0100104}
105
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100106static int get_vbus_detect_gpio(int index)
107{
108 switch (index) {
109 case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_DET);
110 }
Hans de Goedea7254262015-04-22 17:39:59 +0200111 return -EINVAL;
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100112}
113
Hans de Goede48c06c92015-06-14 17:29:53 +0200114static int get_id_detect_gpio(int index)
115{
116 switch (index) {
117 case 0: return sunxi_name_to_gpio(CONFIG_USB0_ID_DET);
118 }
119 return -EINVAL;
120}
121
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800122__maybe_unused static void usb_phy_write(struct sunxi_usb_phy *phy, int addr,
123 int data, int len)
Hans de Goede0eccec42015-01-07 15:08:43 +0100124{
125 int j = 0, usbc_bit = 0;
Hans de Goedea781c972015-04-27 14:36:23 +0200126 void *dest = (void *)SUNXI_USB0_BASE + SUNXI_USB_CSR;
Hans de Goede0eccec42015-01-07 15:08:43 +0100127
Vishnu Patekar8c3dacf2015-03-01 23:47:48 +0530128#ifdef CONFIG_MACH_SUN8I_A33
129 /* CSR needs to be explicitly initialized to 0 on A33 */
130 writel(0, dest);
131#endif
132
Hans de Goede7b798652015-04-27 14:54:47 +0200133 usbc_bit = 1 << (phy->id * 2);
Hans de Goede0eccec42015-01-07 15:08:43 +0100134 for (j = 0; j < len; j++) {
135 /* set the bit address to be written */
136 clrbits_le32(dest, 0xff << 8);
137 setbits_le32(dest, (addr + j) << 8);
138
139 clrbits_le32(dest, usbc_bit);
140 /* set data bit */
141 if (data & 0x1)
142 setbits_le32(dest, 1 << 7);
143 else
144 clrbits_le32(dest, 1 << 7);
145
146 setbits_le32(dest, usbc_bit);
147
148 clrbits_le32(dest, usbc_bit);
149
150 data >>= 1;
151 }
152}
153
Andre Przywara7b82a222017-02-16 01:20:27 +0000154#if defined(CONFIG_MACH_SUNXI_H3_H5) || defined(CONFIG_MACH_SUN50I)
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100155static void sunxi_usb_phy_config(struct sunxi_usb_phy *phy)
156{
Andre Przywara7b82a222017-02-16 01:20:27 +0000157#if defined CONFIG_MACH_SUNXI_H3_H5
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100158 if (phy->id == 0)
159 clrbits_le32(SUNXI_USBPHY_BASE + REG_PHY_UNK_H3, 0x01);
Amit Singh Tomar9d6c9d92016-10-21 02:24:30 +0100160#endif
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100161 clrbits_le32(phy->base + REG_PMU_UNK_H3, 0x02);
162}
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800163#elif defined CONFIG_MACH_SUN8I_A83T
164static void sunxi_usb_phy_config(struct sunxi_usb_phy *phy)
165{
166}
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100167#else
Hans de Goede7b798652015-04-27 14:54:47 +0200168static void sunxi_usb_phy_config(struct sunxi_usb_phy *phy)
Hans de Goede0eccec42015-01-07 15:08:43 +0100169{
170 /* The following comments are machine
171 * translated from Chinese, you have been warned!
172 */
173
Hans de Goede4458b7a2015-01-07 15:26:06 +0100174 /* Regulation 45 ohms */
Hans de Goede7b798652015-04-27 14:54:47 +0200175 if (phy->id == 0)
176 usb_phy_write(phy, 0x0c, 0x01, 1);
Hans de Goede4458b7a2015-01-07 15:26:06 +0100177
Hans de Goede0eccec42015-01-07 15:08:43 +0100178 /* adjust PHY's magnitude and rate */
Hans de Goede7b798652015-04-27 14:54:47 +0200179 usb_phy_write(phy, 0x20, 0x14, 5);
Hans de Goede0eccec42015-01-07 15:08:43 +0100180
181 /* threshold adjustment disconnect */
Hans de Goede7afebb52015-05-31 19:26:54 +0200182#if defined CONFIG_MACH_SUN5I || defined CONFIG_MACH_SUN7I
Hans de Goede7b798652015-04-27 14:54:47 +0200183 usb_phy_write(phy, 0x2a, 2, 2);
Hans de Goede7afebb52015-05-31 19:26:54 +0200184#else
185 usb_phy_write(phy, 0x2a, 3, 2);
Hans de Goede0eccec42015-01-07 15:08:43 +0100186#endif
187
188 return;
189}
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100190#endif
Hans de Goede0eccec42015-01-07 15:08:43 +0100191
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100192static void sunxi_usb_phy_passby(struct sunxi_usb_phy *phy, int enable)
Hans de Goede0eccec42015-01-07 15:08:43 +0100193{
194 unsigned long bits = 0;
Hans de Goedea781c972015-04-27 14:36:23 +0200195 void *addr;
196
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100197 addr = (void *)phy->base + SUNXI_USB_PMU_IRQ_ENABLE;
Hans de Goede0eccec42015-01-07 15:08:43 +0100198
199 bits = SUNXI_EHCI_AHB_ICHR8_EN |
200 SUNXI_EHCI_AHB_INCR4_BURST_EN |
201 SUNXI_EHCI_AHB_INCRX_ALIGN_EN |
202 SUNXI_EHCI_ULPI_BYPASS_EN;
203
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800204#ifdef CONFIG_MACH_SUN8I_A83T
205 if (phy->id == 2)
206 bits |= SUNXI_EHCI_HS_FORCE |
207 SUNXI_EHCI_CONNECT_INT |
208 SUNXI_EHCI_HSIC;
209#endif
210
Hans de Goede0eccec42015-01-07 15:08:43 +0100211 if (enable)
212 setbits_le32(addr, bits);
213 else
214 clrbits_le32(addr, bits);
215
216 return;
217}
218
Hans de Goede7b798652015-04-27 14:54:47 +0200219void sunxi_usb_phy_enable_squelch_detect(int index, int enable)
Hans de Goede246e3b82015-03-27 20:54:25 +0100220{
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800221#ifndef CONFIG_MACH_SUN8I_A83T
Hans de Goede7b798652015-04-27 14:54:47 +0200222 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede246e3b82015-03-27 20:54:25 +0100223
Hans de Goede7b798652015-04-27 14:54:47 +0200224 usb_phy_write(phy, 0x3c, enable ? 0 : 2, 2);
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800225#endif
Hans de Goede246e3b82015-03-27 20:54:25 +0100226}
227
Hans de Goede7b798652015-04-27 14:54:47 +0200228void sunxi_usb_phy_init(int index)
Hans de Goede0eccec42015-01-07 15:08:43 +0100229{
Hans de Goede7b798652015-04-27 14:54:47 +0200230 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede0eccec42015-01-07 15:08:43 +0100231 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
232
Hans de Goedefd01ae12015-04-27 16:57:54 +0200233 phy->init_count++;
234 if (phy->init_count != 1)
235 return;
236
Hans de Goede7b798652015-04-27 14:54:47 +0200237 setbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
Hans de Goede0eccec42015-01-07 15:08:43 +0100238
Hans de Goede7b798652015-04-27 14:54:47 +0200239 sunxi_usb_phy_config(phy);
Hans de Goede0eccec42015-01-07 15:08:43 +0100240
Hans de Goede7b798652015-04-27 14:54:47 +0200241 if (phy->id != 0)
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100242 sunxi_usb_phy_passby(phy, SUNXI_USB_PASSBY_EN);
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800243
244#ifdef CONFIG_MACH_SUN8I_A83T
245 if (phy->id == 0) {
246 setbits_le32(SUNXI_USB0_BASE + SUNXI_USB_CSR,
247 SUNXI_PHY_CTL_VBUSVLDEXT);
248 clrbits_le32(SUNXI_USB0_BASE + SUNXI_USB_CSR,
249 SUNXI_PHY_CTL_SIDDQ);
250 }
251#endif
Hans de Goede0eccec42015-01-07 15:08:43 +0100252}
253
Hans de Goede7b798652015-04-27 14:54:47 +0200254void sunxi_usb_phy_exit(int index)
Hans de Goede0eccec42015-01-07 15:08:43 +0100255{
Hans de Goede7b798652015-04-27 14:54:47 +0200256 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede0eccec42015-01-07 15:08:43 +0100257 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
258
Hans de Goedefd01ae12015-04-27 16:57:54 +0200259 phy->init_count--;
260 if (phy->init_count != 0)
261 return;
262
Hans de Goede7b798652015-04-27 14:54:47 +0200263 if (phy->id != 0)
Jelle van der Waadc44fd82016-02-09 23:59:33 +0100264 sunxi_usb_phy_passby(phy, !SUNXI_USB_PASSBY_EN);
Hans de Goede0eccec42015-01-07 15:08:43 +0100265
Chen-Yu Tsai0c935ac2016-03-30 00:26:51 +0800266#ifdef CONFIG_MACH_SUN8I_A83T
267 if (phy->id == 0) {
268 setbits_le32(SUNXI_USB0_BASE + SUNXI_USB_CSR,
269 SUNXI_PHY_CTL_SIDDQ);
270 }
271#endif
272
Hans de Goede7b798652015-04-27 14:54:47 +0200273 clrbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
Hans de Goede0eccec42015-01-07 15:08:43 +0100274}
275
Hans de Goede7b798652015-04-27 14:54:47 +0200276void sunxi_usb_phy_power_on(int index)
Hans de Goede0eccec42015-01-07 15:08:43 +0100277{
Hans de Goede7b798652015-04-27 14:54:47 +0200278 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede0eccec42015-01-07 15:08:43 +0100279
Hans de Goede2c3c3ec2016-04-01 22:39:26 +0200280 if (initial_usb_scan_delay) {
281 mdelay(initial_usb_scan_delay);
282 initial_usb_scan_delay = 0;
283 }
284
Hans de Goedefd01ae12015-04-27 16:57:54 +0200285 phy->power_on_count++;
286 if (phy->power_on_count != 1)
287 return;
288
Hans de Goede7b798652015-04-27 14:54:47 +0200289 if (phy->gpio_vbus >= 0)
290 gpio_set_value(phy->gpio_vbus, 1);
Hans de Goede0eccec42015-01-07 15:08:43 +0100291}
292
Hans de Goede7b798652015-04-27 14:54:47 +0200293void sunxi_usb_phy_power_off(int index)
Hans de Goede0eccec42015-01-07 15:08:43 +0100294{
Hans de Goede7b798652015-04-27 14:54:47 +0200295 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goede0eccec42015-01-07 15:08:43 +0100296
Hans de Goedefd01ae12015-04-27 16:57:54 +0200297 phy->power_on_count--;
298 if (phy->power_on_count != 0)
299 return;
300
Hans de Goede7b798652015-04-27 14:54:47 +0200301 if (phy->gpio_vbus >= 0)
302 gpio_set_value(phy->gpio_vbus, 0);
Hans de Goede0eccec42015-01-07 15:08:43 +0100303}
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100304
Hans de Goede7b798652015-04-27 14:54:47 +0200305int sunxi_usb_phy_vbus_detect(int index)
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100306{
Hans de Goede7b798652015-04-27 14:54:47 +0200307 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
Hans de Goedea0e2b1b2015-03-27 21:46:00 +0100308 int err, retries = 3;
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100309
Hans de Goede9ecce972015-06-18 18:21:33 +0200310 if (phy->gpio_vbus_det < 0)
Hans de Goede7b798652015-04-27 14:54:47 +0200311 return phy->gpio_vbus_det;
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100312
Hans de Goede7b798652015-04-27 14:54:47 +0200313 err = gpio_get_value(phy->gpio_vbus_det);
Hans de Goedea0e2b1b2015-03-27 21:46:00 +0100314 /*
315 * Vbus may have been provided by the board and just been turned of
316 * some milliseconds ago on reset, what we're measuring then is a
317 * residual charge on Vbus, sleep a bit and try again.
318 */
319 while (err > 0 && retries--) {
320 mdelay(100);
Hans de Goede7b798652015-04-27 14:54:47 +0200321 err = gpio_get_value(phy->gpio_vbus_det);
Hans de Goedea0e2b1b2015-03-27 21:46:00 +0100322 }
323
324 return err;
Paul Kocialkowskiebd468b2015-03-22 18:07:12 +0100325}
Hans de Goedee13afee2015-04-27 16:50:04 +0200326
Hans de Goede48c06c92015-06-14 17:29:53 +0200327int sunxi_usb_phy_id_detect(int index)
328{
329 struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
330
331 if (phy->gpio_id_det < 0)
332 return phy->gpio_id_det;
333
334 return gpio_get_value(phy->gpio_id_det);
335}
336
Hans de Goedee13afee2015-04-27 16:50:04 +0200337int sunxi_usb_phy_probe(void)
338{
339 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
340 struct sunxi_usb_phy *phy;
341 int i, ret = 0;
342
343 for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
344 phy = &sunxi_usb_phy[i];
345
346 phy->gpio_vbus = get_vbus_gpio(i);
347 if (phy->gpio_vbus >= 0) {
348 ret = gpio_request(phy->gpio_vbus, "usb_vbus");
349 if (ret)
350 return ret;
351 ret = gpio_direction_output(phy->gpio_vbus, 0);
352 if (ret)
353 return ret;
354 }
355
356 phy->gpio_vbus_det = get_vbus_detect_gpio(i);
357 if (phy->gpio_vbus_det >= 0) {
358 ret = gpio_request(phy->gpio_vbus_det, "usb_vbus_det");
359 if (ret)
360 return ret;
361 ret = gpio_direction_input(phy->gpio_vbus_det);
362 if (ret)
363 return ret;
364 }
Hans de Goede48c06c92015-06-14 17:29:53 +0200365
366 phy->gpio_id_det = get_id_detect_gpio(i);
367 if (phy->gpio_id_det >= 0) {
368 ret = gpio_request(phy->gpio_id_det, "usb_id_det");
369 if (ret)
370 return ret;
371 ret = gpio_direction_input(phy->gpio_id_det);
372 if (ret)
373 return ret;
374 sunxi_gpio_set_pull(phy->gpio_id_det,
375 SUNXI_GPIO_PULL_UP);
376 }
Hans de Goedee13afee2015-04-27 16:50:04 +0200377 }
378
379 setbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
380
381 return 0;
382}
383
384int sunxi_usb_phy_remove(void)
385{
386 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
387 struct sunxi_usb_phy *phy;
388 int i;
389
390 clrbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
391
392 for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
393 phy = &sunxi_usb_phy[i];
394
395 if (phy->gpio_vbus >= 0)
396 gpio_free(phy->gpio_vbus);
397
398 if (phy->gpio_vbus_det >= 0)
399 gpio_free(phy->gpio_vbus_det);
Hans de Goede48c06c92015-06-14 17:29:53 +0200400
401 if (phy->gpio_id_det >= 0)
402 gpio_free(phy->gpio_id_det);
Hans de Goedee13afee2015-04-27 16:50:04 +0200403 }
404
405 return 0;
406}