blob: 4cf77d3c3bd23cb5db6d5dde887eb9255c2d949b [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 */
Thierry Reding148e1132013-01-21 11:09:22 +010017#include <linux/err.h>
Ulrich Hecht8ecef002014-07-10 09:53:59 +020018#include <linux/gpio.h>
Kuninori Morimotof1407d52011-04-04 13:44:59 +090019#include <linux/io.h>
20#include <linux/module.h>
Yoshihiro Shimodab8541002014-09-03 14:25:56 +090021#include <linux/of_device.h>
22#include <linux/of_gpio.h>
Kuninori Morimotof1407d52011-04-04 13:44:59 +090023#include <linux/pm_runtime.h>
24#include <linux/slab.h>
25#include <linux/sysfs.h>
Paul Bollecc502bb2012-06-03 18:39:13 +020026#include "common.h"
Ulrich Hecht8ecef002014-07-10 09:53:59 +020027#include "rcar2.h"
Kuninori Morimotof1407d52011-04-04 13:44:59 +090028
Kuninori Morimoto233f5192011-07-07 00:23:24 -070029/*
30 * image of renesas_usbhs
31 *
32 * ex) gadget case
33
34 * mod.c
35 * mod_gadget.c
36 * mod_host.c pipe.c fifo.c
37 *
38 * +-------+ +-----------+
39 * | pipe0 |------>| fifo pio |
40 * +------------+ +-------+ +-----------+
41 * | mod_gadget |=====> | pipe1 |--+
42 * +------------+ +-------+ | +-----------+
43 * | pipe2 | | +-| fifo dma0 |
44 * +------------+ +-------+ | | +-----------+
45 * | mod_host | | pipe3 |<-|--+
46 * +------------+ +-------+ | +-----------+
47 * | .... | +--->| fifo dma1 |
48 * | .... | +-----------+
49 */
50
51
Kuninori Morimotob002ff62011-04-28 16:41:20 +090052#define USBHSF_RUNTIME_PWCTRL (1 << 0)
53
54/* status */
55#define usbhsc_flags_init(p) do {(p)->flags = 0; } while (0)
56#define usbhsc_flags_set(p, b) ((p)->flags |= (b))
57#define usbhsc_flags_clr(p, b) ((p)->flags &= ~(b))
58#define usbhsc_flags_has(p, b) ((p)->flags & (b))
59
Kuninori Morimotof1407d52011-04-04 13:44:59 +090060/*
61 * platform call back
62 *
63 * renesas usb support platform callback function.
64 * Below macro call it.
65 * if platform doesn't have callback, it return 0 (no error)
66 */
67#define usbhs_platform_call(priv, func, args...)\
68 (!(priv) ? -ENODEV : \
Kuninori Morimoto48298202011-10-12 21:02:22 -070069 !((priv)->pfunc.func) ? 0 : \
70 (priv)->pfunc.func(args))
Kuninori Morimotof1407d52011-04-04 13:44:59 +090071
72/*
73 * common functions
74 */
75u16 usbhs_read(struct usbhs_priv *priv, u32 reg)
76{
77 return ioread16(priv->base + reg);
78}
79
80void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data)
81{
82 iowrite16(data, priv->base + reg);
83}
84
85void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
86{
87 u16 val = usbhs_read(priv, reg);
88
89 val &= ~mask;
90 val |= data & mask;
91
92 usbhs_write(priv, reg, val);
93}
94
Kuninori Morimoto206dcc22011-04-28 16:40:54 +090095struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
96{
97 return dev_get_drvdata(&pdev->dev);
98}
99
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900100/*
101 * syscfg functions
102 */
Kuninori Morimoto76190152011-10-23 19:56:41 -0700103static void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900104{
105 usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0);
106}
107
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900108void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable)
109{
Kuninori Morimoto3244a7b2011-10-23 19:56:30 -0700110 u16 mask = DCFM | DRPD | DPRPU | HSE | USBE;
111 u16 val = DCFM | DRPD | HSE | USBE;
Kuninori Morimotof427eb62011-10-10 22:06:12 -0700112 int has_otg = usbhs_get_dparam(priv, has_otg);
113
114 if (has_otg)
115 usbhs_bset(priv, DVSTCTR, (EXTLP | PWEN), (EXTLP | PWEN));
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900116
117 /*
118 * if enable
119 *
120 * - select Host mode
121 * - D+ Line/D- Line Pull-down
122 */
123 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
124}
125
126void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable)
127{
Kuninori Morimoto3244a7b2011-10-23 19:56:30 -0700128 u16 mask = DCFM | DRPD | DPRPU | HSE | USBE;
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900129 u16 val = HSE | USBE;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900130
131 /*
132 * if enable
133 *
134 * - select Function mode
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900135 * - D+ Line Pull-up is disabled
136 * When D+ Line Pull-up is enabled,
137 * calling usbhs_sys_function_pullup(,1)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900138 */
139 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
140}
141
kuninori.morimoto.gx@renesas.com4cd2f592012-10-15 23:24:19 -0700142void usbhs_sys_function_pullup(struct usbhs_priv *priv, int enable)
143{
144 usbhs_bset(priv, SYSCFG, DPRPU, enable ? DPRPU : 0);
145}
146
Kuninori Morimotodfbb7f42011-11-24 17:28:35 -0800147void usbhs_sys_set_test_mode(struct usbhs_priv *priv, u16 mode)
148{
149 usbhs_write(priv, TESTMODE, mode);
150}
151
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900152/*
153 * frame functions
154 */
155int usbhs_frame_get_num(struct usbhs_priv *priv)
156{
157 return usbhs_read(priv, FRMNUM) & FRNM_MASK;
158}
159
160/*
Kuninori Morimotoef8bedb2011-10-10 22:02:33 -0700161 * usb request functions
162 */
163void usbhs_usbreq_get_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
164{
165 u16 val;
166
167 val = usbhs_read(priv, USBREQ);
168 req->bRequest = (val >> 8) & 0xFF;
169 req->bRequestType = (val >> 0) & 0xFF;
170
171 req->wValue = usbhs_read(priv, USBVAL);
172 req->wIndex = usbhs_read(priv, USBINDX);
173 req->wLength = usbhs_read(priv, USBLENG);
174}
175
176void usbhs_usbreq_set_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
177{
178 usbhs_write(priv, USBREQ, (req->bRequest << 8) | req->bRequestType);
179 usbhs_write(priv, USBVAL, req->wValue);
180 usbhs_write(priv, USBINDX, req->wIndex);
181 usbhs_write(priv, USBLENG, req->wLength);
182
183 usbhs_bset(priv, DCPCTR, SUREQ, SUREQ);
184}
185
186/*
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700187 * bus/vbus functions
188 */
189void usbhs_bus_send_sof_enable(struct usbhs_priv *priv)
190{
Kuninori Morimotoa9be4a42011-10-10 22:06:35 -0700191 u16 status = usbhs_read(priv, DVSTCTR) & (USBRST | UACT);
192
193 if (status != USBRST) {
194 struct device *dev = usbhs_priv_to_dev(priv);
195 dev_err(dev, "usbhs should be reset\n");
196 }
197
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700198 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), UACT);
199}
200
201void usbhs_bus_send_reset(struct usbhs_priv *priv)
202{
203 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), USBRST);
204}
205
Kuninori Morimoto75587f52011-10-10 22:01:51 -0700206int usbhs_bus_get_speed(struct usbhs_priv *priv)
207{
208 u16 dvstctr = usbhs_read(priv, DVSTCTR);
209
210 switch (RHST & dvstctr) {
211 case RHST_LOW_SPEED:
212 return USB_SPEED_LOW;
213 case RHST_FULL_SPEED:
214 return USB_SPEED_FULL;
215 case RHST_HIGH_SPEED:
216 return USB_SPEED_HIGH;
217 }
218
219 return USB_SPEED_UNKNOWN;
220}
221
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700222int usbhs_vbus_ctrl(struct usbhs_priv *priv, int enable)
223{
224 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
225
226 return usbhs_platform_call(priv, set_vbus, pdev, enable);
227}
228
229static void usbhsc_bus_init(struct usbhs_priv *priv)
230{
231 usbhs_write(priv, DVSTCTR, 0);
232
233 usbhs_vbus_ctrl(priv, 0);
234}
235
236/*
Kuninori Morimotoeb051912011-10-10 22:06:46 -0700237 * device configuration
238 */
Kuninori Morimoto3dd49262011-10-31 00:47:13 -0700239int usbhs_set_device_config(struct usbhs_priv *priv, int devnum,
Kuninori Morimotoeb051912011-10-10 22:06:46 -0700240 u16 upphub, u16 hubport, u16 speed)
241{
242 struct device *dev = usbhs_priv_to_dev(priv);
243 u16 usbspd = 0;
244 u32 reg = DEVADD0 + (2 * devnum);
245
246 if (devnum > 10) {
247 dev_err(dev, "cannot set speed to unknown device %d\n", devnum);
248 return -EIO;
249 }
250
251 if (upphub > 0xA) {
252 dev_err(dev, "unsupported hub number %d\n", upphub);
253 return -EIO;
254 }
255
256 switch (speed) {
257 case USB_SPEED_LOW:
258 usbspd = USBSPD_SPEED_LOW;
259 break;
260 case USB_SPEED_FULL:
261 usbspd = USBSPD_SPEED_FULL;
262 break;
263 case USB_SPEED_HIGH:
264 usbspd = USBSPD_SPEED_HIGH;
265 break;
266 default:
267 dev_err(dev, "unsupported speed %d\n", speed);
268 return -EIO;
269 }
270
271 usbhs_write(priv, reg, UPPHUB(upphub) |
272 HUBPORT(hubport)|
273 USBSPD(usbspd));
274
275 return 0;
276}
277
278/*
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900279 * local functions
280 */
Kuninori Morimoto11935de2011-10-10 22:01:28 -0700281static void usbhsc_set_buswait(struct usbhs_priv *priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900282{
283 int wait = usbhs_get_dparam(priv, buswait_bwait);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900284
Kuninori Morimoto11935de2011-10-10 22:01:28 -0700285 /* set bus wait if platform have */
286 if (wait)
287 usbhs_bset(priv, BUSWAIT, 0x000F, wait);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900288}
289
290/*
291 * platform default param
292 */
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200293
294/* commonly used on old SH-Mobile SoCs */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900295static u32 usbhsc_default_pipe_type[] = {
296 USB_ENDPOINT_XFER_CONTROL,
297 USB_ENDPOINT_XFER_ISOC,
298 USB_ENDPOINT_XFER_ISOC,
299 USB_ENDPOINT_XFER_BULK,
300 USB_ENDPOINT_XFER_BULK,
301 USB_ENDPOINT_XFER_BULK,
302 USB_ENDPOINT_XFER_INT,
303 USB_ENDPOINT_XFER_INT,
304 USB_ENDPOINT_XFER_INT,
305 USB_ENDPOINT_XFER_INT,
306};
307
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200308/* commonly used on newer SH-Mobile and R-Car SoCs */
309static u32 usbhsc_new_pipe_type[] = {
310 USB_ENDPOINT_XFER_CONTROL,
311 USB_ENDPOINT_XFER_ISOC,
312 USB_ENDPOINT_XFER_ISOC,
313 USB_ENDPOINT_XFER_BULK,
314 USB_ENDPOINT_XFER_BULK,
315 USB_ENDPOINT_XFER_BULK,
316 USB_ENDPOINT_XFER_INT,
317 USB_ENDPOINT_XFER_INT,
318 USB_ENDPOINT_XFER_INT,
319 USB_ENDPOINT_XFER_BULK,
320 USB_ENDPOINT_XFER_BULK,
321 USB_ENDPOINT_XFER_BULK,
322 USB_ENDPOINT_XFER_BULK,
323 USB_ENDPOINT_XFER_BULK,
324 USB_ENDPOINT_XFER_BULK,
325 USB_ENDPOINT_XFER_BULK,
326};
327
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900328/*
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900329 * power control
330 */
331static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable)
332{
Kuninori Morimotof1ee56a2011-10-23 19:57:10 -0700333 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900334 struct device *dev = usbhs_priv_to_dev(priv);
335
336 if (enable) {
337 /* enable PM */
338 pm_runtime_get_sync(dev);
339
Kuninori Morimotof1ee56a2011-10-23 19:57:10 -0700340 /* enable platform power */
341 usbhs_platform_call(priv, power_ctrl, pdev, priv->base, enable);
342
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900343 /* USB on */
344 usbhs_sys_clock_ctrl(priv, enable);
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900345 } else {
346 /* USB off */
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900347 usbhs_sys_clock_ctrl(priv, enable);
348
Kuninori Morimotof1ee56a2011-10-23 19:57:10 -0700349 /* disable platform power */
350 usbhs_platform_call(priv, power_ctrl, pdev, priv->base, enable);
351
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900352 /* disable PM */
353 pm_runtime_put_sync(dev);
354 }
355}
356
357/*
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700358 * hotplug
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900359 */
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700360static void usbhsc_hotplug(struct usbhs_priv *priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900361{
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900362 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
363 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
364 int id;
365 int enable;
Sergei Shtylyovd7b39682014-12-16 01:42:13 +0300366 int cable;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900367 int ret;
368
369 /*
370 * get vbus status from platform
371 */
372 enable = usbhs_platform_call(priv, get_vbus, pdev);
373
374 /*
375 * get id from platform
376 */
377 id = usbhs_platform_call(priv, get_id, pdev);
378
379 if (enable && !mod) {
Sergei Shtylyovd7b39682014-12-16 01:42:13 +0300380 if (priv->edev) {
381 cable = extcon_get_cable_state(priv->edev, "USB-HOST");
382 if ((cable > 0 && id != USBHS_HOST) ||
383 (!cable && id != USBHS_GADGET)) {
384 dev_info(&pdev->dev,
385 "USB cable plugged in doesn't match the selected role!\n");
386 return;
387 }
388 }
389
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900390 ret = usbhs_mod_change(priv, id);
391 if (ret < 0)
392 return;
393
394 dev_dbg(&pdev->dev, "%s enable\n", __func__);
395
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900396 /* power on */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900397 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
398 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900399
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700400 /* bus init */
401 usbhsc_set_buswait(priv);
402 usbhsc_bus_init(priv);
403
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900404 /* module start */
405 usbhs_mod_call(priv, start, priv);
406
407 } else if (!enable && mod) {
408 dev_dbg(&pdev->dev, "%s disable\n", __func__);
409
410 /* module stop */
411 usbhs_mod_call(priv, stop, priv);
412
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700413 /* bus init */
414 usbhsc_bus_init(priv);
415
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900416 /* power off */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900417 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
418 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900419
420 usbhs_mod_change(priv, -1);
421
422 /* reset phy for next connection */
423 usbhs_platform_call(priv, phy_reset, pdev);
424 }
425}
426
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700427/*
428 * notify hotplug
429 */
430static void usbhsc_notify_hotplug(struct work_struct *work)
431{
432 struct usbhs_priv *priv = container_of(work,
433 struct usbhs_priv,
434 notify_hotplug_work.work);
435 usbhsc_hotplug(priv);
436}
437
Kuninori Morimotob4fcea22011-10-24 02:25:48 -0700438static int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900439{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900440 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotobc573812011-04-28 16:41:14 +0900441 int delay = usbhs_get_dparam(priv, detection_delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900442
443 /*
444 * This functions will be called in interrupt.
445 * To make sure safety context,
446 * use workqueue for usbhs_notify_hotplug
447 */
Kuninori Morimotoa49a88f2011-10-23 19:57:02 -0700448 schedule_delayed_work(&priv->notify_hotplug_work,
449 msecs_to_jiffies(delay));
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900450 return 0;
451}
452
453/*
454 * platform functions
455 */
Yoshihiro Shimodab8541002014-09-03 14:25:56 +0900456static const struct of_device_id usbhs_of_match[] = {
457 {
458 .compatible = "renesas,usbhs-r8a7790",
459 .data = (void *)USBHS_TYPE_R8A7790,
460 },
461 {
462 .compatible = "renesas,usbhs-r8a7791",
463 .data = (void *)USBHS_TYPE_R8A7791,
464 },
465 { },
466};
467MODULE_DEVICE_TABLE(of, usbhs_of_match);
468
469static struct renesas_usbhs_platform_info *usbhs_parse_dt(struct device *dev)
470{
471 struct renesas_usbhs_platform_info *info;
472 struct renesas_usbhs_driver_param *dparam;
473 const struct of_device_id *of_id = of_match_device(usbhs_of_match, dev);
474 u32 tmp;
475 int gpio;
476
477 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
478 if (!info)
479 return NULL;
480
481 dparam = &info->driver_param;
482 dparam->type = of_id ? (u32)of_id->data : 0;
483 if (!of_property_read_u32(dev->of_node, "renesas,buswait", &tmp))
484 dparam->buswait_bwait = tmp;
485 gpio = of_get_named_gpio_flags(dev->of_node, "renesas,enable-gpio", 0,
486 NULL);
487 if (gpio > 0)
488 dparam->enable_gpio = gpio;
489
490 return info;
491}
492
Kuninori Morimotob7a8d172011-10-26 19:33:49 -0700493static int usbhs_probe(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900494{
Jingoo Hanace0a5f2013-07-30 17:06:20 +0900495 struct renesas_usbhs_platform_info *info = dev_get_platdata(&pdev->dev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900496 struct renesas_usbhs_driver_callback *dfunc;
497 struct usbhs_priv *priv;
Shimoda, Yoshihiro53069af2012-01-05 15:37:18 +0900498 struct resource *res, *irq_res;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900499 int ret;
500
Yoshihiro Shimodab8541002014-09-03 14:25:56 +0900501 /* check device node */
502 if (pdev->dev.of_node)
503 info = pdev->dev.platform_data = usbhs_parse_dt(&pdev->dev);
504
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900505 /* check platform information */
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200506 if (!info) {
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900507 dev_err(&pdev->dev, "no platform information\n");
508 return -EINVAL;
509 }
510
511 /* platform data */
Shimoda, Yoshihiro53069af2012-01-05 15:37:18 +0900512 irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
Varka Bhadram687f16b2014-10-29 21:30:16 +0530513 if (!irq_res) {
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900514 dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
515 return -ENODEV;
516 }
517
518 /* usb private data */
Kuninori Morimoto58efc772012-09-10 19:01:07 -0700519 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
Peter Chenb1cb07c2014-10-14 15:56:19 +0800520 if (!priv)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900521 return -ENOMEM;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900522
Varka Bhadram687f16b2014-10-29 21:30:16 +0530523 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100524 priv->base = devm_ioremap_resource(&pdev->dev, res);
525 if (IS_ERR(priv->base))
526 return PTR_ERR(priv->base);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900527
Sergei Shtylyovd7b39682014-12-16 01:42:13 +0300528 if (of_property_read_bool(pdev->dev.of_node, "extcon")) {
529 priv->edev = extcon_get_edev_by_phandle(&pdev->dev, 0);
530 if (IS_ERR(priv->edev))
531 return PTR_ERR(priv->edev);
532 }
533
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900534 /*
535 * care platform info
536 */
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200537
Kuninori Morimoto48298202011-10-12 21:02:22 -0700538 memcpy(&priv->dparam,
539 &info->driver_param,
540 sizeof(struct renesas_usbhs_driver_param));
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900541
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200542 switch (priv->dparam.type) {
543 case USBHS_TYPE_R8A7790:
544 case USBHS_TYPE_R8A7791:
545 priv->pfunc = usbhs_rcar2_ops;
546 if (!priv->dparam.pipe_type) {
547 priv->dparam.pipe_type = usbhsc_new_pipe_type;
548 priv->dparam.pipe_size =
549 ARRAY_SIZE(usbhsc_new_pipe_type);
550 }
551 break;
552 default:
553 if (!info->platform_callback.get_id) {
554 dev_err(&pdev->dev, "no platform callbacks");
555 return -EINVAL;
556 }
557 memcpy(&priv->pfunc,
558 &info->platform_callback,
559 sizeof(struct renesas_usbhs_platform_callback));
560 break;
561 }
562
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900563 /* set driver callback functions for platform */
564 dfunc = &info->driver_callback;
565 dfunc->notify_hotplug = usbhsc_drvcllbck_notify_hotplug;
566
567 /* set default param if platform doesn't have */
Kuninori Morimoto48298202011-10-12 21:02:22 -0700568 if (!priv->dparam.pipe_type) {
569 priv->dparam.pipe_type = usbhsc_default_pipe_type;
570 priv->dparam.pipe_size = ARRAY_SIZE(usbhsc_default_pipe_type);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900571 }
Kuninori Morimoto48298202011-10-12 21:02:22 -0700572 if (!priv->dparam.pio_dma_border)
573 priv->dparam.pio_dma_border = 64; /* 64byte */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900574
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900575 /* FIXME */
576 /* runtime power control ? */
Kuninori Morimoto48298202011-10-12 21:02:22 -0700577 if (priv->pfunc.get_vbus)
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900578 usbhsc_flags_set(priv, USBHSF_RUNTIME_PWCTRL);
579
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900580 /*
581 * priv settings
582 */
Shimoda, Yoshihiro53069af2012-01-05 15:37:18 +0900583 priv->irq = irq_res->start;
584 if (irq_res->flags & IORESOURCE_IRQ_SHAREABLE)
585 priv->irqflags = IRQF_SHARED;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900586 priv->pdev = pdev;
Kuninori Morimotobc573812011-04-28 16:41:14 +0900587 INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900588 spin_lock_init(usbhs_priv_to_lock(priv));
589
590 /* call pipe and module init */
591 ret = usbhs_pipe_probe(priv);
592 if (ret < 0)
Kuninori Morimoto58efc772012-09-10 19:01:07 -0700593 return ret;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900594
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900595 ret = usbhs_fifo_probe(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900596 if (ret < 0)
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900597 goto probe_end_pipe_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900598
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900599 ret = usbhs_mod_probe(priv);
600 if (ret < 0)
601 goto probe_end_fifo_exit;
602
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900603 /* dev_set_drvdata should be called after usbhs_mod_init */
Libo Chenc9a05522013-08-27 16:10:31 +0800604 platform_set_drvdata(pdev, priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900605
606 /*
607 * deviece reset here because
608 * USB device might be used in boot loader.
609 */
610 usbhs_sys_clock_ctrl(priv, 0);
611
Ulrich Hecht8ecef002014-07-10 09:53:59 +0200612 /* check GPIO determining if USB function should be enabled */
613 if (priv->dparam.enable_gpio) {
614 gpio_request_one(priv->dparam.enable_gpio, GPIOF_IN, NULL);
615 ret = !gpio_get_value(priv->dparam.enable_gpio);
616 gpio_free(priv->dparam.enable_gpio);
617 if (ret) {
618 dev_warn(&pdev->dev,
619 "USB function not selected (GPIO %d)\n",
620 priv->dparam.enable_gpio);
621 ret = -ENOTSUPP;
622 goto probe_end_mod_exit;
623 }
624 }
625
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900626 /*
627 * platform call
628 *
629 * USB phy setup might depend on CPU/Board.
630 * If platform has its callback functions,
631 * call it here.
632 */
633 ret = usbhs_platform_call(priv, hardware_init, pdev);
634 if (ret < 0) {
Sergei Shtylyov48ac1e52014-11-05 01:48:48 +0300635 dev_err(&pdev->dev, "platform init failed.\n");
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900636 goto probe_end_mod_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900637 }
638
639 /* reset phy for connection */
640 usbhs_platform_call(priv, phy_reset, pdev);
641
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900642 /* power control */
643 pm_runtime_enable(&pdev->dev);
644 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) {
645 usbhsc_power_ctrl(priv, 1);
646 usbhs_mod_autonomy_mode(priv);
647 }
648
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900649 /*
650 * manual call notify_hotplug for cold plug
651 */
Sergei Shtylyov368504c2014-12-12 22:53:18 +0300652 usbhsc_drvcllbck_notify_hotplug(pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900653
654 dev_info(&pdev->dev, "probed\n");
655
656 return ret;
657
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900658probe_end_mod_exit:
659 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900660probe_end_fifo_exit:
661 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900662probe_end_pipe_exit:
663 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900664
665 dev_info(&pdev->dev, "probe failed\n");
666
667 return ret;
668}
669
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500670static int usbhs_remove(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900671{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900672 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Jingoo Hanace0a5f2013-07-30 17:06:20 +0900673 struct renesas_usbhs_platform_info *info = dev_get_platdata(&pdev->dev);
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900674 struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900675
676 dev_dbg(&pdev->dev, "usb remove\n");
677
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900678 dfunc->notify_hotplug = NULL;
679
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900680 /* power off */
681 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
682 usbhsc_power_ctrl(priv, 0);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900683
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900684 pm_runtime_disable(&pdev->dev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900685
686 usbhs_platform_call(priv, hardware_exit, pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900687 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900688 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900689 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900690
691 return 0;
692}
693
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700694static int usbhsc_suspend(struct device *dev)
695{
696 struct usbhs_priv *priv = dev_get_drvdata(dev);
697 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
698
699 if (mod) {
700 usbhs_mod_call(priv, stop, priv);
701 usbhs_mod_change(priv, -1);
702 }
703
704 if (mod || !usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
705 usbhsc_power_ctrl(priv, 0);
706
707 return 0;
708}
709
710static int usbhsc_resume(struct device *dev)
711{
712 struct usbhs_priv *priv = dev_get_drvdata(dev);
713 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
714
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700715 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
716 usbhsc_power_ctrl(priv, 1);
717
Kuninori Morimoto5b50d3b2012-08-05 22:44:43 -0700718 usbhs_platform_call(priv, phy_reset, pdev);
719
720 usbhsc_drvcllbck_notify_hotplug(pdev);
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700721
722 return 0;
723}
724
725static int usbhsc_runtime_nop(struct device *dev)
726{
727 /* Runtime PM callback shared between ->runtime_suspend()
728 * and ->runtime_resume(). Simply returns success.
729 *
730 * This driver re-initializes all registers after
731 * pm_runtime_get_sync() anyway so there is no need
732 * to save and restore registers here.
733 */
734 return 0;
735}
736
737static const struct dev_pm_ops usbhsc_pm_ops = {
738 .suspend = usbhsc_suspend,
739 .resume = usbhsc_resume,
740 .runtime_suspend = usbhsc_runtime_nop,
741 .runtime_resume = usbhsc_runtime_nop,
742};
743
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900744static struct platform_driver renesas_usbhs_driver = {
745 .driver = {
746 .name = "renesas_usbhs",
Kuninori Morimotoca8a2822011-10-10 21:58:19 -0700747 .pm = &usbhsc_pm_ops,
Yoshihiro Shimodab8541002014-09-03 14:25:56 +0900748 .of_match_table = of_match_ptr(usbhs_of_match),
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900749 },
750 .probe = usbhs_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500751 .remove = usbhs_remove,
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900752};
753
Axel Lincc27c962011-11-27 20:16:27 +0800754module_platform_driver(renesas_usbhs_driver);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900755
756MODULE_LICENSE("GPL");
757MODULE_DESCRIPTION("Renesas USB driver");
758MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");