blob: ca6831c5b763053d146d8c7bbae2f10d85e3c3d1 [file] [log] [blame]
Alexander Shishkine443b332012-05-11 17:25:46 +03001/*
2 * core.c - ChipIdea USB IP core family device controller
3 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13/*
14 * Description: ChipIdea USB IP core family device controller
15 *
16 * This driver is composed of several blocks:
17 * - HW: hardware interface
18 * - DBG: debug facilities (optional)
19 * - UTIL: utilities
20 * - ISR: interrupts handling
21 * - ENDPT: endpoint operations (Gadget API)
22 * - GADGET: gadget operations (Gadget API)
23 * - BUS: bus glue code, bus abstraction layer
24 *
25 * Compile Options
26 * - CONFIG_USB_GADGET_DEBUG_FILES: enable debug facilities
27 * - STALL_IN: non-empty bulk-in pipes cannot be halted
28 * if defined mass storage compliance succeeds but with warnings
29 * => case 4: Hi > Dn
30 * => case 5: Hi > Di
31 * => case 8: Hi <> Do
32 * if undefined usbtest 13 fails
33 * - TRACE: enable function tracing (depends on DEBUG)
34 *
35 * Main Features
36 * - Chapter 9 & Mass Storage Compliance with Gadget File Storage
37 * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined)
38 * - Normal & LPM support
39 *
40 * USBTEST Report
41 * - OK: 0-12, 13 (STALL_IN defined) & 14
42 * - Not Supported: 15 & 16 (ISO)
43 *
44 * TODO List
45 * - OTG
Michael Grzeschike4ce4ec2013-06-13 17:59:47 +030046 * - Interrupt Traffic
Alexander Shishkine443b332012-05-11 17:25:46 +030047 * - GET_STATUS(device) - always reports 0
48 * - Gadget API (majority of optional features)
49 * - Suspend & Remote Wakeup
50 */
51#include <linux/delay.h>
52#include <linux/device.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030053#include <linux/dma-mapping.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030054#include <linux/platform_device.h>
55#include <linux/module.h>
Richard Zhaofe6e1252012-07-07 22:56:42 +080056#include <linux/idr.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030057#include <linux/interrupt.h>
58#include <linux/io.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030059#include <linux/kernel.h>
60#include <linux/slab.h>
61#include <linux/pm_runtime.h>
62#include <linux/usb/ch9.h>
63#include <linux/usb/gadget.h>
64#include <linux/usb/otg.h>
65#include <linux/usb/chipidea.h>
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +030066#include <linux/usb/of.h>
Michael Grzeschik4f6743d2014-02-19 13:41:43 +080067#include <linux/of.h>
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +030068#include <linux/phy.h>
Peter Chen1542d9c2013-08-14 12:44:03 +030069#include <linux/regulator/consumer.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030070
71#include "ci.h"
72#include "udc.h"
73#include "bits.h"
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030074#include "host.h"
Alexander Shishkine443b332012-05-11 17:25:46 +030075#include "debug.h"
Peter Chenc10b4f02013-08-14 12:44:06 +030076#include "otg.h"
Alexander Shishkine443b332012-05-11 17:25:46 +030077
Alexander Shishkin5f36e232012-05-11 17:25:47 +030078/* Controller register map */
Marc Kleine-Budde987e7bc2014-01-06 10:10:39 +080079static const u8 ci_regs_nolpm[] = {
80 [CAP_CAPLENGTH] = 0x00U,
81 [CAP_HCCPARAMS] = 0x08U,
82 [CAP_DCCPARAMS] = 0x24U,
83 [CAP_TESTMODE] = 0x38U,
84 [OP_USBCMD] = 0x00U,
85 [OP_USBSTS] = 0x04U,
86 [OP_USBINTR] = 0x08U,
87 [OP_DEVICEADDR] = 0x14U,
88 [OP_ENDPTLISTADDR] = 0x18U,
89 [OP_PORTSC] = 0x44U,
90 [OP_DEVLC] = 0x84U,
91 [OP_OTGSC] = 0x64U,
92 [OP_USBMODE] = 0x68U,
93 [OP_ENDPTSETUPSTAT] = 0x6CU,
94 [OP_ENDPTPRIME] = 0x70U,
95 [OP_ENDPTFLUSH] = 0x74U,
96 [OP_ENDPTSTAT] = 0x78U,
97 [OP_ENDPTCOMPLETE] = 0x7CU,
98 [OP_ENDPTCTRL] = 0x80U,
Alexander Shishkine443b332012-05-11 17:25:46 +030099};
100
Marc Kleine-Budde987e7bc2014-01-06 10:10:39 +0800101static const u8 ci_regs_lpm[] = {
102 [CAP_CAPLENGTH] = 0x00U,
103 [CAP_HCCPARAMS] = 0x08U,
104 [CAP_DCCPARAMS] = 0x24U,
105 [CAP_TESTMODE] = 0xFCU,
106 [OP_USBCMD] = 0x00U,
107 [OP_USBSTS] = 0x04U,
108 [OP_USBINTR] = 0x08U,
109 [OP_DEVICEADDR] = 0x14U,
110 [OP_ENDPTLISTADDR] = 0x18U,
111 [OP_PORTSC] = 0x44U,
112 [OP_DEVLC] = 0x84U,
113 [OP_OTGSC] = 0xC4U,
114 [OP_USBMODE] = 0xC8U,
115 [OP_ENDPTSETUPSTAT] = 0xD8U,
116 [OP_ENDPTPRIME] = 0xDCU,
117 [OP_ENDPTFLUSH] = 0xE0U,
118 [OP_ENDPTSTAT] = 0xE4U,
119 [OP_ENDPTCOMPLETE] = 0xE8U,
120 [OP_ENDPTCTRL] = 0xECU,
Alexander Shishkine443b332012-05-11 17:25:46 +0300121};
122
Alexander Shishkin8e229782013-06-24 14:46:36 +0300123static int hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm)
Alexander Shishkine443b332012-05-11 17:25:46 +0300124{
125 int i;
126
Alexander Shishkine443b332012-05-11 17:25:46 +0300127 for (i = 0; i < OP_ENDPTCTRL; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300128 ci->hw_bank.regmap[i] =
129 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) +
Alexander Shishkine443b332012-05-11 17:25:46 +0300130 (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]);
131
132 for (; i <= OP_LAST; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300133 ci->hw_bank.regmap[i] = ci->hw_bank.op +
Alexander Shishkine443b332012-05-11 17:25:46 +0300134 4 * (i - OP_ENDPTCTRL) +
135 (is_lpm
136 ? ci_regs_lpm[OP_ENDPTCTRL]
137 : ci_regs_nolpm[OP_ENDPTCTRL]);
138
139 return 0;
140}
141
142/**
143 * hw_port_test_set: writes port test mode (execute without interruption)
144 * @mode: new value
145 *
146 * This function returns an error code
147 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300148int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300149{
150 const u8 TEST_MODE_MAX = 7;
151
152 if (mode > TEST_MODE_MAX)
153 return -EINVAL;
154
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200155 hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
Alexander Shishkine443b332012-05-11 17:25:46 +0300156 return 0;
157}
158
159/**
160 * hw_port_test_get: reads port test mode value
161 *
162 * This function returns port test mode value
163 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300164u8 hw_port_test_get(struct ci_hdrc *ci)
Alexander Shishkine443b332012-05-11 17:25:46 +0300165{
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200166 return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
Alexander Shishkine443b332012-05-11 17:25:46 +0300167}
168
Peter Chen864cf942013-09-24 12:47:55 +0800169/* The PHY enters/leaves low power mode */
170static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable)
171{
172 enum ci_hw_regs reg = ci->hw_bank.lpm ? OP_DEVLC : OP_PORTSC;
173 bool lpm = !!(hw_read(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm)));
174
175 if (enable && !lpm) {
176 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
177 PORTSC_PHCD(ci->hw_bank.lpm));
178 } else if (!enable && lpm) {
179 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
180 0);
181 /*
182 * The controller needs at least 1ms to reflect
183 * PHY's status, the PHY also needs some time (less
184 * than 1ms) to leave low power mode.
185 */
186 usleep_range(1500, 2000);
187 }
188}
189
Alexander Shishkin8e229782013-06-24 14:46:36 +0300190static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
Alexander Shishkine443b332012-05-11 17:25:46 +0300191{
192 u32 reg;
193
194 /* bank is a module variable */
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300195 ci->hw_bank.abs = base;
Alexander Shishkine443b332012-05-11 17:25:46 +0300196
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300197 ci->hw_bank.cap = ci->hw_bank.abs;
Richard Zhao77c44002012-06-29 17:48:53 +0800198 ci->hw_bank.cap += ci->platdata->capoffset;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200199 ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff);
Alexander Shishkine443b332012-05-11 17:25:46 +0300200
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300201 hw_alloc_regmap(ci, false);
202 reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200203 __ffs(HCCPARAMS_LEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300204 ci->hw_bank.lpm = reg;
Chris Ruehlaeb2c122013-12-06 16:35:12 +0800205 if (reg)
206 hw_alloc_regmap(ci, !!reg);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300207 ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs;
208 ci->hw_bank.size += OP_LAST;
209 ci->hw_bank.size /= sizeof(u32);
Alexander Shishkine443b332012-05-11 17:25:46 +0300210
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300211 reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200212 __ffs(DCCPARAMS_DEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300213 ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
Alexander Shishkine443b332012-05-11 17:25:46 +0300214
Richard Zhao09c94e62012-05-15 21:58:18 +0800215 if (ci->hw_ep_max > ENDPT_MAX)
Alexander Shishkine443b332012-05-11 17:25:46 +0300216 return -ENODEV;
217
Peter Chen864cf942013-09-24 12:47:55 +0800218 ci_hdrc_enter_lpm(ci, false);
219
Peter Chenc344b512013-08-14 12:44:09 +0300220 /* Disable all interrupts bits */
221 hw_write(ci, OP_USBINTR, 0xffffffff, 0);
222
223 /* Clear all interrupts status bits*/
224 hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff);
225
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300226 dev_dbg(ci->dev, "ChipIdea HDRC found, lpm: %d; cap: %p op: %p\n",
227 ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op);
Alexander Shishkine443b332012-05-11 17:25:46 +0300228
229 /* setup lock mode ? */
230
231 /* ENDPTSETUPSTAT is '0' by default */
232
233 /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
234
235 return 0;
236}
237
Alexander Shishkin8e229782013-06-24 14:46:36 +0300238static void hw_phymode_configure(struct ci_hdrc *ci)
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300239{
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800240 u32 portsc, lpm, sts = 0;
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300241
242 switch (ci->platdata->phy_mode) {
243 case USBPHY_INTERFACE_MODE_UTMI:
244 portsc = PORTSC_PTS(PTS_UTMI);
245 lpm = DEVLC_PTS(PTS_UTMI);
246 break;
247 case USBPHY_INTERFACE_MODE_UTMIW:
248 portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW;
249 lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW;
250 break;
251 case USBPHY_INTERFACE_MODE_ULPI:
252 portsc = PORTSC_PTS(PTS_ULPI);
253 lpm = DEVLC_PTS(PTS_ULPI);
254 break;
255 case USBPHY_INTERFACE_MODE_SERIAL:
256 portsc = PORTSC_PTS(PTS_SERIAL);
257 lpm = DEVLC_PTS(PTS_SERIAL);
258 sts = 1;
259 break;
260 case USBPHY_INTERFACE_MODE_HSIC:
261 portsc = PORTSC_PTS(PTS_HSIC);
262 lpm = DEVLC_PTS(PTS_HSIC);
263 break;
264 default:
265 return;
266 }
267
268 if (ci->hw_bank.lpm) {
269 hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm);
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800270 if (sts)
271 hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS);
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300272 } else {
273 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800274 if (sts)
275 hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS);
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300276 }
277}
278
Alexander Shishkine443b332012-05-11 17:25:46 +0300279/**
280 * hw_device_reset: resets chip (execute without interruption)
281 * @ci: the controller
282 *
283 * This function returns an error code
284 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300285int hw_device_reset(struct ci_hdrc *ci, u32 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300286{
287 /* should flush & stop before reset */
288 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
289 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
290
291 hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
292 while (hw_read(ci, OP_USBCMD, USBCMD_RST))
293 udelay(10); /* not RTOS friendly */
294
Richard Zhao77c44002012-06-29 17:48:53 +0800295 if (ci->platdata->notify_event)
296 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300297 CI_HDRC_CONTROLLER_RESET_EVENT);
Alexander Shishkine443b332012-05-11 17:25:46 +0300298
Alexander Shishkin8e229782013-06-24 14:46:36 +0300299 if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING)
Alexander Shishkin758fc982012-05-11 17:25:53 +0300300 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
Alexander Shishkine443b332012-05-11 17:25:46 +0300301
Michael Grzeschik4f6743d2014-02-19 13:41:43 +0800302 if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) {
303 if (ci->hw_bank.lpm)
304 hw_write(ci, OP_DEVLC, DEVLC_PFSC, DEVLC_PFSC);
305 else
306 hw_write(ci, OP_PORTSC, PORTSC_PFSC, PORTSC_PFSC);
307 }
308
Alexander Shishkine443b332012-05-11 17:25:46 +0300309 /* USBMODE should be configured step by step */
310 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300311 hw_write(ci, OP_USBMODE, USBMODE_CM, mode);
Alexander Shishkine443b332012-05-11 17:25:46 +0300312 /* HW >= 2.3 */
313 hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
314
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300315 if (hw_read(ci, OP_USBMODE, USBMODE_CM) != mode) {
316 pr_err("cannot enter in %s mode", ci_role(ci)->name);
Alexander Shishkine443b332012-05-11 17:25:46 +0300317 pr_err("lpm = %i", ci->hw_bank.lpm);
318 return -ENODEV;
319 }
320
321 return 0;
322}
323
Peter Chen22fa8442013-08-14 12:44:12 +0300324/**
325 * hw_wait_reg: wait the register value
326 *
327 * Sometimes, it needs to wait register value before going on.
328 * Eg, when switch to device mode, the vbus value should be lower
329 * than OTGSC_BSV before connects to host.
330 *
331 * @ci: the controller
332 * @reg: register index
333 * @mask: mast bit
334 * @value: the bit value to wait
335 * @timeout_ms: timeout in millisecond
336 *
337 * This function returns an error code if timeout
338 */
339int hw_wait_reg(struct ci_hdrc *ci, enum ci_hw_regs reg, u32 mask,
340 u32 value, unsigned int timeout_ms)
341{
342 unsigned long elapse = jiffies + msecs_to_jiffies(timeout_ms);
343
344 while (hw_read(ci, reg, mask) != value) {
345 if (time_after(jiffies, elapse)) {
346 dev_err(ci->dev, "timeout waiting for %08x in %d\n",
347 mask, reg);
348 return -ETIMEDOUT;
349 }
350 msleep(20);
351 }
352
353 return 0;
354}
355
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300356static irqreturn_t ci_irq(int irq, void *data)
357{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300358 struct ci_hdrc *ci = data;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300359 irqreturn_t ret = IRQ_NONE;
Richard Zhaob183c192012-09-12 14:58:11 +0300360 u32 otgsc = 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300361
Richard Zhaob183c192012-09-12 14:58:11 +0300362 if (ci->is_otg)
363 otgsc = hw_read(ci, OP_OTGSC, ~0);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300364
Peter Chena107f8c2013-08-14 12:44:11 +0300365 /*
366 * Handle id change interrupt, it indicates device/host function
367 * switch.
368 */
369 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
370 ci->id_event = true;
371 ci_clear_otg_interrupt(ci, OTGSC_IDIS);
Richard Zhaob183c192012-09-12 14:58:11 +0300372 disable_irq_nosync(ci->irq);
373 queue_work(ci->wq, &ci->work);
Peter Chena107f8c2013-08-14 12:44:11 +0300374 return IRQ_HANDLED;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300375 }
376
Peter Chena107f8c2013-08-14 12:44:11 +0300377 /*
378 * Handle vbus change interrupt, it indicates device connection
379 * and disconnection events.
380 */
381 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
382 ci->b_sess_valid_event = true;
383 ci_clear_otg_interrupt(ci, OTGSC_BSVIS);
384 disable_irq_nosync(ci->irq);
385 queue_work(ci->wq, &ci->work);
386 return IRQ_HANDLED;
387 }
388
389 /* Handle device/host interrupt */
390 if (ci->role != CI_ROLE_END)
391 ret = ci_role(ci)->irq(ci);
392
Richard Zhaob183c192012-09-12 14:58:11 +0300393 return ret;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300394}
395
Peter Chen1542d9c2013-08-14 12:44:03 +0300396static int ci_get_platdata(struct device *dev,
397 struct ci_hdrc_platform_data *platdata)
398{
Peter Chenc22600c2013-09-17 12:37:22 +0800399 if (!platdata->phy_mode)
400 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
401
402 if (!platdata->dr_mode)
403 platdata->dr_mode = of_usb_get_dr_mode(dev->of_node);
404
405 if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
406 platdata->dr_mode = USB_DR_MODE_OTG;
407
Peter Chenc2ec3a72013-10-30 09:19:29 +0800408 if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
409 /* Get the vbus regulator */
410 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
411 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
412 return -EPROBE_DEFER;
413 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
414 /* no vbus regualator is needed */
415 platdata->reg_vbus = NULL;
416 } else if (IS_ERR(platdata->reg_vbus)) {
417 dev_err(dev, "Getting regulator error: %ld\n",
418 PTR_ERR(platdata->reg_vbus));
419 return PTR_ERR(platdata->reg_vbus);
420 }
421 }
422
Michael Grzeschik4f6743d2014-02-19 13:41:43 +0800423 if (of_usb_get_maximum_speed(dev->of_node) == USB_SPEED_FULL)
424 platdata->flags |= CI_HDRC_FORCE_FULLSPEED;
425
Peter Chen1542d9c2013-08-14 12:44:03 +0300426 return 0;
427}
428
Richard Zhaofe6e1252012-07-07 22:56:42 +0800429static DEFINE_IDA(ci_ida);
430
Alexander Shishkin8e229782013-06-24 14:46:36 +0300431struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800432 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300433 struct ci_hdrc_platform_data *platdata)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800434{
435 struct platform_device *pdev;
Richard Zhaofe6e1252012-07-07 22:56:42 +0800436 int id, ret;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800437
Peter Chen1542d9c2013-08-14 12:44:03 +0300438 ret = ci_get_platdata(dev, platdata);
439 if (ret)
440 return ERR_PTR(ret);
441
Richard Zhaofe6e1252012-07-07 22:56:42 +0800442 id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
443 if (id < 0)
444 return ERR_PTR(id);
445
446 pdev = platform_device_alloc("ci_hdrc", id);
447 if (!pdev) {
448 ret = -ENOMEM;
449 goto put_id;
450 }
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800451
452 pdev->dev.parent = dev;
453 pdev->dev.dma_mask = dev->dma_mask;
454 pdev->dev.dma_parms = dev->dma_parms;
455 dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask);
456
457 ret = platform_device_add_resources(pdev, res, nres);
458 if (ret)
459 goto err;
460
461 ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
462 if (ret)
463 goto err;
464
465 ret = platform_device_add(pdev);
466 if (ret)
467 goto err;
468
469 return pdev;
470
471err:
472 platform_device_put(pdev);
Richard Zhaofe6e1252012-07-07 22:56:42 +0800473put_id:
474 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800475 return ERR_PTR(ret);
476}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300477EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800478
Alexander Shishkin8e229782013-06-24 14:46:36 +0300479void ci_hdrc_remove_device(struct platform_device *pdev)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800480{
Lothar Waßmann98c35532012-11-22 10:11:25 +0100481 int id = pdev->id;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800482 platform_device_unregister(pdev);
Lothar Waßmann98c35532012-11-22 10:11:25 +0100483 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800484}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300485EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800486
Peter Chen3f124d22013-08-14 12:44:07 +0300487static inline void ci_role_destroy(struct ci_hdrc *ci)
488{
489 ci_hdrc_gadget_destroy(ci);
490 ci_hdrc_host_destroy(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300491 if (ci->is_otg)
492 ci_hdrc_otg_destroy(ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300493}
494
Peter Chen577b2322013-08-14 12:44:08 +0300495static void ci_get_otg_capable(struct ci_hdrc *ci)
496{
497 if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
498 ci->is_otg = false;
499 else
500 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
501 DCCPARAMS_DC | DCCPARAMS_HC)
502 == (DCCPARAMS_DC | DCCPARAMS_HC));
Peter Chenc344b512013-08-14 12:44:09 +0300503 if (ci->is_otg) {
Peter Chen577b2322013-08-14 12:44:08 +0300504 dev_dbg(ci->dev, "It is OTG capable controller\n");
Peter Chenc344b512013-08-14 12:44:09 +0300505 ci_disable_otg_interrupt(ci, OTGSC_INT_EN_BITS);
506 ci_clear_otg_interrupt(ci, OTGSC_INT_STATUS_BITS);
507 }
Peter Chen577b2322013-08-14 12:44:08 +0300508}
509
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500510static int ci_hdrc_probe(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300511{
512 struct device *dev = &pdev->dev;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300513 struct ci_hdrc *ci;
Alexander Shishkine443b332012-05-11 17:25:46 +0300514 struct resource *res;
515 void __iomem *base;
516 int ret;
Sascha Hauer691962d2013-06-13 17:59:57 +0300517 enum usb_dr_mode dr_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +0300518
Jingoo Hanfad56742014-02-19 13:41:42 +0800519 if (!dev_get_platdata(dev)) {
Alexander Shishkine443b332012-05-11 17:25:46 +0300520 dev_err(dev, "platform data missing\n");
521 return -ENODEV;
522 }
523
524 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbi19290812013-03-30 02:46:27 +0200525 base = devm_ioremap_resource(dev, res);
526 if (IS_ERR(base))
527 return PTR_ERR(base);
Alexander Shishkine443b332012-05-11 17:25:46 +0300528
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300529 ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
530 if (!ci) {
531 dev_err(dev, "can't allocate device\n");
532 return -ENOMEM;
Alexander Shishkine443b332012-05-11 17:25:46 +0300533 }
534
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300535 ci->dev = dev;
Jingoo Hanfad56742014-02-19 13:41:42 +0800536 ci->platdata = dev_get_platdata(dev);
Peter Chened8f8312014-01-10 13:51:27 +0800537 ci->imx28_write_fix = !!(ci->platdata->flags &
538 CI_HDRC_IMX28_WRITE_FIX);
Alexander Shishkine443b332012-05-11 17:25:46 +0300539
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300540 ret = hw_device_init(ci, base);
541 if (ret < 0) {
542 dev_err(dev, "can't initialize hardware\n");
543 return -ENODEV;
544 }
545
Chris Ruehlcd0b42c2014-01-10 13:51:30 +0800546 hw_phymode_configure(ci);
547
Peter Chenc859aa652014-02-19 13:41:40 +0800548 if (ci->platdata->phy)
549 ci->transceiver = ci->platdata->phy;
550 else
551 ci->transceiver = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
552
553 if (IS_ERR(ci->transceiver)) {
554 ret = PTR_ERR(ci->transceiver);
555 /*
556 * if -ENXIO is returned, it means PHY layer wasn't
557 * enabled, so it makes no sense to return -EPROBE_DEFER
558 * in that case, since no PHY driver will ever probe.
559 */
560 if (ret == -ENXIO)
561 return ret;
562
563 dev_err(dev, "no usb2 phy configured\n");
564 return -EPROBE_DEFER;
565 }
566
567 ret = usb_phy_init(ci->transceiver);
Peter Chen74475ed2013-09-24 12:47:53 +0800568 if (ret) {
569 dev_err(dev, "unable to init phy: %d\n", ret);
570 return ret;
571 }
572
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300573 ci->hw_bank.phys = res->start;
574
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300575 ci->irq = platform_get_irq(pdev, 0);
576 if (ci->irq < 0) {
577 dev_err(dev, "missing IRQ\n");
Fabio Estevam42d18212014-02-19 13:41:44 +0800578 ret = ci->irq;
Peter Chenc859aa652014-02-19 13:41:40 +0800579 goto deinit_phy;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300580 }
581
Peter Chen577b2322013-08-14 12:44:08 +0300582 ci_get_otg_capable(ci);
583
Sascha Hauer691962d2013-06-13 17:59:57 +0300584 dr_mode = ci->platdata->dr_mode;
585 /* initialize role(s) before the interrupt is requested */
586 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) {
587 ret = ci_hdrc_host_init(ci);
588 if (ret)
589 dev_info(dev, "doesn't support host\n");
590 }
591
592 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) {
593 ret = ci_hdrc_gadget_init(ci);
594 if (ret)
595 dev_info(dev, "doesn't support gadget\n");
596 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300597
598 if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
599 dev_err(dev, "no supported roles\n");
Peter Chen74475ed2013-09-24 12:47:53 +0800600 ret = -ENODEV;
Peter Chenc859aa652014-02-19 13:41:40 +0800601 goto deinit_phy;
Peter Chencbec6bd2013-08-14 12:44:10 +0300602 }
603
604 if (ci->is_otg) {
605 ret = ci_hdrc_otg_init(ci);
606 if (ret) {
607 dev_err(dev, "init otg fails, ret = %d\n", ret);
608 goto stop;
609 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300610 }
611
612 if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
Peter Chen577b2322013-08-14 12:44:08 +0300613 if (ci->is_otg) {
614 /*
615 * ID pin needs 1ms debouce time,
616 * we delay 2ms for safe.
617 */
618 mdelay(2);
619 ci->role = ci_otg_role(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300620 ci_enable_otg_interrupt(ci, OTGSC_IDIE);
Peter Chen577b2322013-08-14 12:44:08 +0300621 } else {
622 /*
623 * If the controller is not OTG capable, but support
624 * role switch, the defalt role is gadget, and the
625 * user can switch it through debugfs.
626 */
627 ci->role = CI_ROLE_GADGET;
628 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300629 } else {
630 ci->role = ci->roles[CI_ROLE_HOST]
631 ? CI_ROLE_HOST
632 : CI_ROLE_GADGET;
633 }
634
Peter Chen5a1e1452013-12-05 15:20:50 +0800635 /* only update vbus status for peripheral */
636 if (ci->role == CI_ROLE_GADGET)
637 ci_handle_vbus_change(ci);
638
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300639 ret = ci_role_start(ci, ci->role);
640 if (ret) {
641 dev_err(dev, "can't start %s role\n", ci_role(ci)->name);
Peter Chencbec6bd2013-08-14 12:44:10 +0300642 goto stop;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300643 }
644
645 platform_set_drvdata(pdev, ci);
Richard Zhao77c44002012-06-29 17:48:53 +0800646 ret = request_irq(ci->irq, ci_irq, IRQF_SHARED, ci->platdata->name,
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300647 ci);
648 if (ret)
649 goto stop;
650
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200651 ret = dbg_create_files(ci);
652 if (!ret)
653 return 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300654
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200655 free_irq(ci->irq, ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300656stop:
Peter Chen3f124d22013-08-14 12:44:07 +0300657 ci_role_destroy(ci);
Peter Chenc859aa652014-02-19 13:41:40 +0800658deinit_phy:
659 usb_phy_shutdown(ci->transceiver);
Alexander Shishkine443b332012-05-11 17:25:46 +0300660
661 return ret;
662}
663
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500664static int ci_hdrc_remove(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300665{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300666 struct ci_hdrc *ci = platform_get_drvdata(pdev);
Alexander Shishkine443b332012-05-11 17:25:46 +0300667
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200668 dbg_remove_files(ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300669 free_irq(ci->irq, ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300670 ci_role_destroy(ci);
Peter Chen864cf942013-09-24 12:47:55 +0800671 ci_hdrc_enter_lpm(ci, true);
Peter Chenc859aa652014-02-19 13:41:40 +0800672 usb_phy_shutdown(ci->transceiver);
673 kfree(ci->hw_bank.regmap);
Alexander Shishkine443b332012-05-11 17:25:46 +0300674
675 return 0;
676}
677
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300678static struct platform_driver ci_hdrc_driver = {
679 .probe = ci_hdrc_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500680 .remove = ci_hdrc_remove,
Alexander Shishkine443b332012-05-11 17:25:46 +0300681 .driver = {
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300682 .name = "ci_hdrc",
Alexander Shishkine443b332012-05-11 17:25:46 +0300683 },
684};
685
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300686module_platform_driver(ci_hdrc_driver);
Alexander Shishkine443b332012-05-11 17:25:46 +0300687
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300688MODULE_ALIAS("platform:ci_hdrc");
Alexander Shishkine443b332012-05-11 17:25:46 +0300689MODULE_LICENSE("GPL v2");
690MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>");
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300691MODULE_DESCRIPTION("ChipIdea HDRC Driver");