blob: 47b4bd860b65ad8fa5c469eeca4cb087fec7cdae [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>
67#include <linux/phy.h>
Peter Chen1542d9c2013-08-14 12:44:03 +030068#include <linux/regulator/consumer.h>
Alexander Shishkine443b332012-05-11 17:25:46 +030069
70#include "ci.h"
71#include "udc.h"
72#include "bits.h"
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030073#include "host.h"
Alexander Shishkine443b332012-05-11 17:25:46 +030074#include "debug.h"
Peter Chenc10b4f02013-08-14 12:44:06 +030075#include "otg.h"
Alexander Shishkine443b332012-05-11 17:25:46 +030076
Alexander Shishkin5f36e232012-05-11 17:25:47 +030077/* Controller register map */
Marc Kleine-Budde987e7bc2014-01-06 10:10:39 +080078static const u8 ci_regs_nolpm[] = {
79 [CAP_CAPLENGTH] = 0x00U,
80 [CAP_HCCPARAMS] = 0x08U,
81 [CAP_DCCPARAMS] = 0x24U,
82 [CAP_TESTMODE] = 0x38U,
83 [OP_USBCMD] = 0x00U,
84 [OP_USBSTS] = 0x04U,
85 [OP_USBINTR] = 0x08U,
86 [OP_DEVICEADDR] = 0x14U,
87 [OP_ENDPTLISTADDR] = 0x18U,
88 [OP_PORTSC] = 0x44U,
89 [OP_DEVLC] = 0x84U,
90 [OP_OTGSC] = 0x64U,
91 [OP_USBMODE] = 0x68U,
92 [OP_ENDPTSETUPSTAT] = 0x6CU,
93 [OP_ENDPTPRIME] = 0x70U,
94 [OP_ENDPTFLUSH] = 0x74U,
95 [OP_ENDPTSTAT] = 0x78U,
96 [OP_ENDPTCOMPLETE] = 0x7CU,
97 [OP_ENDPTCTRL] = 0x80U,
Alexander Shishkine443b332012-05-11 17:25:46 +030098};
99
Marc Kleine-Budde987e7bc2014-01-06 10:10:39 +0800100static const u8 ci_regs_lpm[] = {
101 [CAP_CAPLENGTH] = 0x00U,
102 [CAP_HCCPARAMS] = 0x08U,
103 [CAP_DCCPARAMS] = 0x24U,
104 [CAP_TESTMODE] = 0xFCU,
105 [OP_USBCMD] = 0x00U,
106 [OP_USBSTS] = 0x04U,
107 [OP_USBINTR] = 0x08U,
108 [OP_DEVICEADDR] = 0x14U,
109 [OP_ENDPTLISTADDR] = 0x18U,
110 [OP_PORTSC] = 0x44U,
111 [OP_DEVLC] = 0x84U,
112 [OP_OTGSC] = 0xC4U,
113 [OP_USBMODE] = 0xC8U,
114 [OP_ENDPTSETUPSTAT] = 0xD8U,
115 [OP_ENDPTPRIME] = 0xDCU,
116 [OP_ENDPTFLUSH] = 0xE0U,
117 [OP_ENDPTSTAT] = 0xE4U,
118 [OP_ENDPTCOMPLETE] = 0xE8U,
119 [OP_ENDPTCTRL] = 0xECU,
Alexander Shishkine443b332012-05-11 17:25:46 +0300120};
121
Alexander Shishkin8e229782013-06-24 14:46:36 +0300122static int hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm)
Alexander Shishkine443b332012-05-11 17:25:46 +0300123{
124 int i;
125
Alexander Shishkine443b332012-05-11 17:25:46 +0300126 for (i = 0; i < OP_ENDPTCTRL; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300127 ci->hw_bank.regmap[i] =
128 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) +
Alexander Shishkine443b332012-05-11 17:25:46 +0300129 (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]);
130
131 for (; i <= OP_LAST; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300132 ci->hw_bank.regmap[i] = ci->hw_bank.op +
Alexander Shishkine443b332012-05-11 17:25:46 +0300133 4 * (i - OP_ENDPTCTRL) +
134 (is_lpm
135 ? ci_regs_lpm[OP_ENDPTCTRL]
136 : ci_regs_nolpm[OP_ENDPTCTRL]);
137
138 return 0;
139}
140
141/**
142 * hw_port_test_set: writes port test mode (execute without interruption)
143 * @mode: new value
144 *
145 * This function returns an error code
146 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300147int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300148{
149 const u8 TEST_MODE_MAX = 7;
150
151 if (mode > TEST_MODE_MAX)
152 return -EINVAL;
153
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200154 hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
Alexander Shishkine443b332012-05-11 17:25:46 +0300155 return 0;
156}
157
158/**
159 * hw_port_test_get: reads port test mode value
160 *
161 * This function returns port test mode value
162 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300163u8 hw_port_test_get(struct ci_hdrc *ci)
Alexander Shishkine443b332012-05-11 17:25:46 +0300164{
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200165 return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
Alexander Shishkine443b332012-05-11 17:25:46 +0300166}
167
Peter Chen864cf942013-09-24 12:47:55 +0800168/* The PHY enters/leaves low power mode */
169static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable)
170{
171 enum ci_hw_regs reg = ci->hw_bank.lpm ? OP_DEVLC : OP_PORTSC;
172 bool lpm = !!(hw_read(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm)));
173
174 if (enable && !lpm) {
175 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
176 PORTSC_PHCD(ci->hw_bank.lpm));
177 } else if (!enable && lpm) {
178 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
179 0);
180 /*
181 * The controller needs at least 1ms to reflect
182 * PHY's status, the PHY also needs some time (less
183 * than 1ms) to leave low power mode.
184 */
185 usleep_range(1500, 2000);
186 }
187}
188
Alexander Shishkin8e229782013-06-24 14:46:36 +0300189static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
Alexander Shishkine443b332012-05-11 17:25:46 +0300190{
191 u32 reg;
192
193 /* bank is a module variable */
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300194 ci->hw_bank.abs = base;
Alexander Shishkine443b332012-05-11 17:25:46 +0300195
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300196 ci->hw_bank.cap = ci->hw_bank.abs;
Richard Zhao77c44002012-06-29 17:48:53 +0800197 ci->hw_bank.cap += ci->platdata->capoffset;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200198 ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff);
Alexander Shishkine443b332012-05-11 17:25:46 +0300199
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300200 hw_alloc_regmap(ci, false);
201 reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200202 __ffs(HCCPARAMS_LEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300203 ci->hw_bank.lpm = reg;
Chris Ruehlaeb2c122013-12-06 16:35:12 +0800204 if (reg)
205 hw_alloc_regmap(ci, !!reg);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300206 ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs;
207 ci->hw_bank.size += OP_LAST;
208 ci->hw_bank.size /= sizeof(u32);
Alexander Shishkine443b332012-05-11 17:25:46 +0300209
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300210 reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200211 __ffs(DCCPARAMS_DEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300212 ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
Alexander Shishkine443b332012-05-11 17:25:46 +0300213
Richard Zhao09c94e62012-05-15 21:58:18 +0800214 if (ci->hw_ep_max > ENDPT_MAX)
Alexander Shishkine443b332012-05-11 17:25:46 +0300215 return -ENODEV;
216
Peter Chen864cf942013-09-24 12:47:55 +0800217 ci_hdrc_enter_lpm(ci, false);
218
Peter Chenc344b512013-08-14 12:44:09 +0300219 /* Disable all interrupts bits */
220 hw_write(ci, OP_USBINTR, 0xffffffff, 0);
221
222 /* Clear all interrupts status bits*/
223 hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff);
224
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300225 dev_dbg(ci->dev, "ChipIdea HDRC found, lpm: %d; cap: %p op: %p\n",
226 ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op);
Alexander Shishkine443b332012-05-11 17:25:46 +0300227
228 /* setup lock mode ? */
229
230 /* ENDPTSETUPSTAT is '0' by default */
231
232 /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
233
234 return 0;
235}
236
Alexander Shishkin8e229782013-06-24 14:46:36 +0300237static void hw_phymode_configure(struct ci_hdrc *ci)
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300238{
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800239 u32 portsc, lpm, sts = 0;
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300240
241 switch (ci->platdata->phy_mode) {
242 case USBPHY_INTERFACE_MODE_UTMI:
243 portsc = PORTSC_PTS(PTS_UTMI);
244 lpm = DEVLC_PTS(PTS_UTMI);
245 break;
246 case USBPHY_INTERFACE_MODE_UTMIW:
247 portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW;
248 lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW;
249 break;
250 case USBPHY_INTERFACE_MODE_ULPI:
251 portsc = PORTSC_PTS(PTS_ULPI);
252 lpm = DEVLC_PTS(PTS_ULPI);
253 break;
254 case USBPHY_INTERFACE_MODE_SERIAL:
255 portsc = PORTSC_PTS(PTS_SERIAL);
256 lpm = DEVLC_PTS(PTS_SERIAL);
257 sts = 1;
258 break;
259 case USBPHY_INTERFACE_MODE_HSIC:
260 portsc = PORTSC_PTS(PTS_HSIC);
261 lpm = DEVLC_PTS(PTS_HSIC);
262 break;
263 default:
264 return;
265 }
266
267 if (ci->hw_bank.lpm) {
268 hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm);
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800269 if (sts)
270 hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS);
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300271 } else {
272 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
Chris Ruehl3b5d3e62014-01-10 13:51:29 +0800273 if (sts)
274 hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS);
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300275 }
276}
277
Alexander Shishkine443b332012-05-11 17:25:46 +0300278/**
279 * hw_device_reset: resets chip (execute without interruption)
280 * @ci: the controller
281 *
282 * This function returns an error code
283 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300284int hw_device_reset(struct ci_hdrc *ci, u32 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300285{
286 /* should flush & stop before reset */
287 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
288 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
289
290 hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
291 while (hw_read(ci, OP_USBCMD, USBCMD_RST))
292 udelay(10); /* not RTOS friendly */
293
Richard Zhao77c44002012-06-29 17:48:53 +0800294 if (ci->platdata->notify_event)
295 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300296 CI_HDRC_CONTROLLER_RESET_EVENT);
Alexander Shishkine443b332012-05-11 17:25:46 +0300297
Alexander Shishkin8e229782013-06-24 14:46:36 +0300298 if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING)
Alexander Shishkin758fc982012-05-11 17:25:53 +0300299 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
Alexander Shishkine443b332012-05-11 17:25:46 +0300300
301 /* USBMODE should be configured step by step */
302 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300303 hw_write(ci, OP_USBMODE, USBMODE_CM, mode);
Alexander Shishkine443b332012-05-11 17:25:46 +0300304 /* HW >= 2.3 */
305 hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
306
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300307 if (hw_read(ci, OP_USBMODE, USBMODE_CM) != mode) {
308 pr_err("cannot enter in %s mode", ci_role(ci)->name);
Alexander Shishkine443b332012-05-11 17:25:46 +0300309 pr_err("lpm = %i", ci->hw_bank.lpm);
310 return -ENODEV;
311 }
312
313 return 0;
314}
315
Peter Chen22fa8442013-08-14 12:44:12 +0300316/**
317 * hw_wait_reg: wait the register value
318 *
319 * Sometimes, it needs to wait register value before going on.
320 * Eg, when switch to device mode, the vbus value should be lower
321 * than OTGSC_BSV before connects to host.
322 *
323 * @ci: the controller
324 * @reg: register index
325 * @mask: mast bit
326 * @value: the bit value to wait
327 * @timeout_ms: timeout in millisecond
328 *
329 * This function returns an error code if timeout
330 */
331int hw_wait_reg(struct ci_hdrc *ci, enum ci_hw_regs reg, u32 mask,
332 u32 value, unsigned int timeout_ms)
333{
334 unsigned long elapse = jiffies + msecs_to_jiffies(timeout_ms);
335
336 while (hw_read(ci, reg, mask) != value) {
337 if (time_after(jiffies, elapse)) {
338 dev_err(ci->dev, "timeout waiting for %08x in %d\n",
339 mask, reg);
340 return -ETIMEDOUT;
341 }
342 msleep(20);
343 }
344
345 return 0;
346}
347
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300348static irqreturn_t ci_irq(int irq, void *data)
349{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300350 struct ci_hdrc *ci = data;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300351 irqreturn_t ret = IRQ_NONE;
Richard Zhaob183c192012-09-12 14:58:11 +0300352 u32 otgsc = 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300353
Richard Zhaob183c192012-09-12 14:58:11 +0300354 if (ci->is_otg)
355 otgsc = hw_read(ci, OP_OTGSC, ~0);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300356
Peter Chena107f8c2013-08-14 12:44:11 +0300357 /*
358 * Handle id change interrupt, it indicates device/host function
359 * switch.
360 */
361 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
362 ci->id_event = true;
363 ci_clear_otg_interrupt(ci, OTGSC_IDIS);
Richard Zhaob183c192012-09-12 14:58:11 +0300364 disable_irq_nosync(ci->irq);
365 queue_work(ci->wq, &ci->work);
Peter Chena107f8c2013-08-14 12:44:11 +0300366 return IRQ_HANDLED;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300367 }
368
Peter Chena107f8c2013-08-14 12:44:11 +0300369 /*
370 * Handle vbus change interrupt, it indicates device connection
371 * and disconnection events.
372 */
373 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
374 ci->b_sess_valid_event = true;
375 ci_clear_otg_interrupt(ci, OTGSC_BSVIS);
376 disable_irq_nosync(ci->irq);
377 queue_work(ci->wq, &ci->work);
378 return IRQ_HANDLED;
379 }
380
381 /* Handle device/host interrupt */
382 if (ci->role != CI_ROLE_END)
383 ret = ci_role(ci)->irq(ci);
384
Richard Zhaob183c192012-09-12 14:58:11 +0300385 return ret;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300386}
387
Peter Chen1542d9c2013-08-14 12:44:03 +0300388static int ci_get_platdata(struct device *dev,
389 struct ci_hdrc_platform_data *platdata)
390{
Peter Chenc22600c2013-09-17 12:37:22 +0800391 if (!platdata->phy_mode)
392 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
393
394 if (!platdata->dr_mode)
395 platdata->dr_mode = of_usb_get_dr_mode(dev->of_node);
396
397 if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
398 platdata->dr_mode = USB_DR_MODE_OTG;
399
Peter Chenc2ec3a72013-10-30 09:19:29 +0800400 if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
401 /* Get the vbus regulator */
402 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
403 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
404 return -EPROBE_DEFER;
405 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
406 /* no vbus regualator is needed */
407 platdata->reg_vbus = NULL;
408 } else if (IS_ERR(platdata->reg_vbus)) {
409 dev_err(dev, "Getting regulator error: %ld\n",
410 PTR_ERR(platdata->reg_vbus));
411 return PTR_ERR(platdata->reg_vbus);
412 }
413 }
414
Peter Chen1542d9c2013-08-14 12:44:03 +0300415 return 0;
416}
417
Richard Zhaofe6e1252012-07-07 22:56:42 +0800418static DEFINE_IDA(ci_ida);
419
Alexander Shishkin8e229782013-06-24 14:46:36 +0300420struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800421 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300422 struct ci_hdrc_platform_data *platdata)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800423{
424 struct platform_device *pdev;
Richard Zhaofe6e1252012-07-07 22:56:42 +0800425 int id, ret;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800426
Peter Chen1542d9c2013-08-14 12:44:03 +0300427 ret = ci_get_platdata(dev, platdata);
428 if (ret)
429 return ERR_PTR(ret);
430
Richard Zhaofe6e1252012-07-07 22:56:42 +0800431 id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
432 if (id < 0)
433 return ERR_PTR(id);
434
435 pdev = platform_device_alloc("ci_hdrc", id);
436 if (!pdev) {
437 ret = -ENOMEM;
438 goto put_id;
439 }
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800440
441 pdev->dev.parent = dev;
442 pdev->dev.dma_mask = dev->dma_mask;
443 pdev->dev.dma_parms = dev->dma_parms;
444 dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask);
445
446 ret = platform_device_add_resources(pdev, res, nres);
447 if (ret)
448 goto err;
449
450 ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
451 if (ret)
452 goto err;
453
454 ret = platform_device_add(pdev);
455 if (ret)
456 goto err;
457
458 return pdev;
459
460err:
461 platform_device_put(pdev);
Richard Zhaofe6e1252012-07-07 22:56:42 +0800462put_id:
463 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800464 return ERR_PTR(ret);
465}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300466EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800467
Alexander Shishkin8e229782013-06-24 14:46:36 +0300468void ci_hdrc_remove_device(struct platform_device *pdev)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800469{
Lothar Waßmann98c35532012-11-22 10:11:25 +0100470 int id = pdev->id;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800471 platform_device_unregister(pdev);
Lothar Waßmann98c35532012-11-22 10:11:25 +0100472 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800473}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300474EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800475
Peter Chen3f124d22013-08-14 12:44:07 +0300476static inline void ci_role_destroy(struct ci_hdrc *ci)
477{
478 ci_hdrc_gadget_destroy(ci);
479 ci_hdrc_host_destroy(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300480 if (ci->is_otg)
481 ci_hdrc_otg_destroy(ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300482}
483
Peter Chen577b2322013-08-14 12:44:08 +0300484static void ci_get_otg_capable(struct ci_hdrc *ci)
485{
486 if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
487 ci->is_otg = false;
488 else
489 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
490 DCCPARAMS_DC | DCCPARAMS_HC)
491 == (DCCPARAMS_DC | DCCPARAMS_HC));
Peter Chenc344b512013-08-14 12:44:09 +0300492 if (ci->is_otg) {
Peter Chen577b2322013-08-14 12:44:08 +0300493 dev_dbg(ci->dev, "It is OTG capable controller\n");
Peter Chenc344b512013-08-14 12:44:09 +0300494 ci_disable_otg_interrupt(ci, OTGSC_INT_EN_BITS);
495 ci_clear_otg_interrupt(ci, OTGSC_INT_STATUS_BITS);
496 }
Peter Chen577b2322013-08-14 12:44:08 +0300497}
498
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500499static int ci_hdrc_probe(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300500{
501 struct device *dev = &pdev->dev;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300502 struct ci_hdrc *ci;
Alexander Shishkine443b332012-05-11 17:25:46 +0300503 struct resource *res;
504 void __iomem *base;
505 int ret;
Sascha Hauer691962d2013-06-13 17:59:57 +0300506 enum usb_dr_mode dr_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +0300507
Jingoo Hanfad56742014-02-19 13:41:42 +0800508 if (!dev_get_platdata(dev)) {
Alexander Shishkine443b332012-05-11 17:25:46 +0300509 dev_err(dev, "platform data missing\n");
510 return -ENODEV;
511 }
512
513 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbi19290812013-03-30 02:46:27 +0200514 base = devm_ioremap_resource(dev, res);
515 if (IS_ERR(base))
516 return PTR_ERR(base);
Alexander Shishkine443b332012-05-11 17:25:46 +0300517
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300518 ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
519 if (!ci) {
520 dev_err(dev, "can't allocate device\n");
521 return -ENOMEM;
Alexander Shishkine443b332012-05-11 17:25:46 +0300522 }
523
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300524 ci->dev = dev;
Jingoo Hanfad56742014-02-19 13:41:42 +0800525 ci->platdata = dev_get_platdata(dev);
Peter Chened8f8312014-01-10 13:51:27 +0800526 ci->imx28_write_fix = !!(ci->platdata->flags &
527 CI_HDRC_IMX28_WRITE_FIX);
Alexander Shishkine443b332012-05-11 17:25:46 +0300528
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300529 ret = hw_device_init(ci, base);
530 if (ret < 0) {
531 dev_err(dev, "can't initialize hardware\n");
532 return -ENODEV;
533 }
534
Chris Ruehlcd0b42c2014-01-10 13:51:30 +0800535 hw_phymode_configure(ci);
536
Peter Chenc859aa652014-02-19 13:41:40 +0800537 if (ci->platdata->phy)
538 ci->transceiver = ci->platdata->phy;
539 else
540 ci->transceiver = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
541
542 if (IS_ERR(ci->transceiver)) {
543 ret = PTR_ERR(ci->transceiver);
544 /*
545 * if -ENXIO is returned, it means PHY layer wasn't
546 * enabled, so it makes no sense to return -EPROBE_DEFER
547 * in that case, since no PHY driver will ever probe.
548 */
549 if (ret == -ENXIO)
550 return ret;
551
552 dev_err(dev, "no usb2 phy configured\n");
553 return -EPROBE_DEFER;
554 }
555
556 ret = usb_phy_init(ci->transceiver);
Peter Chen74475ed2013-09-24 12:47:53 +0800557 if (ret) {
558 dev_err(dev, "unable to init phy: %d\n", ret);
559 return ret;
560 }
561
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300562 ci->hw_bank.phys = res->start;
563
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300564 ci->irq = platform_get_irq(pdev, 0);
565 if (ci->irq < 0) {
566 dev_err(dev, "missing IRQ\n");
Peter Chen74475ed2013-09-24 12:47:53 +0800567 ret = -ENODEV;
Peter Chenc859aa652014-02-19 13:41:40 +0800568 goto deinit_phy;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300569 }
570
Peter Chen577b2322013-08-14 12:44:08 +0300571 ci_get_otg_capable(ci);
572
Sascha Hauer691962d2013-06-13 17:59:57 +0300573 dr_mode = ci->platdata->dr_mode;
574 /* initialize role(s) before the interrupt is requested */
575 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) {
576 ret = ci_hdrc_host_init(ci);
577 if (ret)
578 dev_info(dev, "doesn't support host\n");
579 }
580
581 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) {
582 ret = ci_hdrc_gadget_init(ci);
583 if (ret)
584 dev_info(dev, "doesn't support gadget\n");
585 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300586
587 if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
588 dev_err(dev, "no supported roles\n");
Peter Chen74475ed2013-09-24 12:47:53 +0800589 ret = -ENODEV;
Peter Chenc859aa652014-02-19 13:41:40 +0800590 goto deinit_phy;
Peter Chencbec6bd2013-08-14 12:44:10 +0300591 }
592
593 if (ci->is_otg) {
594 ret = ci_hdrc_otg_init(ci);
595 if (ret) {
596 dev_err(dev, "init otg fails, ret = %d\n", ret);
597 goto stop;
598 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300599 }
600
601 if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
Peter Chen577b2322013-08-14 12:44:08 +0300602 if (ci->is_otg) {
603 /*
604 * ID pin needs 1ms debouce time,
605 * we delay 2ms for safe.
606 */
607 mdelay(2);
608 ci->role = ci_otg_role(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300609 ci_enable_otg_interrupt(ci, OTGSC_IDIE);
Peter Chen577b2322013-08-14 12:44:08 +0300610 } else {
611 /*
612 * If the controller is not OTG capable, but support
613 * role switch, the defalt role is gadget, and the
614 * user can switch it through debugfs.
615 */
616 ci->role = CI_ROLE_GADGET;
617 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300618 } else {
619 ci->role = ci->roles[CI_ROLE_HOST]
620 ? CI_ROLE_HOST
621 : CI_ROLE_GADGET;
622 }
623
Peter Chen5a1e1452013-12-05 15:20:50 +0800624 /* only update vbus status for peripheral */
625 if (ci->role == CI_ROLE_GADGET)
626 ci_handle_vbus_change(ci);
627
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300628 ret = ci_role_start(ci, ci->role);
629 if (ret) {
630 dev_err(dev, "can't start %s role\n", ci_role(ci)->name);
Peter Chencbec6bd2013-08-14 12:44:10 +0300631 goto stop;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300632 }
633
634 platform_set_drvdata(pdev, ci);
Richard Zhao77c44002012-06-29 17:48:53 +0800635 ret = request_irq(ci->irq, ci_irq, IRQF_SHARED, ci->platdata->name,
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300636 ci);
637 if (ret)
638 goto stop;
639
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200640 ret = dbg_create_files(ci);
641 if (!ret)
642 return 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300643
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200644 free_irq(ci->irq, ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300645stop:
Peter Chen3f124d22013-08-14 12:44:07 +0300646 ci_role_destroy(ci);
Peter Chenc859aa652014-02-19 13:41:40 +0800647deinit_phy:
648 usb_phy_shutdown(ci->transceiver);
Alexander Shishkine443b332012-05-11 17:25:46 +0300649
650 return ret;
651}
652
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500653static int ci_hdrc_remove(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300654{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300655 struct ci_hdrc *ci = platform_get_drvdata(pdev);
Alexander Shishkine443b332012-05-11 17:25:46 +0300656
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200657 dbg_remove_files(ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300658 free_irq(ci->irq, ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300659 ci_role_destroy(ci);
Peter Chen864cf942013-09-24 12:47:55 +0800660 ci_hdrc_enter_lpm(ci, true);
Peter Chenc859aa652014-02-19 13:41:40 +0800661 usb_phy_shutdown(ci->transceiver);
662 kfree(ci->hw_bank.regmap);
Alexander Shishkine443b332012-05-11 17:25:46 +0300663
664 return 0;
665}
666
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300667static struct platform_driver ci_hdrc_driver = {
668 .probe = ci_hdrc_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500669 .remove = ci_hdrc_remove,
Alexander Shishkine443b332012-05-11 17:25:46 +0300670 .driver = {
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300671 .name = "ci_hdrc",
Alexander Shishkine443b332012-05-11 17:25:46 +0300672 },
673};
674
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300675module_platform_driver(ci_hdrc_driver);
Alexander Shishkine443b332012-05-11 17:25:46 +0300676
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300677MODULE_ALIAS("platform:ci_hdrc");
Alexander Shishkine443b332012-05-11 17:25:46 +0300678MODULE_LICENSE("GPL v2");
679MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>");
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300680MODULE_DESCRIPTION("ChipIdea HDRC Driver");