blob: e510b29216b3ebd40ee6f444c3aefbe57f05d317 [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 Morimotob002ff62011-04-28 16:41:20 +090024#define USBHSF_RUNTIME_PWCTRL (1 << 0)
25
26/* status */
27#define usbhsc_flags_init(p) do {(p)->flags = 0; } while (0)
28#define usbhsc_flags_set(p, b) ((p)->flags |= (b))
29#define usbhsc_flags_clr(p, b) ((p)->flags &= ~(b))
30#define usbhsc_flags_has(p, b) ((p)->flags & (b))
31
Kuninori Morimotof1407d52011-04-04 13:44:59 +090032/*
33 * platform call back
34 *
35 * renesas usb support platform callback function.
36 * Below macro call it.
37 * if platform doesn't have callback, it return 0 (no error)
38 */
39#define usbhs_platform_call(priv, func, args...)\
40 (!(priv) ? -ENODEV : \
41 !((priv)->pfunc->func) ? 0 : \
42 (priv)->pfunc->func(args))
43
44/*
45 * common functions
46 */
47u16 usbhs_read(struct usbhs_priv *priv, u32 reg)
48{
49 return ioread16(priv->base + reg);
50}
51
52void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data)
53{
54 iowrite16(data, priv->base + reg);
55}
56
57void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
58{
59 u16 val = usbhs_read(priv, reg);
60
61 val &= ~mask;
62 val |= data & mask;
63
64 usbhs_write(priv, reg, val);
65}
66
Kuninori Morimoto206dcc22011-04-28 16:40:54 +090067struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
68{
69 return dev_get_drvdata(&pdev->dev);
70}
71
Kuninori Morimotof1407d52011-04-04 13:44:59 +090072/*
73 * syscfg functions
74 */
75void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable)
76{
77 usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0);
78}
79
80void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable)
81{
82 usbhs_bset(priv, SYSCFG, HSE, enable ? HSE : 0);
83}
84
85void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable)
86{
87 usbhs_bset(priv, SYSCFG, USBE, enable ? USBE : 0);
88}
89
90void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable)
91{
92 u16 mask = DCFM | DRPD | DPRPU;
93 u16 val = DCFM | DRPD;
94
95 /*
96 * if enable
97 *
98 * - select Host mode
99 * - D+ Line/D- Line Pull-down
100 */
101 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
102}
103
104void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable)
105{
106 u16 mask = DCFM | DRPD | DPRPU;
107 u16 val = DPRPU;
108
109 /*
110 * if enable
111 *
112 * - select Function mode
113 * - D+ Line Pull-up
114 */
115 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
116}
117
118/*
119 * frame functions
120 */
121int usbhs_frame_get_num(struct usbhs_priv *priv)
122{
123 return usbhs_read(priv, FRMNUM) & FRNM_MASK;
124}
125
126/*
127 * local functions
128 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900129static void usbhsc_bus_ctrl(struct usbhs_priv *priv, int enable)
130{
131 int wait = usbhs_get_dparam(priv, buswait_bwait);
132 u16 data = 0;
133
134 if (enable) {
135 /* set bus wait if platform have */
136 if (wait)
137 usbhs_bset(priv, BUSWAIT, 0x000F, wait);
138 }
139 usbhs_write(priv, DVSTCTR, data);
140}
141
142/*
143 * platform default param
144 */
145static u32 usbhsc_default_pipe_type[] = {
146 USB_ENDPOINT_XFER_CONTROL,
147 USB_ENDPOINT_XFER_ISOC,
148 USB_ENDPOINT_XFER_ISOC,
149 USB_ENDPOINT_XFER_BULK,
150 USB_ENDPOINT_XFER_BULK,
151 USB_ENDPOINT_XFER_BULK,
152 USB_ENDPOINT_XFER_INT,
153 USB_ENDPOINT_XFER_INT,
154 USB_ENDPOINT_XFER_INT,
155 USB_ENDPOINT_XFER_INT,
156};
157
158/*
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900159 * power control
160 */
161static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable)
162{
163 struct device *dev = usbhs_priv_to_dev(priv);
164
165 if (enable) {
166 /* enable PM */
167 pm_runtime_get_sync(dev);
168
169 /* USB on */
170 usbhs_sys_clock_ctrl(priv, enable);
171 usbhsc_bus_ctrl(priv, enable);
172 } else {
173 /* USB off */
174 usbhsc_bus_ctrl(priv, enable);
175 usbhs_sys_clock_ctrl(priv, enable);
176
177 /* disable PM */
178 pm_runtime_put_sync(dev);
179 }
180}
181
182/*
183 * notify hotplug
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900184 */
185static void usbhsc_notify_hotplug(struct work_struct *work)
186{
187 struct usbhs_priv *priv = container_of(work,
188 struct usbhs_priv,
Kuninori Morimotobc573812011-04-28 16:41:14 +0900189 notify_hotplug_work.work);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900190 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
191 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
192 int id;
193 int enable;
194 int ret;
195
196 /*
197 * get vbus status from platform
198 */
199 enable = usbhs_platform_call(priv, get_vbus, pdev);
200
201 /*
202 * get id from platform
203 */
204 id = usbhs_platform_call(priv, get_id, pdev);
205
206 if (enable && !mod) {
207 ret = usbhs_mod_change(priv, id);
208 if (ret < 0)
209 return;
210
211 dev_dbg(&pdev->dev, "%s enable\n", __func__);
212
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900213 /* power on */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900214 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
215 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900216
217 /* module start */
218 usbhs_mod_call(priv, start, priv);
219
220 } else if (!enable && mod) {
221 dev_dbg(&pdev->dev, "%s disable\n", __func__);
222
223 /* module stop */
224 usbhs_mod_call(priv, stop, priv);
225
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900226 /* power off */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900227 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
228 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900229
230 usbhs_mod_change(priv, -1);
231
232 /* reset phy for next connection */
233 usbhs_platform_call(priv, phy_reset, pdev);
234 }
235}
236
Kuninori Morimotobc573812011-04-28 16:41:14 +0900237int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900238{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900239 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotobc573812011-04-28 16:41:14 +0900240 int delay = usbhs_get_dparam(priv, detection_delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900241
242 /*
243 * This functions will be called in interrupt.
244 * To make sure safety context,
245 * use workqueue for usbhs_notify_hotplug
246 */
Kuninori Morimotobc573812011-04-28 16:41:14 +0900247 schedule_delayed_work(&priv->notify_hotplug_work, delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900248 return 0;
249}
250
251/*
252 * platform functions
253 */
254static int __devinit usbhs_probe(struct platform_device *pdev)
255{
256 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
257 struct renesas_usbhs_driver_callback *dfunc;
258 struct usbhs_priv *priv;
259 struct resource *res;
260 unsigned int irq;
261 int ret;
262
263 /* check platform information */
264 if (!info ||
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900265 !info->platform_callback.get_id) {
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900266 dev_err(&pdev->dev, "no platform information\n");
267 return -EINVAL;
268 }
269
270 /* platform data */
271 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
272 irq = platform_get_irq(pdev, 0);
273 if (!res || (int)irq <= 0) {
274 dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
275 return -ENODEV;
276 }
277
278 /* usb private data */
279 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
280 if (!priv) {
281 dev_err(&pdev->dev, "Could not allocate priv\n");
282 return -ENOMEM;
283 }
284
285 priv->base = ioremap_nocache(res->start, resource_size(res));
286 if (!priv->base) {
287 dev_err(&pdev->dev, "ioremap error.\n");
288 ret = -ENOMEM;
289 goto probe_end_kfree;
290 }
291
292 /*
293 * care platform info
294 */
295 priv->pfunc = &info->platform_callback;
296 priv->dparam = &info->driver_param;
297
298 /* set driver callback functions for platform */
299 dfunc = &info->driver_callback;
300 dfunc->notify_hotplug = usbhsc_drvcllbck_notify_hotplug;
301
302 /* set default param if platform doesn't have */
303 if (!priv->dparam->pipe_type) {
304 priv->dparam->pipe_type = usbhsc_default_pipe_type;
305 priv->dparam->pipe_size = ARRAY_SIZE(usbhsc_default_pipe_type);
306 }
307
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900308 /* FIXME */
309 /* runtime power control ? */
310 if (priv->pfunc->get_vbus)
311 usbhsc_flags_set(priv, USBHSF_RUNTIME_PWCTRL);
312
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900313 /*
314 * priv settings
315 */
316 priv->irq = irq;
317 priv->pdev = pdev;
Kuninori Morimotobc573812011-04-28 16:41:14 +0900318 INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900319 spin_lock_init(usbhs_priv_to_lock(priv));
320
321 /* call pipe and module init */
322 ret = usbhs_pipe_probe(priv);
323 if (ret < 0)
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900324 goto probe_end_iounmap;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900325
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900326 ret = usbhs_fifo_probe(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900327 if (ret < 0)
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900328 goto probe_end_pipe_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900329
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900330 ret = usbhs_mod_probe(priv);
331 if (ret < 0)
332 goto probe_end_fifo_exit;
333
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900334 /* dev_set_drvdata should be called after usbhs_mod_init */
335 dev_set_drvdata(&pdev->dev, priv);
336
337 /*
338 * deviece reset here because
339 * USB device might be used in boot loader.
340 */
341 usbhs_sys_clock_ctrl(priv, 0);
342
343 /*
344 * platform call
345 *
346 * USB phy setup might depend on CPU/Board.
347 * If platform has its callback functions,
348 * call it here.
349 */
350 ret = usbhs_platform_call(priv, hardware_init, pdev);
351 if (ret < 0) {
352 dev_err(&pdev->dev, "platform prove failed.\n");
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900353 goto probe_end_mod_exit;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900354 }
355
356 /* reset phy for connection */
357 usbhs_platform_call(priv, phy_reset, pdev);
358
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900359 /* power control */
360 pm_runtime_enable(&pdev->dev);
361 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) {
362 usbhsc_power_ctrl(priv, 1);
363 usbhs_mod_autonomy_mode(priv);
364 }
365
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900366 /*
367 * manual call notify_hotplug for cold plug
368 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900369 ret = usbhsc_drvcllbck_notify_hotplug(pdev);
370 if (ret < 0)
371 goto probe_end_call_remove;
372
373 dev_info(&pdev->dev, "probed\n");
374
375 return ret;
376
377probe_end_call_remove:
378 usbhs_platform_call(priv, hardware_exit, pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900379probe_end_mod_exit:
380 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900381probe_end_fifo_exit:
382 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900383probe_end_pipe_exit:
384 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900385probe_end_iounmap:
386 iounmap(priv->base);
387probe_end_kfree:
388 kfree(priv);
389
390 dev_info(&pdev->dev, "probe failed\n");
391
392 return ret;
393}
394
395static int __devexit usbhs_remove(struct platform_device *pdev)
396{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900397 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900398 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
399 struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900400
401 dev_dbg(&pdev->dev, "usb remove\n");
402
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900403 dfunc->notify_hotplug = NULL;
404
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900405 /* power off */
406 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
407 usbhsc_power_ctrl(priv, 0);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900408
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900409 pm_runtime_disable(&pdev->dev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900410
411 usbhs_platform_call(priv, hardware_exit, pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900412 usbhs_mod_remove(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900413 usbhs_fifo_remove(priv);
Kuninori Morimoto97f93222011-05-11 16:00:15 +0900414 usbhs_pipe_remove(priv);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900415 iounmap(priv->base);
416 kfree(priv);
417
418 return 0;
419}
420
421static struct platform_driver renesas_usbhs_driver = {
422 .driver = {
423 .name = "renesas_usbhs",
424 },
425 .probe = usbhs_probe,
426 .remove = __devexit_p(usbhs_remove),
427};
428
429static int __init usbhs_init(void)
430{
431 return platform_driver_register(&renesas_usbhs_driver);
432}
433
434static void __exit usbhs_exit(void)
435{
436 platform_driver_unregister(&renesas_usbhs_driver);
437}
438
439module_init(usbhs_init);
440module_exit(usbhs_exit);
441
442MODULE_LICENSE("GPL");
443MODULE_DESCRIPTION("Renesas USB driver");
444MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");