]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/sunxi/usb_phy.c
sunxi: usb: Protect phy-init and phy-power-on against multiple calls
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / sunxi / usb_phy.c
1 /*
2  * Sunxi usb-phy code
3  *
4  * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
5  * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
6  *
7  * Based on code from
8  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
9  *
10  * SPDX-License-Identifier:     GPL-2.0+
11  */
12
13 #include <common.h>
14 #include <asm/arch/clock.h>
15 #include <asm/arch/cpu.h>
16 #include <asm/arch/usb_phy.h>
17 #include <asm/gpio.h>
18 #include <asm/io.h>
19 #include <errno.h>
20 #ifdef CONFIG_AXP152_POWER
21 #include <axp152.h>
22 #endif
23 #ifdef CONFIG_AXP209_POWER
24 #include <axp209.h>
25 #endif
26 #ifdef CONFIG_AXP221_POWER
27 #include <axp221.h>
28 #endif
29
30 #define SUNXI_USB_PMU_IRQ_ENABLE        0x800
31 #ifdef CONFIG_MACH_SUN8I_A33
32 #define SUNXI_USB_CSR                   0x410
33 #else
34 #define SUNXI_USB_CSR                   0x404
35 #endif
36 #define SUNXI_USB_PASSBY_EN             1
37
38 #define SUNXI_EHCI_AHB_ICHR8_EN         (1 << 10)
39 #define SUNXI_EHCI_AHB_INCR4_BURST_EN   (1 << 9)
40 #define SUNXI_EHCI_AHB_INCRX_ALIGN_EN   (1 << 8)
41 #define SUNXI_EHCI_ULPI_BYPASS_EN       (1 << 0)
42
43 static struct sunxi_usb_phy {
44         int usb_rst_mask;
45         int gpio_vbus;
46         int gpio_vbus_det;
47         int id;
48         int init_count;
49         int power_on_count;
50 } sunxi_usb_phy[] = {
51         {
52                 .usb_rst_mask = CCM_USB_CTRL_PHY0_RST | CCM_USB_CTRL_PHY0_CLK,
53                 .id = 0,
54         },
55         {
56                 .usb_rst_mask = CCM_USB_CTRL_PHY1_RST | CCM_USB_CTRL_PHY1_CLK,
57                 .id = 1,
58         },
59 #if CONFIG_SUNXI_USB_PHYS >= 3
60         {
61                 .usb_rst_mask = CCM_USB_CTRL_PHY2_RST | CCM_USB_CTRL_PHY2_CLK,
62                 .id = 2,
63         }
64 #endif
65 };
66
67 static int get_vbus_gpio(int index)
68 {
69         switch (index) {
70         case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_PIN);
71         case 1: return sunxi_name_to_gpio(CONFIG_USB1_VBUS_PIN);
72         case 2: return sunxi_name_to_gpio(CONFIG_USB2_VBUS_PIN);
73         }
74         return -EINVAL;
75 }
76
77 static int get_vbus_detect_gpio(int index)
78 {
79         switch (index) {
80         case 0: return sunxi_name_to_gpio(CONFIG_USB0_VBUS_DET);
81         }
82         return -EINVAL;
83 }
84
85 static void usb_phy_write(struct sunxi_usb_phy *phy, int addr,
86                           int data, int len)
87 {
88         int j = 0, usbc_bit = 0;
89         void *dest = (void *)SUNXI_USB0_BASE + SUNXI_USB_CSR;
90
91 #ifdef CONFIG_MACH_SUN8I_A33
92         /* CSR needs to be explicitly initialized to 0 on A33 */
93         writel(0, dest);
94 #endif
95
96         usbc_bit = 1 << (phy->id * 2);
97         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
117 static void sunxi_usb_phy_config(struct sunxi_usb_phy *phy)
118 {
119         /* The following comments are machine
120          * translated from Chinese, you have been warned!
121          */
122
123         /* Regulation 45 ohms */
124         if (phy->id == 0)
125                 usb_phy_write(phy, 0x0c, 0x01, 1);
126
127         /* adjust PHY's magnitude and rate */
128         usb_phy_write(phy, 0x20, 0x14, 5);
129
130         /* threshold adjustment disconnect */
131 #if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN6I
132         usb_phy_write(phy, 0x2a, 3, 2);
133 #else
134         usb_phy_write(phy, 0x2a, 2, 2);
135 #endif
136
137         return;
138 }
139
140 static void sunxi_usb_phy_passby(int index, int enable)
141 {
142         unsigned long bits = 0;
143         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;
149
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
163 void sunxi_usb_phy_enable_squelch_detect(int index, int enable)
164 {
165         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
166
167         usb_phy_write(phy, 0x3c, enable ? 0 : 2, 2);
168 }
169
170 void sunxi_usb_phy_init(int index)
171 {
172         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
173         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
174
175         phy->init_count++;
176         if (phy->init_count != 1)
177                 return;
178
179         setbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
180
181         sunxi_usb_phy_config(phy);
182
183         if (phy->id != 0)
184                 sunxi_usb_phy_passby(index, SUNXI_USB_PASSBY_EN);
185 }
186
187 void sunxi_usb_phy_exit(int index)
188 {
189         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
190         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
191
192         phy->init_count--;
193         if (phy->init_count != 0)
194                 return;
195
196         if (phy->id != 0)
197                 sunxi_usb_phy_passby(index, !SUNXI_USB_PASSBY_EN);
198
199         clrbits_le32(&ccm->usb_clk_cfg, phy->usb_rst_mask);
200 }
201
202 void sunxi_usb_phy_power_on(int index)
203 {
204         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
205
206         phy->power_on_count++;
207         if (phy->power_on_count != 1)
208                 return;
209
210         if (phy->gpio_vbus >= 0)
211                 gpio_set_value(phy->gpio_vbus, 1);
212 }
213
214 void sunxi_usb_phy_power_off(int index)
215 {
216         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
217
218         phy->power_on_count--;
219         if (phy->power_on_count != 0)
220                 return;
221
222         if (phy->gpio_vbus >= 0)
223                 gpio_set_value(phy->gpio_vbus, 0);
224 }
225
226 int sunxi_usb_phy_vbus_detect(int index)
227 {
228         struct sunxi_usb_phy *phy = &sunxi_usb_phy[index];
229         int err, retries = 3;
230
231         if (phy->gpio_vbus_det < 0) {
232                 eprintf("Error: invalid vbus detection pin\n");
233                 return phy->gpio_vbus_det;
234         }
235
236         err = gpio_get_value(phy->gpio_vbus_det);
237         /*
238          * Vbus may have been provided by the board and just been turned of
239          * some milliseconds ago on reset, what we're measuring then is a
240          * residual charge on Vbus, sleep a bit and try again.
241          */
242         while (err > 0 && retries--) {
243                 mdelay(100);
244                 err = gpio_get_value(phy->gpio_vbus_det);
245         }
246
247         return err;
248 }
249
250 int sunxi_usb_phy_probe(void)
251 {
252         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
253         struct sunxi_usb_phy *phy;
254         int i, ret = 0;
255
256         for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
257                 phy = &sunxi_usb_phy[i];
258
259                 phy->gpio_vbus = get_vbus_gpio(i);
260                 if (phy->gpio_vbus >= 0) {
261                         ret = gpio_request(phy->gpio_vbus, "usb_vbus");
262                         if (ret)
263                                 return ret;
264                         ret = gpio_direction_output(phy->gpio_vbus, 0);
265                         if (ret)
266                                 return ret;
267                 }
268
269                 phy->gpio_vbus_det = get_vbus_detect_gpio(i);
270                 if (phy->gpio_vbus_det >= 0) {
271                         ret = gpio_request(phy->gpio_vbus_det, "usb_vbus_det");
272                         if (ret)
273                                 return ret;
274                         ret = gpio_direction_input(phy->gpio_vbus_det);
275                         if (ret)
276                                 return ret;
277                 }
278         }
279
280         setbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
281
282         return 0;
283 }
284
285 int sunxi_usb_phy_remove(void)
286 {
287         struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
288         struct sunxi_usb_phy *phy;
289         int i;
290
291         clrbits_le32(&ccm->usb_clk_cfg, CCM_USB_CTRL_PHYGATE);
292
293         for (i = 0; i < CONFIG_SUNXI_USB_PHYS; i++) {
294                 phy = &sunxi_usb_phy[i];
295
296                 if (phy->gpio_vbus >= 0)
297                         gpio_free(phy->gpio_vbus);
298
299                 if (phy->gpio_vbus_det >= 0)
300                         gpio_free(phy->gpio_vbus_det);
301         }
302
303         return 0;
304 }