usb: rk312x: fix wrong clk name
[firefly-linux-kernel-4.4.55.git] / drivers / usb / dwc_otg_310 / usbdev_rk3126.c
1 #include "usbdev_rk.h"
2 #include "usbdev_grf_regs.h"
3 #include "dwc_otg_regs.h"
4 static struct dwc_otg_control_usb *control_usb;
5
6 #ifdef CONFIG_USB20_OTG
7 static void usb20otg_hw_init(void)
8 {
9         /* Turn off differential receiver in suspend mode */
10         writel(UOC_HIWORD_UPDATE(0, 1, 2),
11                    RK_GRF_VIRT + RK312X_GRF_USBPHY0_CON6);
12         /* Set disconnect detection trigger point to 600mv */
13         writel(UOC_HIWORD_UPDATE(1, 0xf, 11),
14                    RK_GRF_VIRT + RK312X_GRF_USBPHY0_CON7);
15         /* other haredware init,include:
16          * DRV_VBUS GPIO init */
17         if (gpio_is_valid(control_usb->otg_gpios->gpio)) {
18                 if (gpio_get_value(control_usb->otg_gpios->gpio))
19                         gpio_set_value(control_usb->otg_gpios->gpio, 0);
20         }
21 }
22
23 static void usb20otg_phy_suspend(void *pdata, int suspend)
24 {
25         struct dwc_otg_platform_data *usbpdata = pdata;
26         if (suspend) {
27                 /* enable soft control */
28                 writel(UOC_HIWORD_UPDATE(0x55, 0x7f, 0),
29                        RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
30                 usbpdata->phy_status = 1;
31         } else {
32                 /* exit suspend */
33                 writel(UOC_HIWORD_UPDATE(0x0, 0x1, 0),
34                        RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
35                 usbpdata->phy_status = 0;
36         }
37 }
38
39 static void usb20otg_soft_reset(void *pdata, enum rkusb_rst_flag rst_type)
40 {
41         struct dwc_otg_platform_data *usbpdata = pdata;
42         struct reset_control *rst_otg_h, *rst_otg_p, *rst_otg_c;
43
44         rst_otg_h = devm_reset_control_get(usbpdata->dev, "otg_ahb");
45         rst_otg_p = devm_reset_control_get(usbpdata->dev, "otg_phy");
46         rst_otg_c = devm_reset_control_get(usbpdata->dev, "otg_controller");
47         if (IS_ERR(rst_otg_h) || IS_ERR(rst_otg_p) || IS_ERR(rst_otg_c)) {
48                 dev_err(usbpdata->dev, "Fail to get reset control from dts\n");
49                 return;
50         }
51
52         switch(rst_type) {
53         case RST_POR:
54                 /* PHY reset */
55                 writel(UOC_HIWORD_UPDATE(0x1, 0x3, 0),
56                            RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
57                 reset_control_assert(rst_otg_p);
58                 udelay(15);
59                 writel(UOC_HIWORD_UPDATE(0x2, 0x3, 0),
60                            RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
61                 udelay(1500);
62                 reset_control_deassert(rst_otg_p);
63                 udelay(2);
64
65                 /* Controller reset */
66                 reset_control_assert(rst_otg_c);
67                 reset_control_assert(rst_otg_h);
68
69                 udelay(2);
70
71                 reset_control_deassert(rst_otg_c);
72                 reset_control_deassert(rst_otg_h);
73                 break;
74
75         default:
76                 break;
77         }
78 }
79
80 static void usb20otg_clock_init(void *pdata)
81 {
82         struct dwc_otg_platform_data *usbpdata = pdata;
83         struct clk *ahbclk, *phyclk;
84
85         ahbclk = devm_clk_get(usbpdata->dev, "hclk_usb0");
86         if (IS_ERR(ahbclk)) {
87                 dev_err(usbpdata->dev, "Failed to get hclk_usb0\n");
88                 return;
89         }
90
91         phyclk = devm_clk_get(usbpdata->dev, "clk_usbphy0");
92         if (IS_ERR(phyclk)) {
93                 dev_err(usbpdata->dev, "Failed to get clk_usbphy0\n");
94                 return;
95         }
96
97         usbpdata->phyclk = phyclk;
98         usbpdata->ahbclk = ahbclk;
99 }
100
101 static void usb20otg_clock_enable(void *pdata, int enable)
102 {
103         struct dwc_otg_platform_data *usbpdata = pdata;
104
105         if (enable) {
106                 clk_prepare_enable(usbpdata->ahbclk);
107                 clk_prepare_enable(usbpdata->phyclk);
108         } else {
109                 clk_disable_unprepare(usbpdata->ahbclk);
110                 /*
111                    clk_disable_unprepare(usbpdata->phyclk);
112                  */
113         }
114 }
115
116 static int usb20otg_get_status(int id)
117 {
118         int ret = -1;
119         u32 soc_status0 = readl(RK_GRF_VIRT + RK312X_GRF_SOC_STATUS0);
120         switch (id) {
121         case USB_STATUS_BVABLID:
122                 /* bvalid in grf */
123                 ret = soc_status0 & (0x1 << 5);
124                 break;
125         case USB_STATUS_DPDM:
126                 /* dpdm in grf */
127                 ret = soc_status0 & (0x3 << 6);
128                 break;
129         case USB_STATUS_ID:
130                 /* id in grf */
131                 ret = soc_status0 & (0x1 << 8);
132                 break;
133         case USB_STATUS_UARTMODE:
134                 ret = readl(RK_GRF_VIRT + RK312X_GRF_UOC1_CON4) & (1 << 12);
135                 break;
136         case USB_CHIP_ID:
137                 ret = control_usb->chip_id;
138                 break;
139         case USB_REMOTE_WAKEUP:
140                 ret = control_usb->remote_wakeup;
141                 break;
142         case USB_IRQ_WAKEUP:
143                 ret = control_usb->usb_irq_wakeup;
144                 break;
145         default:
146                 break;
147         }
148         return ret;
149 }
150
151 #ifdef CONFIG_RK_USB_UART
152 /**
153  *  dwc_otg_uart_enabled - check if a usb-uart bypass func is enabled in DT
154  *
155  *  Returns true if the status property of node "usb_uart" is set to "okay"
156  *  or "ok", if this property is absent it will use the default status "ok"
157  *  0 otherwise
158  */
159 static bool dwc_otg_uart_enabled(void)
160 {
161         struct device_node *np;
162
163         np = of_find_node_by_name(NULL, "usb_uart");
164         if (np && of_device_is_available(np))
165                 return true;
166
167         return false;
168 }
169
170 static void dwc_otg_uart_mode(void *pdata, int enter_usb_uart_mode)
171 {
172         if ((1 == enter_usb_uart_mode) && dwc_otg_uart_enabled()) {
173                 /* bypass dm, enter uart mode */
174                 writel(UOC_HIWORD_UPDATE(0x3, 0x3, 12), RK_GRF_VIRT +
175                            RK312X_GRF_UOC1_CON4);
176
177         } else if (0 == enter_usb_uart_mode) {
178                 /* enter usb mode */
179                 writel(UOC_HIWORD_UPDATE(0x0, 0x3, 12), RK_GRF_VIRT + 
180                            RK312X_GRF_UOC1_CON4);
181         }
182 }
183 #else
184 static void dwc_otg_uart_mode(void *pdata, int enter_usb_uart_mode)
185 {
186 }
187 #endif
188
189 static void usb20otg_power_enable(int enable)
190 {
191         if (0 == enable) {
192                 /* disable otg_drv power */
193                 if (gpio_is_valid(control_usb->otg_gpios->gpio))
194                         gpio_set_value(control_usb->otg_gpios->gpio, 0);
195         } else if (1 == enable) {
196                 /* enable otg_drv power */
197                 if (gpio_is_valid(control_usb->otg_gpios->gpio))
198                         gpio_set_value(control_usb->otg_gpios->gpio, 1);
199         }
200 }
201
202 struct dwc_otg_platform_data usb20otg_pdata_rk3126 = {
203         .phyclk = NULL,
204         .ahbclk = NULL,
205         .busclk = NULL,
206         .phy_status = 0,
207         .hw_init = usb20otg_hw_init,
208         .phy_suspend = usb20otg_phy_suspend,
209         .soft_reset = usb20otg_soft_reset,
210         .clock_init = usb20otg_clock_init,
211         .clock_enable = usb20otg_clock_enable,
212         .get_status = usb20otg_get_status,
213         .power_enable = usb20otg_power_enable,
214         .dwc_otg_uart_mode = dwc_otg_uart_mode,
215         .bc_detect_cb = rk_battery_charger_detect_cb,
216 };
217 #endif
218
219 #if defined(CONFIG_USB20_HOST) || defined(CONFIG_USB_EHCI_RK)
220 static void usb20host_hw_init(void)
221 {
222         /* Turn off differential receiver in suspend mode */
223         writel(UOC_HIWORD_UPDATE(0, 1, 2),
224                    RK_GRF_VIRT + RK312X_GRF_USBPHY1_CON6);
225         /* Set disconnect detection trigger point to 600mv */
226         writel(UOC_HIWORD_UPDATE(1, 0xf, 11),
227                    RK_GRF_VIRT + RK312X_GRF_USBPHY1_CON7);
228         /* other haredware init,include:
229          * DRV_VBUS GPIO init */
230         if (gpio_is_valid(control_usb->host_gpios->gpio)) {
231                 if (!gpio_get_value(control_usb->host_gpios->gpio))
232                         gpio_set_value(control_usb->host_gpios->gpio, 1);
233         }
234 }
235
236 static void usb20host_phy_suspend(void *pdata, int suspend)
237 {
238         struct dwc_otg_platform_data *usbpdata = pdata;
239
240         if (suspend) {
241                 /* enable soft control */
242                 writel(UOC_HIWORD_UPDATE(0x1d5, 0x1ff, 0),
243                        RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
244                 usbpdata->phy_status = 1;
245         } else {
246                 /* exit suspend */
247                 writel(UOC_HIWORD_UPDATE(0x0, 0x1, 0),
248                        RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
249                 usbpdata->phy_status = 0;
250         }
251 }
252
253 static void usb20host_soft_reset(void *pdata, enum rkusb_rst_flag rst_type)
254 {
255         struct dwc_otg_platform_data *usbpdata = pdata;
256         struct reset_control *rst_host_h, *rst_host_p, *rst_host_c;
257
258         rst_host_h = devm_reset_control_get(usbpdata->dev, "host_ahb");
259         rst_host_p = devm_reset_control_get(usbpdata->dev, "host_phy");
260         rst_host_c = devm_reset_control_get(usbpdata->dev, "host_controller");
261         if (IS_ERR(rst_host_h) || IS_ERR(rst_host_p) || IS_ERR(rst_host_c)) {
262                 dev_err(usbpdata->dev, "Fail to get reset control from dts\n");
263                 return;
264         }
265
266         switch(rst_type) {
267         case RST_POR:
268                 /* PHY reset */
269                 writel(UOC_HIWORD_UPDATE(0x1, 0x3, 0),
270                            RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
271                 reset_control_assert(rst_host_p);
272                 udelay(15);
273                 writel(UOC_HIWORD_UPDATE(0x2, 0x3, 0),
274                            RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
275
276                 udelay(1500);
277                 reset_control_deassert(rst_host_p);
278
279                 /* Controller reset */
280                 reset_control_assert(rst_host_c);
281                 reset_control_assert(rst_host_h);
282
283                 udelay(5);
284
285                 reset_control_deassert(rst_host_c);
286                 reset_control_deassert(rst_host_h);
287                 break;
288
289         default:
290                 break;
291         }
292 }
293
294 static void usb20host_clock_init(void *pdata)
295 {
296         struct dwc_otg_platform_data *usbpdata = pdata;
297         struct clk *ahbclk, *phyclk;
298
299         ahbclk = devm_clk_get(usbpdata->dev, "hclk_usb1");
300         if (IS_ERR(ahbclk)) {
301                 dev_err(usbpdata->dev, "Failed to get hclk_usb1\n");
302                 return;
303         }
304
305         phyclk = devm_clk_get(usbpdata->dev, "clk_usbphy1");
306         if (IS_ERR(phyclk)) {
307                 dev_err(usbpdata->dev, "Failed to get clk_usbphy1\n");
308                 return;
309         }
310
311         usbpdata->phyclk = phyclk;
312         usbpdata->ahbclk = ahbclk;
313 }
314
315 static void usb20host_clock_enable(void *pdata, int enable)
316 {
317         struct dwc_otg_platform_data *usbpdata = pdata;
318
319         if (enable) {
320                 clk_prepare_enable(usbpdata->ahbclk);
321                 clk_prepare_enable(usbpdata->phyclk);
322         } else {
323                 clk_disable_unprepare(usbpdata->ahbclk);
324                 clk_disable_unprepare(usbpdata->phyclk);
325         }
326 }
327
328 static int usb20host_get_status(int id)
329 {
330         int ret = -1;
331         u32 soc_status0 = readl(RK_GRF_VIRT + RK312X_GRF_SOC_STATUS0);
332
333         switch (id) {
334         case USB_STATUS_BVABLID:
335                 /* bvalid in grf */
336                 ret = soc_status0 & (0x1 << 10);
337                 break;
338         case USB_STATUS_DPDM:
339                 /* dpdm in grf */
340                 ret = soc_status0 & (0x3 << 11);
341                 break;
342         case USB_STATUS_ID:
343                 /* id in grf */
344                 ret = 0;
345                 break;
346         case USB_CHIP_ID:
347                 ret = control_usb->chip_id;
348                 break;
349         case USB_REMOTE_WAKEUP:
350                 ret = control_usb->remote_wakeup;
351                 break;
352         case USB_IRQ_WAKEUP:
353                 ret = control_usb->usb_irq_wakeup;
354                 break;
355         default:
356                 break;
357         }
358         return ret;
359 }
360
361 static void usb20host_power_enable(int enable)
362 {
363         if (0 == enable) {
364                 /* disable host_drv power */
365                 /* do not disable power in default */
366         } else if (1 == enable) {
367                 /* enable host_drv power */
368                 if (gpio_is_valid(control_usb->host_gpios->gpio))
369                         gpio_set_value(control_usb->host_gpios->gpio, 1);
370         }
371 }
372
373 struct dwc_otg_platform_data usb20host_pdata_rk3126 = {
374         .phyclk = NULL,
375         .ahbclk = NULL,
376         .busclk = NULL,
377         .phy_status = 0,
378         .hw_init = usb20host_hw_init,
379         .phy_suspend = usb20host_phy_suspend,
380         .soft_reset = usb20host_soft_reset,
381         .clock_init = usb20host_clock_init,
382         .clock_enable = usb20host_clock_enable,
383         .get_status = usb20host_get_status,
384         .power_enable = usb20host_power_enable,
385 };
386 #endif
387
388 #ifdef CONFIG_USB_EHCI_RK
389 static void usb20ehci_phy_suspend(void *pdata, int suspend)
390 {
391         struct rkehci_platform_data *usbpdata = pdata;
392
393         if (suspend) {
394                 /* enable soft control */
395                 writel(UOC_HIWORD_UPDATE(0x1d5, 0x1ff, 0),
396                        RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
397                 usbpdata->phy_status = 1;
398         } else {
399                 /* exit suspend */
400                 writel(UOC_HIWORD_UPDATE(0x0, 0x1, 0),
401                        RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
402                 usbpdata->phy_status = 0;
403         }
404 }
405
406 static void usb20ehci_soft_reset(void *pdata, enum rkusb_rst_flag rst_type)
407 {
408         struct rkehci_platform_data *usbpdata = pdata;
409         struct reset_control *rst_host_h, *rst_host_p, *rst_host_c;
410
411         rst_host_h = devm_reset_control_get(usbpdata->dev, "host_ahb");
412         rst_host_p = devm_reset_control_get(usbpdata->dev, "host_phy");
413         rst_host_c = devm_reset_control_get(usbpdata->dev, "host_controller");
414         if (IS_ERR(rst_host_h) || IS_ERR(rst_host_p) || IS_ERR(rst_host_c)) {
415                 dev_err(usbpdata->dev, "Fail to get reset control from dts\n");
416                 return;
417         }
418
419         switch(rst_type) {
420         case RST_POR:
421                 /* PHY reset */
422                 writel(UOC_HIWORD_UPDATE(0x1, 0x3, 0),
423                            RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
424                 reset_control_assert(rst_host_p);
425                 udelay(15);
426                 writel(UOC_HIWORD_UPDATE(0x2, 0x3, 0),
427                            RK_GRF_VIRT + RK312X_GRF_UOC1_CON5);
428
429                 udelay(1500);
430                 reset_control_deassert(rst_host_p);
431
432                 /* Controller reset */
433                 reset_control_assert(rst_host_c);
434                 reset_control_assert(rst_host_h);
435
436                 udelay(5);
437
438                 reset_control_deassert(rst_host_c);
439                 reset_control_deassert(rst_host_h);
440                 break;
441
442         default:
443                 break;
444         }
445 }
446
447 static void usb20ehci_clock_init(void *pdata)
448 {
449         struct rkehci_platform_data *usbpdata = pdata;
450         struct clk *ahbclk, *phyclk;
451
452         ahbclk = devm_clk_get(usbpdata->dev, "hclk_host0");
453         if (IS_ERR(ahbclk)) {
454                 dev_err(usbpdata->dev, "Failed to get hclk_usb1\n");
455                 return;
456         }
457
458         phyclk = devm_clk_get(usbpdata->dev, "clk_usbphy1");
459         if (IS_ERR(phyclk)) {
460                 dev_err(usbpdata->dev, "Failed to get clk_usbphy1\n");
461                 return;
462         }
463
464         usbpdata->phyclk = phyclk;
465         usbpdata->ahbclk = ahbclk;
466 }
467
468 static void usb20ehci_clock_enable(void *pdata, int enable)
469 {
470         struct rkehci_platform_data *usbpdata = pdata;
471
472         if (enable) {
473                 clk_prepare_enable(usbpdata->ahbclk);
474                 clk_prepare_enable(usbpdata->phyclk);
475         } else {
476                 clk_disable_unprepare(usbpdata->ahbclk);
477                 clk_disable_unprepare(usbpdata->phyclk);
478         }
479 }
480
481 struct rkehci_platform_data usb20ehci_pdata_rk3126 = {
482         .phyclk = NULL,
483         .ahbclk = NULL,
484         .phy_status = 0,
485         .hw_init = usb20host_hw_init,
486         .phy_suspend = usb20ehci_phy_suspend,
487         .soft_reset = usb20ehci_soft_reset,
488         .clock_init = usb20ehci_clock_init,
489         .clock_enable = usb20ehci_clock_enable,
490         .get_status = usb20host_get_status,
491 };
492 #endif
493
494 struct dwc_otg_platform_data usb20ohci_pdata_rk3126;
495
496 #ifdef CONFIG_OF
497 static const struct of_device_id rk_usb_control_id_table[] = {
498         {
499          .compatible = "rockchip,rk3126-usb-control",
500          },
501         {},
502 };
503 #endif
504 /*********************************************************************
505                         rk3126 usb detections
506 *********************************************************************/
507
508 #define WAKE_LOCK_TIMEOUT (HZ * 10)
509 static inline void do_wakeup(struct work_struct *work)
510 {
511         /* wake up the system */
512         rk_send_wakeup_key();
513 }
514
515 static void usb_battery_charger_detect_work(struct work_struct *work)
516 {
517         rk_battery_charger_detect_cb(usb_battery_charger_detect(1));
518 }
519
520 /********** handler for bvalid irq **********/
521 static irqreturn_t bvalid_irq_handler(int irq, void *dev_id)
522 {
523         /* clear irq */
524         writel(UOC_HIWORD_UPDATE(0x1, 0x1, 15),
525                RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
526 #ifdef CONFIG_RK_USB_UART
527         /* usb otg dp/dm switch to usb phy */
528         dwc_otg_uart_mode(NULL, PHY_USB_MODE);
529 #endif
530
531         if (control_usb->usb_irq_wakeup) {
532                 wake_lock_timeout(&control_usb->usb_wakelock,
533                                   WAKE_LOCK_TIMEOUT);
534                 schedule_delayed_work(&control_usb->usb_det_wakeup_work,
535                                       HZ / 10);
536         }
537
538         schedule_delayed_work(&control_usb->usb_charger_det_work, HZ / 10);
539
540         return IRQ_HANDLED;
541 }
542
543 /************* register usb detection irqs **************/
544 static int otg_irq_detect_init(struct platform_device *pdev)
545 {
546         int ret = 0;
547         int irq = 0;
548
549         if (control_usb->usb_irq_wakeup) {
550                 wake_lock_init(&control_usb->usb_wakelock, WAKE_LOCK_SUSPEND,
551                                "usb_detect");
552                 INIT_DELAYED_WORK(&control_usb->usb_det_wakeup_work, do_wakeup);
553         }
554
555         /*register otg_bvalid irq */
556         irq = platform_get_irq_byname(pdev, "otg_bvalid");
557         if ((irq > 0) && control_usb->usb_irq_wakeup) {
558                 ret = request_irq(irq, bvalid_irq_handler,
559                                   0, "otg_bvalid", NULL);
560                 if (ret < 0) {
561                         dev_err(&pdev->dev, "request_irq %d failed!\n", irq);
562                 } else {
563                         /* enable bvalid irq  */
564                         writel(UOC_HIWORD_UPDATE(0x1, 0x1, 14),
565                                RK_GRF_VIRT + RK312X_GRF_UOC0_CON0);
566                 }
567         }
568         return ret;
569 }
570
571 /********** end of rk3126 usb detections **********/
572 static int rk_usb_control_probe(struct platform_device *pdev)
573 {
574         int gpio, err;
575         struct device_node *np = pdev->dev.of_node;
576         int ret = 0;
577
578         control_usb =
579             devm_kzalloc(&pdev->dev, sizeof(*control_usb), GFP_KERNEL);
580         if (!control_usb) {
581                 dev_err(&pdev->dev, "unable to alloc memory for control usb\n");
582                 ret = -ENOMEM;
583                 goto out;
584         }
585
586         control_usb->chip_id = RK3126_USB_CTLR;
587         control_usb->remote_wakeup = of_property_read_bool(np,
588                                                            "rockchip,remote_wakeup");
589         control_usb->usb_irq_wakeup = of_property_read_bool(np,
590                                                             "rockchip,usb_irq_wakeup");
591
592         INIT_DELAYED_WORK(&control_usb->usb_charger_det_work,
593                           usb_battery_charger_detect_work);
594
595         control_usb->host_gpios =
596             devm_kzalloc(&pdev->dev, sizeof(struct gpio), GFP_KERNEL);
597         if (!control_usb->host_gpios) {
598                 dev_err(&pdev->dev, "unable to alloc memory for host_gpios\n");
599                 ret = -ENOMEM;
600                 goto out;
601         }
602
603         gpio = of_get_named_gpio(np, "host_drv_gpio", 0);
604         control_usb->host_gpios->gpio = gpio;
605
606         if (!gpio_is_valid(gpio)) {
607                 dev_err(&pdev->dev, "invalid host gpio%d\n", gpio);
608         } else {
609                 err = devm_gpio_request(&pdev->dev, gpio, "host_drv_gpio");
610                 if (err) {
611                         dev_err(&pdev->dev,
612                                 "failed to request GPIO%d for host_drv\n",
613                                 gpio);
614                         ret = err;
615                         goto out;
616                 }
617                 gpio_direction_output(control_usb->host_gpios->gpio, 1);
618         }
619
620         control_usb->otg_gpios =
621             devm_kzalloc(&pdev->dev, sizeof(struct gpio), GFP_KERNEL);
622         if (!control_usb->otg_gpios) {
623                 dev_err(&pdev->dev, "unable to alloc memory for otg_gpios\n");
624                 ret = -ENOMEM;
625                 goto out;
626         }
627
628         gpio = of_get_named_gpio(np, "otg_drv_gpio", 0);
629         control_usb->otg_gpios->gpio = gpio;
630
631         if (!gpio_is_valid(gpio)) {
632                 dev_err(&pdev->dev, "invalid otg gpio%d\n", gpio);
633         } else {
634                 err = devm_gpio_request(&pdev->dev, gpio, "otg_drv_gpio");
635                 if (err) {
636                         dev_err(&pdev->dev,
637                                 "failed to request GPIO%d for otg_drv\n", gpio);
638                         ret = err;
639                         goto out;
640                 }
641                 gpio_direction_output(control_usb->otg_gpios->gpio, 0);
642         }
643
644 out:
645         return ret;
646 }
647
648 static int rk_usb_control_remove(struct platform_device *pdev)
649 {
650         return 0;
651 }
652
653 static struct platform_driver rk_usb_control_driver = {
654         .probe = rk_usb_control_probe,
655         .remove = rk_usb_control_remove,
656         .driver = {
657                    .name = "rk3126-usb-control",
658                    .owner = THIS_MODULE,
659                    .of_match_table = of_match_ptr(rk_usb_control_id_table),
660                    },
661 };
662
663 #ifdef CONFIG_OF
664
665 static const struct of_device_id dwc_otg_control_usb_id_table[] = {
666         {
667          .compatible = "rockchip,rk3126-dwc-control-usb",
668          },
669         {},
670 };
671
672 #endif
673 static int dwc_otg_control_usb_probe(struct platform_device *pdev)
674 {
675         struct clk *hclk_usb_peri;
676         int ret = 0;
677
678         if (!control_usb) {
679                 dev_err(&pdev->dev, "unable to alloc memory for control usb\n");
680                 ret = -ENOMEM;
681                 goto err1;
682         }
683
684         hclk_usb_peri = devm_clk_get(&pdev->dev, "hclk_usb_peri");
685         if (IS_ERR(hclk_usb_peri)) {
686                 dev_err(&pdev->dev, "Failed to get hclk_usb_peri\n");
687                 ret = -EINVAL;
688                 goto err1;
689         }
690
691         control_usb->hclk_usb_peri = hclk_usb_peri;
692         clk_prepare_enable(hclk_usb_peri);
693
694 #ifdef CONFIG_USB20_OTG
695         if (usb20otg_get_status(USB_STATUS_BVABLID))
696                 schedule_delayed_work(&control_usb->usb_charger_det_work,
697                                       HZ / 10);
698 #endif
699
700         ret = otg_irq_detect_init(pdev);
701         if (ret < 0)
702                 goto err2;
703
704         return 0;
705
706 err2:
707         clk_disable_unprepare(hclk_usb_peri);
708 err1:
709         return ret;
710 }
711
712 static int dwc_otg_control_usb_remove(struct platform_device *pdev)
713 {
714         clk_disable_unprepare(control_usb->hclk_usb_peri);
715         return 0;
716 }
717
718 static struct platform_driver dwc_otg_control_usb_driver = {
719         .probe = dwc_otg_control_usb_probe,
720         .remove = dwc_otg_control_usb_remove,
721         .driver = {
722                    .name = "rk3126-dwc-control-usb",
723                    .owner = THIS_MODULE,
724                    .of_match_table = of_match_ptr(dwc_otg_control_usb_id_table),
725                    },
726 };
727
728 static int __init dwc_otg_control_usb_init(void)
729 {
730         int retval = 0;
731
732         retval |= platform_driver_register(&rk_usb_control_driver);
733         retval |= platform_driver_register(&dwc_otg_control_usb_driver);
734         return retval;
735 }
736
737 subsys_initcall(dwc_otg_control_usb_init);
738
739 static void __exit dwc_otg_control_usb_exit(void)
740 {
741         platform_driver_unregister(&rk_usb_control_driver);
742         platform_driver_unregister(&dwc_otg_control_usb_driver);
743 }
744
745 module_exit(dwc_otg_control_usb_exit);
746 MODULE_ALIAS("platform: dwc_control_usb");
747 MODULE_AUTHOR("RockChip Inc.");
748 MODULE_DESCRIPTION("RockChip Control Module USB Driver");
749 MODULE_LICENSE("GPL v2");
750