usb: dwc2: Fix dr_mode validation
[deliverable/linux.git] / drivers / usb / dwc2 / platform.c
CommitLineData
5b9974b1
MK
1/*
2 * platform.c - DesignWare HS OTG Controller platform driver
3 *
4 * Copyright (C) Matthijs Kooijman <matthijs@stdin.nl>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The names of the above-listed copyright holders may not be used
16 * to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * ALTERNATIVELY, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") as published by the Free Software
21 * Foundation; either version 2 of the License, or (at your option) any
22 * later version.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include <linux/kernel.h>
38#include <linux/module.h>
39#include <linux/slab.h>
09a75e85 40#include <linux/clk.h>
5b9974b1
MK
41#include <linux/device.h>
42#include <linux/dma-mapping.h>
831eae69 43#include <linux/of_device.h>
7ad8096e 44#include <linux/mutex.h>
5b9974b1 45#include <linux/platform_device.h>
09a75e85
MS
46#include <linux/phy/phy.h>
47#include <linux/platform_data/s3c-hsotg.h>
5b9974b1 48
c0155b9d
KY
49#include <linux/usb/of.h>
50
5b9974b1
MK
51#include "core.h"
52#include "hcd.h"
f91eea44 53#include "debug.h"
5b9974b1
MK
54
55static const char dwc2_driver_name[] = "dwc2";
56
37dd9d65
ZG
57static const struct dwc2_core_params params_hi6220 = {
58 .otg_cap = 2, /* No HNP/SRP capable */
59 .otg_ver = 0, /* 1.3 */
60 .dma_enable = 1,
61 .dma_desc_enable = 0,
62 .dma_desc_fs_enable = 0,
63 .speed = 0, /* High Speed */
64 .enable_dynamic_fifo = 1,
65 .en_multiple_tx_fifo = 1,
66 .host_rx_fifo_size = 512,
67 .host_nperio_tx_fifo_size = 512,
68 .host_perio_tx_fifo_size = 512,
69 .max_transfer_size = 65535,
70 .max_packet_count = 511,
71 .host_channels = 16,
72 .phy_type = 1, /* UTMI */
73 .phy_utmi_width = 8,
74 .phy_ulpi_ddr = 0, /* Single */
75 .phy_ulpi_ext_vbus = 0,
76 .i2c_enable = 0,
77 .ulpi_fs_ls = 0,
78 .host_support_fs_ls_low_power = 0,
79 .host_ls_low_power_phy_clk = 0, /* 48 MHz */
80 .ts_dline = 0,
81 .reload_ctl = 0,
82 .ahbcfg = GAHBCFG_HBSTLEN_INCR16 <<
83 GAHBCFG_HBSTLEN_SHIFT,
84 .uframe_sched = 0,
85 .external_id_pin_ctl = -1,
86 .hibernation = -1,
87};
88
831eae69
SW
89static const struct dwc2_core_params params_bcm2835 = {
90 .otg_cap = 0, /* HNP/SRP capable */
91 .otg_ver = 0, /* 1.3 */
92 .dma_enable = 1,
93 .dma_desc_enable = 0,
fbb9e22b 94 .dma_desc_fs_enable = 0,
831eae69
SW
95 .speed = 0, /* High Speed */
96 .enable_dynamic_fifo = 1,
97 .en_multiple_tx_fifo = 1,
98 .host_rx_fifo_size = 774, /* 774 DWORDs */
99 .host_nperio_tx_fifo_size = 256, /* 256 DWORDs */
100 .host_perio_tx_fifo_size = 512, /* 512 DWORDs */
101 .max_transfer_size = 65535,
102 .max_packet_count = 511,
103 .host_channels = 8,
104 .phy_type = 1, /* UTMI */
105 .phy_utmi_width = 8, /* 8 bits */
106 .phy_ulpi_ddr = 0, /* Single */
107 .phy_ulpi_ext_vbus = 0,
108 .i2c_enable = 0,
109 .ulpi_fs_ls = 0,
110 .host_support_fs_ls_low_power = 0,
111 .host_ls_low_power_phy_clk = 0, /* 48 MHz */
112 .ts_dline = 0,
113 .reload_ctl = 0,
114 .ahbcfg = 0x10,
58b179dc 115 .uframe_sched = 0,
a6d249d8 116 .external_id_pin_ctl = -1,
285046aa 117 .hibernation = -1,
831eae69
SW
118};
119
95083146
KY
120static const struct dwc2_core_params params_rk3066 = {
121 .otg_cap = 2, /* non-HNP/non-SRP */
122 .otg_ver = -1,
123 .dma_enable = -1,
124 .dma_desc_enable = 0,
fbb9e22b 125 .dma_desc_fs_enable = 0,
95083146
KY
126 .speed = -1,
127 .enable_dynamic_fifo = 1,
128 .en_multiple_tx_fifo = -1,
129 .host_rx_fifo_size = 520, /* 520 DWORDs */
130 .host_nperio_tx_fifo_size = 128, /* 128 DWORDs */
131 .host_perio_tx_fifo_size = 256, /* 256 DWORDs */
132 .max_transfer_size = 65535,
133 .max_packet_count = -1,
134 .host_channels = -1,
135 .phy_type = -1,
136 .phy_utmi_width = -1,
137 .phy_ulpi_ddr = -1,
138 .phy_ulpi_ext_vbus = -1,
139 .i2c_enable = -1,
140 .ulpi_fs_ls = -1,
141 .host_support_fs_ls_low_power = -1,
142 .host_ls_low_power_phy_clk = -1,
143 .ts_dline = -1,
144 .reload_ctl = -1,
f1659303
DA
145 .ahbcfg = GAHBCFG_HBSTLEN_INCR16 <<
146 GAHBCFG_HBSTLEN_SHIFT,
95083146 147 .uframe_sched = -1,
a6d249d8 148 .external_id_pin_ctl = -1,
285046aa 149 .hibernation = -1,
95083146
KY
150};
151
5268ed9d
JY
152/*
153 * Check the dr_mode against the module configuration and hardware
154 * capabilities.
155 *
156 * The hardware, module, and dr_mode, can each be set to host, device,
157 * or otg. Check that all these values are compatible and adjust the
158 * value of dr_mode if possible.
159 *
160 * actual
161 * HW MOD dr_mode dr_mode
162 * ------------------------------
163 * HST HST any : HST
164 * HST DEV any : ---
165 * HST OTG any : HST
166 *
167 * DEV HST any : ---
168 * DEV DEV any : DEV
169 * DEV OTG any : DEV
170 *
171 * OTG HST any : HST
172 * OTG DEV any : DEV
173 * OTG OTG any : dr_mode
174 */
175static int dwc2_get_dr_mode(struct dwc2_hsotg *hsotg)
176{
177 enum usb_dr_mode mode;
178
179 hsotg->dr_mode = usb_get_dr_mode(hsotg->dev);
180 if (hsotg->dr_mode == USB_DR_MODE_UNKNOWN)
181 hsotg->dr_mode = USB_DR_MODE_OTG;
182
183 mode = hsotg->dr_mode;
184
185 if (dwc2_hw_is_device(hsotg)) {
186 if (IS_ENABLED(CONFIG_USB_DWC2_HOST)) {
187 dev_err(hsotg->dev,
188 "Controller does not support host mode.\n");
189 return -EINVAL;
190 }
191 mode = USB_DR_MODE_PERIPHERAL;
192 } else if (dwc2_hw_is_host(hsotg)) {
193 if (IS_ENABLED(CONFIG_USB_DWC2_PERIPHERAL)) {
194 dev_err(hsotg->dev,
195 "Controller does not support device mode.\n");
196 return -EINVAL;
197 }
198 mode = USB_DR_MODE_HOST;
199 } else {
200 if (IS_ENABLED(CONFIG_USB_DWC2_HOST))
201 mode = USB_DR_MODE_HOST;
202 else if (IS_ENABLED(CONFIG_USB_DWC2_PERIPHERAL))
203 mode = USB_DR_MODE_PERIPHERAL;
204 }
205
206 if (mode != hsotg->dr_mode) {
207 dev_warn(hsotg->dev,
208 "Configuration mismatch. dr_mode forced to %s\n",
209 mode == USB_DR_MODE_HOST ? "host" : "device");
210
211 hsotg->dr_mode = mode;
212 }
213
214 return 0;
215}
216
09a75e85
MS
217static int __dwc2_lowlevel_hw_enable(struct dwc2_hsotg *hsotg)
218{
219 struct platform_device *pdev = to_platform_device(hsotg->dev);
220 int ret;
221
222 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
223 hsotg->supplies);
224 if (ret)
225 return ret;
226
8aa90cf2
SW
227 if (hsotg->clk) {
228 ret = clk_prepare_enable(hsotg->clk);
229 if (ret)
230 return ret;
231 }
09a75e85
MS
232
233 if (hsotg->uphy)
234 ret = usb_phy_init(hsotg->uphy);
235 else if (hsotg->plat && hsotg->plat->phy_init)
236 ret = hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
237 else {
238 ret = phy_power_on(hsotg->phy);
239 if (ret == 0)
240 ret = phy_init(hsotg->phy);
241 }
242
243 return ret;
244}
245
246/**
247 * dwc2_lowlevel_hw_enable - enable platform lowlevel hw resources
248 * @hsotg: The driver state
249 *
250 * A wrapper for platform code responsible for controlling
251 * low-level USB platform resources (phy, clock, regulators)
252 */
253int dwc2_lowlevel_hw_enable(struct dwc2_hsotg *hsotg)
254{
255 int ret = __dwc2_lowlevel_hw_enable(hsotg);
256
257 if (ret == 0)
258 hsotg->ll_hw_enabled = true;
259 return ret;
260}
261
262static int __dwc2_lowlevel_hw_disable(struct dwc2_hsotg *hsotg)
263{
264 struct platform_device *pdev = to_platform_device(hsotg->dev);
265 int ret = 0;
266
267 if (hsotg->uphy)
268 usb_phy_shutdown(hsotg->uphy);
269 else if (hsotg->plat && hsotg->plat->phy_exit)
270 ret = hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
271 else {
272 ret = phy_exit(hsotg->phy);
273 if (ret == 0)
274 ret = phy_power_off(hsotg->phy);
275 }
276 if (ret)
277 return ret;
278
8aa90cf2
SW
279 if (hsotg->clk)
280 clk_disable_unprepare(hsotg->clk);
09a75e85
MS
281
282 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
283 hsotg->supplies);
284
285 return ret;
286}
287
288/**
289 * dwc2_lowlevel_hw_disable - disable platform lowlevel hw resources
290 * @hsotg: The driver state
291 *
292 * A wrapper for platform code responsible for controlling
293 * low-level USB platform resources (phy, clock, regulators)
294 */
295int dwc2_lowlevel_hw_disable(struct dwc2_hsotg *hsotg)
296{
297 int ret = __dwc2_lowlevel_hw_disable(hsotg);
298
299 if (ret == 0)
300 hsotg->ll_hw_enabled = false;
301 return ret;
302}
303
304static int dwc2_lowlevel_hw_init(struct dwc2_hsotg *hsotg)
305{
306 int i, ret;
307
308 /* Set default UTMI width */
309 hsotg->phyif = GUSBCFG_PHYIF16;
310
311 /*
312 * Attempt to find a generic PHY, then look for an old style
313 * USB PHY and then fall back to pdata
314 */
315 hsotg->phy = devm_phy_get(hsotg->dev, "usb2-phy");
316 if (IS_ERR(hsotg->phy)) {
6c2dad69
SW
317 ret = PTR_ERR(hsotg->phy);
318 switch (ret) {
319 case -ENODEV:
320 case -ENOSYS:
321 hsotg->phy = NULL;
322 break;
323 case -EPROBE_DEFER:
324 return ret;
325 default:
326 dev_err(hsotg->dev, "error getting phy %d\n", ret);
327 return ret;
328 }
329 }
330
331 if (!hsotg->phy) {
09a75e85 332 hsotg->uphy = devm_usb_get_phy(hsotg->dev, USB_PHY_TYPE_USB2);
6c2dad69
SW
333 if (IS_ERR(hsotg->uphy)) {
334 ret = PTR_ERR(hsotg->uphy);
335 switch (ret) {
336 case -ENODEV:
337 case -ENXIO:
338 hsotg->uphy = NULL;
339 break;
340 case -EPROBE_DEFER:
341 return ret;
342 default:
343 dev_err(hsotg->dev, "error getting usb phy %d\n",
344 ret);
345 return ret;
346 }
347 }
09a75e85
MS
348 }
349
6c2dad69
SW
350 hsotg->plat = dev_get_platdata(hsotg->dev);
351
09a75e85
MS
352 if (hsotg->phy) {
353 /*
354 * If using the generic PHY framework, check if the PHY bus
355 * width is 8-bit and set the phyif appropriately.
356 */
357 if (phy_get_bus_width(hsotg->phy) == 8)
358 hsotg->phyif = GUSBCFG_PHYIF8;
359 }
360
09a75e85
MS
361 /* Clock */
362 hsotg->clk = devm_clk_get(hsotg->dev, "otg");
363 if (IS_ERR(hsotg->clk)) {
364 hsotg->clk = NULL;
365 dev_dbg(hsotg->dev, "cannot get otg clock\n");
366 }
367
368 /* Regulators */
369 for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
370 hsotg->supplies[i].supply = dwc2_hsotg_supply_names[i];
371
372 ret = devm_regulator_bulk_get(hsotg->dev, ARRAY_SIZE(hsotg->supplies),
373 hsotg->supplies);
374 if (ret) {
375 dev_err(hsotg->dev, "failed to request supplies: %d\n", ret);
376 return ret;
377 }
378 return 0;
379}
380
5b9974b1
MK
381/**
382 * dwc2_driver_remove() - Called when the DWC_otg core is unregistered with the
383 * DWC_otg driver
384 *
385 * @dev: Platform device
386 *
387 * This routine is called, for example, when the rmmod command is executed. The
388 * device may or may not be electrically present. If it is present, the driver
389 * stops device processing. Any resources used on behalf of this device are
390 * freed.
391 */
392static int dwc2_driver_remove(struct platform_device *dev)
393{
394 struct dwc2_hsotg *hsotg = platform_get_drvdata(dev);
395
f91eea44 396 dwc2_debugfs_exit(hsotg);
e39af88f
MS
397 if (hsotg->hcd_enabled)
398 dwc2_hcd_remove(hsotg);
399 if (hsotg->gadget_enabled)
1f91b4cc 400 dwc2_hsotg_remove(hsotg);
5b9974b1 401
09a75e85
MS
402 if (hsotg->ll_hw_enabled)
403 dwc2_lowlevel_hw_disable(hsotg);
404
5b9974b1
MK
405 return 0;
406}
407
831eae69
SW
408static const struct of_device_id dwc2_of_match_table[] = {
409 { .compatible = "brcm,bcm2835-usb", .data = &params_bcm2835 },
37dd9d65 410 { .compatible = "hisilicon,hi6220-usb", .data = &params_hi6220 },
95083146 411 { .compatible = "rockchip,rk3066-usb", .data = &params_rk3066 },
831eae69 412 { .compatible = "snps,dwc2", .data = NULL },
117777b2 413 { .compatible = "samsung,s3c6400-hsotg", .data = NULL},
831eae69
SW
414 {},
415};
416MODULE_DEVICE_TABLE(of, dwc2_of_match_table);
417
5b9974b1
MK
418/**
419 * dwc2_driver_probe() - Called when the DWC_otg core is bound to the DWC_otg
420 * driver
421 *
422 * @dev: Platform device
423 *
424 * This routine creates the driver components required to control the device
425 * (core, HCD, and PCD) and initializes the device. The driver components are
426 * stored in a dwc2_hsotg structure. A reference to the dwc2_hsotg is saved
427 * in the device private data. This allows the driver to access the dwc2_hsotg
428 * structure on subsequent calls to driver methods for this device.
429 */
430static int dwc2_driver_probe(struct platform_device *dev)
431{
831eae69
SW
432 const struct of_device_id *match;
433 const struct dwc2_core_params *params;
434 struct dwc2_core_params defparams;
5b9974b1
MK
435 struct dwc2_hsotg *hsotg;
436 struct resource *res;
437 int retval;
438 int irq;
5b9974b1 439
831eae69
SW
440 match = of_match_device(dwc2_of_match_table, &dev->dev);
441 if (match && match->data) {
442 params = match->data;
443 } else {
444 /* Default all params to autodetect */
445 dwc2_set_all_params(&defparams, -1);
446 params = &defparams;
8b3e233e
DN
447
448 /*
449 * Disable descriptor dma mode by default as the HW can support
450 * it, but does not support it for SPLIT transactions.
fbb9e22b 451 * Disable it for FS devices as well.
8b3e233e
DN
452 */
453 defparams.dma_desc_enable = 0;
fbb9e22b 454 defparams.dma_desc_fs_enable = 0;
831eae69 455 }
5b9974b1
MK
456
457 hsotg = devm_kzalloc(&dev->dev, sizeof(*hsotg), GFP_KERNEL);
458 if (!hsotg)
459 return -ENOMEM;
460
461 hsotg->dev = &dev->dev;
462
642f2ecc
MK
463 /*
464 * Use reasonable defaults so platforms don't have to provide these.
465 */
466 if (!dev->dev.dma_mask)
467 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
4cdbb4ff
RK
468 retval = dma_set_coherent_mask(&dev->dev, DMA_BIT_MASK(32));
469 if (retval)
470 return retval;
642f2ecc 471
5b9974b1 472 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
5b9974b1
MK
473 hsotg->regs = devm_ioremap_resource(&dev->dev, res);
474 if (IS_ERR(hsotg->regs))
475 return PTR_ERR(hsotg->regs);
476
477 dev_dbg(&dev->dev, "mapped PA %08lx to VA %p\n",
478 (unsigned long)res->start, hsotg->regs);
479
09a75e85 480 retval = dwc2_lowlevel_hw_init(hsotg);
ecb176c6
MYK
481 if (retval)
482 return retval;
483
09a75e85
MS
484 spin_lock_init(&hsotg->lock);
485
ecb176c6
MYK
486 hsotg->core_params = devm_kzalloc(&dev->dev,
487 sizeof(*hsotg->core_params), GFP_KERNEL);
488 if (!hsotg->core_params)
489 return -ENOMEM;
490
491 dwc2_set_all_params(hsotg->core_params, -1);
492
f74875dc
SW
493 irq = platform_get_irq(dev, 0);
494 if (irq < 0) {
495 dev_err(&dev->dev, "missing IRQ resource\n");
496 return irq;
497 }
498
499 dev_dbg(hsotg->dev, "registering common handler for irq%d\n",
500 irq);
501 retval = devm_request_irq(hsotg->dev, irq,
502 dwc2_handle_common_intr, IRQF_SHARED,
503 dev_name(hsotg->dev), hsotg);
504 if (retval)
505 return retval;
506
09a75e85
MS
507 retval = dwc2_lowlevel_hw_enable(hsotg);
508 if (retval)
509 return retval;
510
5268ed9d
JY
511 retval = dwc2_get_dr_mode(hsotg);
512 if (retval)
513 return retval;
514
cebfdbf3
YL
515 /*
516 * Reset before dwc2_get_hwparams() then it could get power-on real
517 * reset value form registers.
518 */
6d58f346 519 dwc2_core_reset_and_force_dr_mode(hsotg);
cebfdbf3 520
09a75e85
MS
521 /* Detect config values from hardware */
522 retval = dwc2_get_hwparams(hsotg);
523 if (retval)
524 goto error;
525
ecb176c6
MYK
526 /* Validate parameter values */
527 dwc2_set_parameters(hsotg, params);
528
e39af88f
MS
529 if (hsotg->dr_mode != USB_DR_MODE_HOST) {
530 retval = dwc2_gadget_init(hsotg, irq);
531 if (retval)
09a75e85 532 goto error;
e39af88f
MS
533 hsotg->gadget_enabled = 1;
534 }
535
536 if (hsotg->dr_mode != USB_DR_MODE_PERIPHERAL) {
ecb176c6 537 retval = dwc2_hcd_init(hsotg, irq);
e39af88f
MS
538 if (retval) {
539 if (hsotg->gadget_enabled)
1f91b4cc 540 dwc2_hsotg_remove(hsotg);
09a75e85 541 goto error;
e39af88f
MS
542 }
543 hsotg->hcd_enabled = 1;
544 }
5b9974b1
MK
545
546 platform_set_drvdata(dev, hsotg);
547
f91eea44
MYK
548 dwc2_debugfs_init(hsotg);
549
09a75e85
MS
550 /* Gadget code manages lowlevel hw on its own */
551 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
552 dwc2_lowlevel_hw_disable(hsotg);
553
554 return 0;
555
556error:
557 dwc2_lowlevel_hw_disable(hsotg);
5b9974b1
MK
558 return retval;
559}
560
da9f3289 561static int __maybe_unused dwc2_suspend(struct device *dev)
117777b2 562{
bcc06078 563 struct dwc2_hsotg *dwc2 = dev_get_drvdata(dev);
117777b2
DN
564 int ret = 0;
565
09a75e85
MS
566 if (dwc2_is_device_mode(dwc2))
567 dwc2_hsotg_suspend(dwc2);
568
569 if (dwc2->ll_hw_enabled)
570 ret = __dwc2_lowlevel_hw_disable(dwc2);
135b3c43 571
117777b2
DN
572 return ret;
573}
574
da9f3289 575static int __maybe_unused dwc2_resume(struct device *dev)
117777b2 576{
bcc06078 577 struct dwc2_hsotg *dwc2 = dev_get_drvdata(dev);
117777b2
DN
578 int ret = 0;
579
09a75e85
MS
580 if (dwc2->ll_hw_enabled) {
581 ret = __dwc2_lowlevel_hw_enable(dwc2);
582 if (ret)
583 return ret;
584 }
585
586 if (dwc2_is_device_mode(dwc2))
1f91b4cc 587 ret = dwc2_hsotg_resume(dwc2);
135b3c43 588
117777b2
DN
589 return ret;
590}
591
bcc06078
DN
592static const struct dev_pm_ops dwc2_dev_pm_ops = {
593 SET_SYSTEM_SLEEP_PM_OPS(dwc2_suspend, dwc2_resume)
594};
595
5b9974b1
MK
596static struct platform_driver dwc2_platform_driver = {
597 .driver = {
1c126bc6 598 .name = dwc2_driver_name,
5b9974b1 599 .of_match_table = dwc2_of_match_table,
bcc06078 600 .pm = &dwc2_dev_pm_ops,
5b9974b1
MK
601 },
602 .probe = dwc2_driver_probe,
603 .remove = dwc2_driver_remove,
604};
605
606module_platform_driver(dwc2_platform_driver);
607
608MODULE_DESCRIPTION("DESIGNWARE HS OTG Platform Glue");
609MODULE_AUTHOR("Matthijs Kooijman <matthijs@stdin.nl>");
610MODULE_LICENSE("Dual BSD/GPL");
This page took 0.212087 seconds and 5 git commands to generate.