blob: 895eb44a1a518686513146dbb61cb237732cf8bd [file] [log] [blame]
Kuninori Morimotof1407d52011-04-04 13:44:59 +09001/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/io.h>
18#include <linux/module.h>
19#include <linux/pm_runtime.h>
20#include <linux/slab.h>
21#include <linux/sysfs.h>
22#include "./common.h"
23
Kuninori Morimoto233f5192011-07-07 00:23:24 -070024/*
25 * image of renesas_usbhs
26 *
27 * ex) gadget case
28
29 * mod.c
30 * mod_gadget.c
31 * mod_host.c pipe.c fifo.c
32 *
33 * +-------+ +-----------+
34 * | pipe0 |------>| fifo pio |
35 * +------------+ +-------+ +-----------+
36 * | mod_gadget |=====> | pipe1 |--+
37 * +------------+ +-------+ | +-----------+
38 * | pipe2 | | +-| fifo dma0 |
39 * +------------+ +-------+ | | +-----------+
40 * | mod_host | | pipe3 |<-|--+
41 * +------------+ +-------+ | +-----------+
42 * | .... | +--->| fifo dma1 |
43 * | .... | +-----------+
44 */
45
46
Kuninori Morimotob002ff62011-04-28 16:41:20 +090047#define USBHSF_RUNTIME_PWCTRL (1 << 0)
48
49/* status */
50#define usbhsc_flags_init(p) do {(p)->flags = 0; } while (0)
51#define usbhsc_flags_set(p, b) ((p)->flags |= (b))
52#define usbhsc_flags_clr(p, b) ((p)->flags &= ~(b))
53#define usbhsc_flags_has(p, b) ((p)->flags & (b))
54
Kuninori Morimotof1407d52011-04-04 13:44:59 +090055/*
56 * platform call back
57 *
58 * renesas usb support platform callback function.
59 * Below macro call it.
60 * if platform doesn't have callback, it return 0 (no error)
61 */
62#define usbhs_platform_call(priv, func, args...)\
63 (!(priv) ? -ENODEV : \
64 !((priv)->pfunc->func) ? 0 : \
65 (priv)->pfunc->func(args))
66
67/*
68 * common functions
69 */
70u16 usbhs_read(struct usbhs_priv *priv, u32 reg)
71{
72 return ioread16(priv->base + reg);
73}
74
75void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data)
76{
77 iowrite16(data, priv->base + reg);
78}
79
80void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
81{
82 u16 val = usbhs_read(priv, reg);
83
84 val &= ~mask;
85 val |= data & mask;
86
87 usbhs_write(priv, reg, val);
88}
89
Kuninori Morimoto206dcc22011-04-28 16:40:54 +090090struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
91{
92 return dev_get_drvdata(&pdev->dev);
93}
94
Kuninori Morimotof1407d52011-04-04 13:44:59 +090095/*
96 * syscfg functions
97 */
98void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable)
99{
100 usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0);
101}
102
103void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable)
104{
105 usbhs_bset(priv, SYSCFG, HSE, enable ? HSE : 0);
106}
107
108void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable)
109{
110 usbhs_bset(priv, SYSCFG, USBE, enable ? USBE : 0);
111}
112
113void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable)
114{
115 u16 mask = DCFM | DRPD | DPRPU;
116 u16 val = DCFM | DRPD;
Kuninori Morimotof427eb62011-10-10 22:06:12 -0700117 int has_otg = usbhs_get_dparam(priv, has_otg);
118
119 if (has_otg)
120 usbhs_bset(priv, DVSTCTR, (EXTLP | PWEN), (EXTLP | PWEN));
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900121
122 /*
123 * if enable
124 *
125 * - select Host mode
126 * - D+ Line/D- Line Pull-down
127 */
128 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
129}
130
131void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable)
132{
133 u16 mask = DCFM | DRPD | DPRPU;
134 u16 val = DPRPU;
135
136 /*
137 * if enable
138 *
139 * - select Function mode
140 * - D+ Line Pull-up
141 */
142 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
143}
144
145/*
146 * frame functions
147 */
148int usbhs_frame_get_num(struct usbhs_priv *priv)
149{
150 return usbhs_read(priv, FRMNUM) & FRNM_MASK;
151}
152
153/*
Kuninori Morimotoef8bedb2011-10-10 22:02:33 -0700154 * usb request functions
155 */
156void usbhs_usbreq_get_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
157{
158 u16 val;
159
160 val = usbhs_read(priv, USBREQ);
161 req->bRequest = (val >> 8) & 0xFF;
162 req->bRequestType = (val >> 0) & 0xFF;
163
164 req->wValue = usbhs_read(priv, USBVAL);
165 req->wIndex = usbhs_read(priv, USBINDX);
166 req->wLength = usbhs_read(priv, USBLENG);
167}
168
169void usbhs_usbreq_set_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
170{
171 usbhs_write(priv, USBREQ, (req->bRequest << 8) | req->bRequestType);
172 usbhs_write(priv, USBVAL, req->wValue);
173 usbhs_write(priv, USBINDX, req->wIndex);
174 usbhs_write(priv, USBLENG, req->wLength);
175
176 usbhs_bset(priv, DCPCTR, SUREQ, SUREQ);
177}
178
179/*
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700180 * bus/vbus functions
181 */
182void usbhs_bus_send_sof_enable(struct usbhs_priv *priv)
183{
Kuninori Morimotoa9be4a42011-10-10 22:06:35 -0700184 u16 status = usbhs_read(priv, DVSTCTR) & (USBRST | UACT);
185
186 if (status != USBRST) {
187 struct device *dev = usbhs_priv_to_dev(priv);
188 dev_err(dev, "usbhs should be reset\n");
189 }
190
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700191 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), UACT);
192}
193
194void usbhs_bus_send_reset(struct usbhs_priv *priv)
195{
196 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), USBRST);
197}
198
Kuninori Morimoto75587f52011-10-10 22:01:51 -0700199int usbhs_bus_get_speed(struct usbhs_priv *priv)
200{
201 u16 dvstctr = usbhs_read(priv, DVSTCTR);
202
203 switch (RHST & dvstctr) {
204 case RHST_LOW_SPEED:
205 return USB_SPEED_LOW;
206 case RHST_FULL_SPEED:
207 return USB_SPEED_FULL;
208 case RHST_HIGH_SPEED:
209 return USB_SPEED_HIGH;
210 }
211
212 return USB_SPEED_UNKNOWN;
213}
214
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700215int usbhs_vbus_ctrl(struct usbhs_priv *priv, int enable)
216{
217 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
218
219 return usbhs_platform_call(priv, set_vbus, pdev, enable);
220}
221
222static void usbhsc_bus_init(struct usbhs_priv *priv)
223{
224 usbhs_write(priv, DVSTCTR, 0);
225
226 usbhs_vbus_ctrl(priv, 0);
227}
228
229/*
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900230 * local functions
231 */
Kuninori Morimoto11935de2011-10-10 22:01:28 -0700232static void usbhsc_set_buswait(struct usbhs_priv *priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900233{
234 int wait = usbhs_get_dparam(priv, buswait_bwait);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900235
Kuninori Morimoto11935de2011-10-10 22:01:28 -0700236 /* set bus wait if platform have */
237 if (wait)
238 usbhs_bset(priv, BUSWAIT, 0x000F, wait);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900239}
240
241/*
242 * platform default param
243 */
244static u32 usbhsc_default_pipe_type[] = {
245 USB_ENDPOINT_XFER_CONTROL,
246 USB_ENDPOINT_XFER_ISOC,
247 USB_ENDPOINT_XFER_ISOC,
248 USB_ENDPOINT_XFER_BULK,
249 USB_ENDPOINT_XFER_BULK,
250 USB_ENDPOINT_XFER_BULK,
251 USB_ENDPOINT_XFER_INT,
252 USB_ENDPOINT_XFER_INT,
253 USB_ENDPOINT_XFER_INT,
254 USB_ENDPOINT_XFER_INT,
255};
256
257/*
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900258 * power control
259 */
260static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable)
261{
262 struct device *dev = usbhs_priv_to_dev(priv);
263
264 if (enable) {
265 /* enable PM */
266 pm_runtime_get_sync(dev);
267
268 /* USB on */
269 usbhs_sys_clock_ctrl(priv, enable);
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900270 } else {
271 /* USB off */
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900272 usbhs_sys_clock_ctrl(priv, enable);
273
274 /* disable PM */
275 pm_runtime_put_sync(dev);
276 }
277}
278
279/*
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700280 * hotplug
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900281 */
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700282static void usbhsc_hotplug(struct usbhs_priv *priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900283{
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900284 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
285 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
286 int id;
287 int enable;
288 int ret;
289
290 /*
291 * get vbus status from platform
292 */
293 enable = usbhs_platform_call(priv, get_vbus, pdev);
294
295 /*
296 * get id from platform
297 */
298 id = usbhs_platform_call(priv, get_id, pdev);
299
300 if (enable && !mod) {
301 ret = usbhs_mod_change(priv, id);
302 if (ret < 0)
303 return;
304
305 dev_dbg(&pdev->dev, "%s enable\n", __func__);
306
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900307 /* power on */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900308 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
309 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900310
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700311 /* bus init */
312 usbhsc_set_buswait(priv);
313 usbhsc_bus_init(priv);
314
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900315 /* module start */
316 usbhs_mod_call(priv, start, priv);
317
318 } else if (!enable && mod) {
319 dev_dbg(&pdev->dev, "%s disable\n", __func__);
320
321 /* module stop */
322 usbhs_mod_call(priv, stop, priv);
323
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700324 /* bus init */
325 usbhsc_bus_init(priv);
326
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900327 /* power off */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900328 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
329 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900330
331 usbhs_mod_change(priv, -1);
332
333 /* reset phy for next connection */
334 usbhs_platform_call(priv, phy_reset, pdev);
335 }
336}
337
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700338/*
339 * notify hotplug
340 */
341static void usbhsc_notify_hotplug(struct work_struct *work)
342{
343 struct usbhs_priv *priv = container_of(work,
344 struct usbhs_priv,
345 notify_hotplug_work.work);
346 usbhsc_hotplug(priv);
347}
348
Kuninori Morimotobc573812011-04-28 16:41:14 +0900349int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900350{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900351 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotobc573812011-04-28 16:41:14 +0900352 int delay = usbhs_get_dparam(priv, detection_delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900353
354 /*
355 * This functions will be called in interrupt.
356 * To make sure safety context,
357 * use workqueue for usbhs_notify_hotplug
358 */
Kuninori Morimotobc573812011-04-28 16:41:14 +0900359 schedule_delayed_work(&priv->notify_hotplug_work, delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900360 return 0;
361}
362
363/*
364 * platform functions
365 */
366static int __devinit usbhs_probe(struct platform_device *pdev)
367{
368 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
369 struct renesas_usbhs_driver_callback *dfunc;
370 struct usbhs_priv *priv;
371 struct resource *res;
372 unsigned int irq;
373 int ret;
374
375 /* check platform information */
376 if (!info ||
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900377 !info->platform_callback.get_id) {
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900378 dev_err(&pdev->dev, "no platform information\n");
379 return -EINVAL;
380 }
381
382 /* platform data */
383 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
384 irq = platform_get_irq(pdev, 0);
385 if (!res || (int)irq <= 0) {
386 dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
387 return -ENODEV;
388 }
389
390 /* usb private data */
391 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
392 if (!priv) {
393 dev_err(&pdev->dev, "Could not allocate priv\n");
394 return -ENOMEM;
395 }
396
397 priv->base = ioremap_nocache(res->start, resource_size(res));
398 if (!priv->base) {
399 dev_err(&pdev->dev, "ioremap error.\n");
400 ret = -ENOMEM;
401 goto probe_end_kfree;
402 }
403
404 /*
405 * care platform info
406 */
407 priv->pfunc = &info->platform_callback;
408 priv->dparam = &info->driver_param;
409
410 /* set driver callback functions for platform */
411 dfunc = &info->driver_callback;
412 dfunc->notify_hotplug = usbhsc_drvcllbck_notify_hotplug;
413
414 /* set default param if platform doesn't have */
415 if (!priv->dparam->pipe_type) {
416 priv->dparam->pipe_type = usbhsc_default_pipe_type;
417 priv->dparam->pipe_size = ARRAY_SIZE(usbhsc_default_pipe_type);
418 }
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900419 if (!priv->dparam->pio_dma_border)
420 priv->dparam->pio_dma_border = 64; /* 64byte */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900421
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900422 /* FIXME */
423 /* runtime power control ? */
424 if (priv->pfunc->get_vbus)
425 usbhsc_flags_set(priv, USBHSF_RUNTIME_PWCTRL);
426
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900427 /*
428 * priv settings
429 */
430 priv->irq = irq;
431 priv->pdev = pdev;
Kuninori Morimotobc573812011-04-28 16:41:14 +0900432 INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900433 spin_lock_init(usbhs_priv_to_lock(priv));
434
435 /* call pipe and module init */
436 ret = usbhs_pipe_probe(priv);
437 if (ret < 0)
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900438 goto probe_end_iounmap;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900439
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900440 ret = usbhs_fifo_probe(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900441 if (ret < 0)
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900442 goto probe_end_pipe_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900443
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900444 ret = usbhs_mod_probe(priv);
445 if (ret < 0)
446 goto probe_end_fifo_exit;
447
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900448 /* dev_set_drvdata should be called after usbhs_mod_init */
449 dev_set_drvdata(&pdev->dev, priv);
450
451 /*
452 * deviece reset here because
453 * USB device might be used in boot loader.
454 */
455 usbhs_sys_clock_ctrl(priv, 0);
456
457 /*
458 * platform call
459 *
460 * USB phy setup might depend on CPU/Board.
461 * If platform has its callback functions,
462 * call it here.
463 */
464 ret = usbhs_platform_call(priv, hardware_init, pdev);
465 if (ret < 0) {
466 dev_err(&pdev->dev, "platform prove failed.\n");
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900467 goto probe_end_mod_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900468 }
469
470 /* reset phy for connection */
471 usbhs_platform_call(priv, phy_reset, pdev);
472
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900473 /* power control */
474 pm_runtime_enable(&pdev->dev);
475 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) {
476 usbhsc_power_ctrl(priv, 1);
477 usbhs_mod_autonomy_mode(priv);
478 }
479
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900480 /*
481 * manual call notify_hotplug for cold plug
482 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900483 ret = usbhsc_drvcllbck_notify_hotplug(pdev);
484 if (ret < 0)
485 goto probe_end_call_remove;
486
487 dev_info(&pdev->dev, "probed\n");
488
489 return ret;
490
491probe_end_call_remove:
492 usbhs_platform_call(priv, hardware_exit, pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900493probe_end_mod_exit:
494 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900495probe_end_fifo_exit:
496 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900497probe_end_pipe_exit:
498 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900499probe_end_iounmap:
500 iounmap(priv->base);
501probe_end_kfree:
502 kfree(priv);
503
504 dev_info(&pdev->dev, "probe failed\n");
505
506 return ret;
507}
508
509static int __devexit usbhs_remove(struct platform_device *pdev)
510{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900511 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900512 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
513 struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900514
515 dev_dbg(&pdev->dev, "usb remove\n");
516
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900517 dfunc->notify_hotplug = NULL;
518
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900519 /* power off */
520 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
521 usbhsc_power_ctrl(priv, 0);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900522
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900523 pm_runtime_disable(&pdev->dev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900524
525 usbhs_platform_call(priv, hardware_exit, pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900526 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900527 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900528 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900529 iounmap(priv->base);
530 kfree(priv);
531
532 return 0;
533}
534
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700535static int usbhsc_suspend(struct device *dev)
536{
537 struct usbhs_priv *priv = dev_get_drvdata(dev);
538 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
539
540 if (mod) {
541 usbhs_mod_call(priv, stop, priv);
542 usbhs_mod_change(priv, -1);
543 }
544
545 if (mod || !usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
546 usbhsc_power_ctrl(priv, 0);
547
548 return 0;
549}
550
551static int usbhsc_resume(struct device *dev)
552{
553 struct usbhs_priv *priv = dev_get_drvdata(dev);
554 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
555
556 usbhs_platform_call(priv, phy_reset, pdev);
557
558 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
559 usbhsc_power_ctrl(priv, 1);
560
561 usbhsc_hotplug(priv);
562
563 return 0;
564}
565
566static int usbhsc_runtime_nop(struct device *dev)
567{
568 /* Runtime PM callback shared between ->runtime_suspend()
569 * and ->runtime_resume(). Simply returns success.
570 *
571 * This driver re-initializes all registers after
572 * pm_runtime_get_sync() anyway so there is no need
573 * to save and restore registers here.
574 */
575 return 0;
576}
577
578static const struct dev_pm_ops usbhsc_pm_ops = {
579 .suspend = usbhsc_suspend,
580 .resume = usbhsc_resume,
581 .runtime_suspend = usbhsc_runtime_nop,
582 .runtime_resume = usbhsc_runtime_nop,
583};
584
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900585static struct platform_driver renesas_usbhs_driver = {
586 .driver = {
587 .name = "renesas_usbhs",
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700588 .pm = &usbhsc_pm_ops,
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900589 },
590 .probe = usbhs_probe,
591 .remove = __devexit_p(usbhs_remove),
592};
593
594static int __init usbhs_init(void)
595{
596 return platform_driver_register(&renesas_usbhs_driver);
597}
598
599static void __exit usbhs_exit(void)
600{
601 platform_driver_unregister(&renesas_usbhs_driver);
602}
603
604module_init(usbhs_init);
605module_exit(usbhs_exit);
606
607MODULE_LICENSE("GPL");
608MODULE_DESCRIPTION("Renesas USB driver");
609MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");