blob: 9a75a45687bbf2b5a00daf7564bf6ef744fe6b3b [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
24/*
25 * platform call back
26 *
27 * renesas usb support platform callback function.
28 * Below macro call it.
29 * if platform doesn't have callback, it return 0 (no error)
30 */
31#define usbhs_platform_call(priv, func, args...)\
32 (!(priv) ? -ENODEV : \
33 !((priv)->pfunc->func) ? 0 : \
34 (priv)->pfunc->func(args))
35
36/*
37 * common functions
38 */
39u16 usbhs_read(struct usbhs_priv *priv, u32 reg)
40{
41 return ioread16(priv->base + reg);
42}
43
44void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data)
45{
46 iowrite16(data, priv->base + reg);
47}
48
49void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
50{
51 u16 val = usbhs_read(priv, reg);
52
53 val &= ~mask;
54 val |= data & mask;
55
56 usbhs_write(priv, reg, val);
57}
58
Kuninori Morimoto206dcc22011-04-28 16:40:54 +090059struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
60{
61 return dev_get_drvdata(&pdev->dev);
62}
63
Kuninori Morimotof1407d52011-04-04 13:44:59 +090064/*
65 * syscfg functions
66 */
67void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable)
68{
69 usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0);
70}
71
72void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable)
73{
74 usbhs_bset(priv, SYSCFG, HSE, enable ? HSE : 0);
75}
76
77void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable)
78{
79 usbhs_bset(priv, SYSCFG, USBE, enable ? USBE : 0);
80}
81
82void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable)
83{
84 u16 mask = DCFM | DRPD | DPRPU;
85 u16 val = DCFM | DRPD;
86
87 /*
88 * if enable
89 *
90 * - select Host mode
91 * - D+ Line/D- Line Pull-down
92 */
93 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
94}
95
96void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable)
97{
98 u16 mask = DCFM | DRPD | DPRPU;
99 u16 val = DPRPU;
100
101 /*
102 * if enable
103 *
104 * - select Function mode
105 * - D+ Line Pull-up
106 */
107 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
108}
109
110/*
111 * frame functions
112 */
113int usbhs_frame_get_num(struct usbhs_priv *priv)
114{
115 return usbhs_read(priv, FRMNUM) & FRNM_MASK;
116}
117
118/*
119 * local functions
120 */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900121static void usbhsc_bus_ctrl(struct usbhs_priv *priv, int enable)
122{
123 int wait = usbhs_get_dparam(priv, buswait_bwait);
124 u16 data = 0;
125
126 if (enable) {
127 /* set bus wait if platform have */
128 if (wait)
129 usbhs_bset(priv, BUSWAIT, 0x000F, wait);
130 }
131 usbhs_write(priv, DVSTCTR, data);
132}
133
134/*
135 * platform default param
136 */
137static u32 usbhsc_default_pipe_type[] = {
138 USB_ENDPOINT_XFER_CONTROL,
139 USB_ENDPOINT_XFER_ISOC,
140 USB_ENDPOINT_XFER_ISOC,
141 USB_ENDPOINT_XFER_BULK,
142 USB_ENDPOINT_XFER_BULK,
143 USB_ENDPOINT_XFER_BULK,
144 USB_ENDPOINT_XFER_INT,
145 USB_ENDPOINT_XFER_INT,
146 USB_ENDPOINT_XFER_INT,
147 USB_ENDPOINT_XFER_INT,
148};
149
150/*
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900151 * power control
152 */
153static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable)
154{
155 struct device *dev = usbhs_priv_to_dev(priv);
156
157 if (enable) {
158 /* enable PM */
159 pm_runtime_get_sync(dev);
160
161 /* USB on */
162 usbhs_sys_clock_ctrl(priv, enable);
163 usbhsc_bus_ctrl(priv, enable);
164 } else {
165 /* USB off */
166 usbhsc_bus_ctrl(priv, enable);
167 usbhs_sys_clock_ctrl(priv, enable);
168
169 /* disable PM */
170 pm_runtime_put_sync(dev);
171 }
172}
173
174/*
175 * notify hotplug
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900176 */
177static void usbhsc_notify_hotplug(struct work_struct *work)
178{
179 struct usbhs_priv *priv = container_of(work,
180 struct usbhs_priv,
Kuninori Morimotobc573812011-04-28 16:41:14 +0900181 notify_hotplug_work.work);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900182 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
183 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
184 int id;
185 int enable;
186 int ret;
187
188 /*
189 * get vbus status from platform
190 */
191 enable = usbhs_platform_call(priv, get_vbus, pdev);
192
193 /*
194 * get id from platform
195 */
196 id = usbhs_platform_call(priv, get_id, pdev);
197
198 if (enable && !mod) {
199 ret = usbhs_mod_change(priv, id);
200 if (ret < 0)
201 return;
202
203 dev_dbg(&pdev->dev, "%s enable\n", __func__);
204
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900205 /* power on */
206 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900207
208 /* module start */
209 usbhs_mod_call(priv, start, priv);
210
211 } else if (!enable && mod) {
212 dev_dbg(&pdev->dev, "%s disable\n", __func__);
213
214 /* module stop */
215 usbhs_mod_call(priv, stop, priv);
216
Kuninori Morimoto6e267da2011-04-28 16:41:02 +0900217 /* power off */
218 usbhsc_power_ctrl(priv, enable);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900219
220 usbhs_mod_change(priv, -1);
221
222 /* reset phy for next connection */
223 usbhs_platform_call(priv, phy_reset, pdev);
224 }
225}
226
Kuninori Morimotobc573812011-04-28 16:41:14 +0900227int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900228{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900229 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotobc573812011-04-28 16:41:14 +0900230 int delay = usbhs_get_dparam(priv, detection_delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900231
232 /*
233 * This functions will be called in interrupt.
234 * To make sure safety context,
235 * use workqueue for usbhs_notify_hotplug
236 */
Kuninori Morimotobc573812011-04-28 16:41:14 +0900237 schedule_delayed_work(&priv->notify_hotplug_work, delay);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900238 return 0;
239}
240
241/*
242 * platform functions
243 */
244static int __devinit usbhs_probe(struct platform_device *pdev)
245{
246 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
247 struct renesas_usbhs_driver_callback *dfunc;
248 struct usbhs_priv *priv;
249 struct resource *res;
250 unsigned int irq;
251 int ret;
252
253 /* check platform information */
254 if (!info ||
255 !info->platform_callback.get_id ||
256 !info->platform_callback.get_vbus) {
257 dev_err(&pdev->dev, "no platform information\n");
258 return -EINVAL;
259 }
260
261 /* platform data */
262 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
263 irq = platform_get_irq(pdev, 0);
264 if (!res || (int)irq <= 0) {
265 dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
266 return -ENODEV;
267 }
268
269 /* usb private data */
270 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
271 if (!priv) {
272 dev_err(&pdev->dev, "Could not allocate priv\n");
273 return -ENOMEM;
274 }
275
276 priv->base = ioremap_nocache(res->start, resource_size(res));
277 if (!priv->base) {
278 dev_err(&pdev->dev, "ioremap error.\n");
279 ret = -ENOMEM;
280 goto probe_end_kfree;
281 }
282
283 /*
284 * care platform info
285 */
286 priv->pfunc = &info->platform_callback;
287 priv->dparam = &info->driver_param;
288
289 /* set driver callback functions for platform */
290 dfunc = &info->driver_callback;
291 dfunc->notify_hotplug = usbhsc_drvcllbck_notify_hotplug;
292
293 /* set default param if platform doesn't have */
294 if (!priv->dparam->pipe_type) {
295 priv->dparam->pipe_type = usbhsc_default_pipe_type;
296 priv->dparam->pipe_size = ARRAY_SIZE(usbhsc_default_pipe_type);
297 }
298
299 /*
300 * priv settings
301 */
302 priv->irq = irq;
303 priv->pdev = pdev;
Kuninori Morimotobc573812011-04-28 16:41:14 +0900304 INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900305 spin_lock_init(usbhs_priv_to_lock(priv));
306
307 /* call pipe and module init */
308 ret = usbhs_pipe_probe(priv);
309 if (ret < 0)
310 goto probe_end_mod_exit;
311
312 ret = usbhs_mod_probe(priv);
313 if (ret < 0)
314 goto probe_end_iounmap;
315
316 /* dev_set_drvdata should be called after usbhs_mod_init */
317 dev_set_drvdata(&pdev->dev, priv);
318
319 /*
320 * deviece reset here because
321 * USB device might be used in boot loader.
322 */
323 usbhs_sys_clock_ctrl(priv, 0);
324
325 /*
326 * platform call
327 *
328 * USB phy setup might depend on CPU/Board.
329 * If platform has its callback functions,
330 * call it here.
331 */
332 ret = usbhs_platform_call(priv, hardware_init, pdev);
333 if (ret < 0) {
334 dev_err(&pdev->dev, "platform prove failed.\n");
335 goto probe_end_pipe_exit;
336 }
337
338 /* reset phy for connection */
339 usbhs_platform_call(priv, phy_reset, pdev);
340
341 /*
342 * manual call notify_hotplug for cold plug
343 */
344 pm_runtime_enable(&pdev->dev);
345 ret = usbhsc_drvcllbck_notify_hotplug(pdev);
346 if (ret < 0)
347 goto probe_end_call_remove;
348
349 dev_info(&pdev->dev, "probed\n");
350
351 return ret;
352
353probe_end_call_remove:
354 usbhs_platform_call(priv, hardware_exit, pdev);
355probe_end_pipe_exit:
356 usbhs_pipe_remove(priv);
357probe_end_mod_exit:
358 usbhs_mod_remove(priv);
359probe_end_iounmap:
360 iounmap(priv->base);
361probe_end_kfree:
362 kfree(priv);
363
364 dev_info(&pdev->dev, "probe failed\n");
365
366 return ret;
367}
368
369static int __devexit usbhs_remove(struct platform_device *pdev)
370{
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900371 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900372 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
373 struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900374
375 dev_dbg(&pdev->dev, "usb remove\n");
376
Kuninori Morimotoaf32fe52011-04-21 14:10:16 +0900377 dfunc->notify_hotplug = NULL;
378
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900379 pm_runtime_disable(&pdev->dev);
380
381 usbhsc_bus_ctrl(priv, 0);
382
383 usbhs_platform_call(priv, hardware_exit, pdev);
384 usbhs_pipe_remove(priv);
385 usbhs_mod_remove(priv);
386 iounmap(priv->base);
387 kfree(priv);
388
389 return 0;
390}
391
392static struct platform_driver renesas_usbhs_driver = {
393 .driver = {
394 .name = "renesas_usbhs",
395 },
396 .probe = usbhs_probe,
397 .remove = __devexit_p(usbhs_remove),
398};
399
400static int __init usbhs_init(void)
401{
402 return platform_driver_register(&renesas_usbhs_driver);
403}
404
405static void __exit usbhs_exit(void)
406{
407 platform_driver_unregister(&renesas_usbhs_driver);
408}
409
410module_init(usbhs_init);
411module_exit(usbhs_exit);
412
413MODULE_LICENSE("GPL");
414MODULE_DESCRIPTION("Renesas USB driver");
415MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");