blob: 50754073fae067ff0f49d45186ff3d1f7ce6f7d9 [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 */
Alexander Shishkine443b332012-05-11 17:25:46 +030078static uintptr_t ci_regs_nolpm[] = {
79 [CAP_CAPLENGTH] = 0x000UL,
80 [CAP_HCCPARAMS] = 0x008UL,
81 [CAP_DCCPARAMS] = 0x024UL,
82 [CAP_TESTMODE] = 0x038UL,
83 [OP_USBCMD] = 0x000UL,
84 [OP_USBSTS] = 0x004UL,
85 [OP_USBINTR] = 0x008UL,
86 [OP_DEVICEADDR] = 0x014UL,
87 [OP_ENDPTLISTADDR] = 0x018UL,
88 [OP_PORTSC] = 0x044UL,
89 [OP_DEVLC] = 0x084UL,
Alexander Shishkin5f36e232012-05-11 17:25:47 +030090 [OP_OTGSC] = 0x064UL,
Alexander Shishkine443b332012-05-11 17:25:46 +030091 [OP_USBMODE] = 0x068UL,
92 [OP_ENDPTSETUPSTAT] = 0x06CUL,
93 [OP_ENDPTPRIME] = 0x070UL,
94 [OP_ENDPTFLUSH] = 0x074UL,
95 [OP_ENDPTSTAT] = 0x078UL,
96 [OP_ENDPTCOMPLETE] = 0x07CUL,
97 [OP_ENDPTCTRL] = 0x080UL,
98};
99
100static uintptr_t ci_regs_lpm[] = {
101 [CAP_CAPLENGTH] = 0x000UL,
102 [CAP_HCCPARAMS] = 0x008UL,
103 [CAP_DCCPARAMS] = 0x024UL,
104 [CAP_TESTMODE] = 0x0FCUL,
105 [OP_USBCMD] = 0x000UL,
106 [OP_USBSTS] = 0x004UL,
107 [OP_USBINTR] = 0x008UL,
108 [OP_DEVICEADDR] = 0x014UL,
109 [OP_ENDPTLISTADDR] = 0x018UL,
110 [OP_PORTSC] = 0x044UL,
111 [OP_DEVLC] = 0x084UL,
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300112 [OP_OTGSC] = 0x0C4UL,
Alexander Shishkine443b332012-05-11 17:25:46 +0300113 [OP_USBMODE] = 0x0C8UL,
114 [OP_ENDPTSETUPSTAT] = 0x0D8UL,
115 [OP_ENDPTPRIME] = 0x0DCUL,
116 [OP_ENDPTFLUSH] = 0x0E0UL,
117 [OP_ENDPTSTAT] = 0x0E4UL,
118 [OP_ENDPTCOMPLETE] = 0x0E8UL,
119 [OP_ENDPTCTRL] = 0x0ECUL,
120};
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 Shishkin5f36e232012-05-11 17:25:47 +0300126 kfree(ci->hw_bank.regmap);
Alexander Shishkine443b332012-05-11 17:25:46 +0300127
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300128 ci->hw_bank.regmap = kzalloc((OP_LAST + 1) * sizeof(void *),
129 GFP_KERNEL);
130 if (!ci->hw_bank.regmap)
Alexander Shishkine443b332012-05-11 17:25:46 +0300131 return -ENOMEM;
132
133 for (i = 0; i < OP_ENDPTCTRL; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300134 ci->hw_bank.regmap[i] =
135 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) +
Alexander Shishkine443b332012-05-11 17:25:46 +0300136 (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]);
137
138 for (; i <= OP_LAST; i++)
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300139 ci->hw_bank.regmap[i] = ci->hw_bank.op +
Alexander Shishkine443b332012-05-11 17:25:46 +0300140 4 * (i - OP_ENDPTCTRL) +
141 (is_lpm
142 ? ci_regs_lpm[OP_ENDPTCTRL]
143 : ci_regs_nolpm[OP_ENDPTCTRL]);
144
145 return 0;
146}
147
148/**
149 * hw_port_test_set: writes port test mode (execute without interruption)
150 * @mode: new value
151 *
152 * This function returns an error code
153 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300154int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300155{
156 const u8 TEST_MODE_MAX = 7;
157
158 if (mode > TEST_MODE_MAX)
159 return -EINVAL;
160
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200161 hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
Alexander Shishkine443b332012-05-11 17:25:46 +0300162 return 0;
163}
164
165/**
166 * hw_port_test_get: reads port test mode value
167 *
168 * This function returns port test mode value
169 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300170u8 hw_port_test_get(struct ci_hdrc *ci)
Alexander Shishkine443b332012-05-11 17:25:46 +0300171{
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200172 return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
Alexander Shishkine443b332012-05-11 17:25:46 +0300173}
174
Peter Chen864cf942013-09-24 12:47:55 +0800175/* The PHY enters/leaves low power mode */
176static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable)
177{
178 enum ci_hw_regs reg = ci->hw_bank.lpm ? OP_DEVLC : OP_PORTSC;
179 bool lpm = !!(hw_read(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm)));
180
181 if (enable && !lpm) {
182 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
183 PORTSC_PHCD(ci->hw_bank.lpm));
184 } else if (!enable && lpm) {
185 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
186 0);
187 /*
188 * The controller needs at least 1ms to reflect
189 * PHY's status, the PHY also needs some time (less
190 * than 1ms) to leave low power mode.
191 */
192 usleep_range(1500, 2000);
193 }
194}
195
Alexander Shishkin8e229782013-06-24 14:46:36 +0300196static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
Alexander Shishkine443b332012-05-11 17:25:46 +0300197{
198 u32 reg;
199
200 /* bank is a module variable */
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300201 ci->hw_bank.abs = base;
Alexander Shishkine443b332012-05-11 17:25:46 +0300202
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300203 ci->hw_bank.cap = ci->hw_bank.abs;
Richard Zhao77c44002012-06-29 17:48:53 +0800204 ci->hw_bank.cap += ci->platdata->capoffset;
Svetoslav Neykov938d3232013-03-30 12:54:03 +0200205 ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff);
Alexander Shishkine443b332012-05-11 17:25:46 +0300206
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300207 hw_alloc_regmap(ci, false);
208 reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200209 __ffs(HCCPARAMS_LEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300210 ci->hw_bank.lpm = reg;
Chris Ruehlaeb2c122013-12-06 16:35:12 +0800211 if (reg)
212 hw_alloc_regmap(ci, !!reg);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300213 ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs;
214 ci->hw_bank.size += OP_LAST;
215 ci->hw_bank.size /= sizeof(u32);
Alexander Shishkine443b332012-05-11 17:25:46 +0300216
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300217 reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
Felipe Balbi727b4dd2013-03-30 12:53:55 +0200218 __ffs(DCCPARAMS_DEN);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300219 ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
Alexander Shishkine443b332012-05-11 17:25:46 +0300220
Richard Zhao09c94e62012-05-15 21:58:18 +0800221 if (ci->hw_ep_max > ENDPT_MAX)
Alexander Shishkine443b332012-05-11 17:25:46 +0300222 return -ENODEV;
223
Peter Chen864cf942013-09-24 12:47:55 +0800224 ci_hdrc_enter_lpm(ci, false);
225
Peter Chenc344b512013-08-14 12:44:09 +0300226 /* Disable all interrupts bits */
227 hw_write(ci, OP_USBINTR, 0xffffffff, 0);
228
229 /* Clear all interrupts status bits*/
230 hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff);
231
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300232 dev_dbg(ci->dev, "ChipIdea HDRC found, lpm: %d; cap: %p op: %p\n",
233 ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op);
Alexander Shishkine443b332012-05-11 17:25:46 +0300234
235 /* setup lock mode ? */
236
237 /* ENDPTSETUPSTAT is '0' by default */
238
239 /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
240
241 return 0;
242}
243
Alexander Shishkin8e229782013-06-24 14:46:36 +0300244static void hw_phymode_configure(struct ci_hdrc *ci)
Michael Grzeschik40dcd0e2013-06-13 17:59:56 +0300245{
246 u32 portsc, lpm, sts;
247
248 switch (ci->platdata->phy_mode) {
249 case USBPHY_INTERFACE_MODE_UTMI:
250 portsc = PORTSC_PTS(PTS_UTMI);
251 lpm = DEVLC_PTS(PTS_UTMI);
252 break;
253 case USBPHY_INTERFACE_MODE_UTMIW:
254 portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW;
255 lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW;
256 break;
257 case USBPHY_INTERFACE_MODE_ULPI:
258 portsc = PORTSC_PTS(PTS_ULPI);
259 lpm = DEVLC_PTS(PTS_ULPI);
260 break;
261 case USBPHY_INTERFACE_MODE_SERIAL:
262 portsc = PORTSC_PTS(PTS_SERIAL);
263 lpm = DEVLC_PTS(PTS_SERIAL);
264 sts = 1;
265 break;
266 case USBPHY_INTERFACE_MODE_HSIC:
267 portsc = PORTSC_PTS(PTS_HSIC);
268 lpm = DEVLC_PTS(PTS_HSIC);
269 break;
270 default:
271 return;
272 }
273
274 if (ci->hw_bank.lpm) {
275 hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm);
276 hw_write(ci, OP_DEVLC, DEVLC_STS, sts);
277 } else {
278 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
279 hw_write(ci, OP_PORTSC, PORTSC_STS, sts);
280 }
281}
282
Alexander Shishkine443b332012-05-11 17:25:46 +0300283/**
284 * hw_device_reset: resets chip (execute without interruption)
285 * @ci: the controller
286 *
287 * This function returns an error code
288 */
Alexander Shishkin8e229782013-06-24 14:46:36 +0300289int hw_device_reset(struct ci_hdrc *ci, u32 mode)
Alexander Shishkine443b332012-05-11 17:25:46 +0300290{
291 /* should flush & stop before reset */
292 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
293 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
294
295 hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
296 while (hw_read(ci, OP_USBCMD, USBCMD_RST))
297 udelay(10); /* not RTOS friendly */
298
Richard Zhao77c44002012-06-29 17:48:53 +0800299 if (ci->platdata->notify_event)
300 ci->platdata->notify_event(ci,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300301 CI_HDRC_CONTROLLER_RESET_EVENT);
Alexander Shishkine443b332012-05-11 17:25:46 +0300302
Alexander Shishkin8e229782013-06-24 14:46:36 +0300303 if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING)
Alexander Shishkin758fc982012-05-11 17:25:53 +0300304 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
Alexander Shishkine443b332012-05-11 17:25:46 +0300305
306 /* USBMODE should be configured step by step */
307 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300308 hw_write(ci, OP_USBMODE, USBMODE_CM, mode);
Alexander Shishkine443b332012-05-11 17:25:46 +0300309 /* HW >= 2.3 */
310 hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
311
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300312 if (hw_read(ci, OP_USBMODE, USBMODE_CM) != mode) {
313 pr_err("cannot enter in %s mode", ci_role(ci)->name);
Alexander Shishkine443b332012-05-11 17:25:46 +0300314 pr_err("lpm = %i", ci->hw_bank.lpm);
315 return -ENODEV;
316 }
317
318 return 0;
319}
320
Peter Chen22fa8442013-08-14 12:44:12 +0300321/**
322 * hw_wait_reg: wait the register value
323 *
324 * Sometimes, it needs to wait register value before going on.
325 * Eg, when switch to device mode, the vbus value should be lower
326 * than OTGSC_BSV before connects to host.
327 *
328 * @ci: the controller
329 * @reg: register index
330 * @mask: mast bit
331 * @value: the bit value to wait
332 * @timeout_ms: timeout in millisecond
333 *
334 * This function returns an error code if timeout
335 */
336int hw_wait_reg(struct ci_hdrc *ci, enum ci_hw_regs reg, u32 mask,
337 u32 value, unsigned int timeout_ms)
338{
339 unsigned long elapse = jiffies + msecs_to_jiffies(timeout_ms);
340
341 while (hw_read(ci, reg, mask) != value) {
342 if (time_after(jiffies, elapse)) {
343 dev_err(ci->dev, "timeout waiting for %08x in %d\n",
344 mask, reg);
345 return -ETIMEDOUT;
346 }
347 msleep(20);
348 }
349
350 return 0;
351}
352
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300353static irqreturn_t ci_irq(int irq, void *data)
354{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300355 struct ci_hdrc *ci = data;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300356 irqreturn_t ret = IRQ_NONE;
Richard Zhaob183c192012-09-12 14:58:11 +0300357 u32 otgsc = 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300358
Richard Zhaob183c192012-09-12 14:58:11 +0300359 if (ci->is_otg)
360 otgsc = hw_read(ci, OP_OTGSC, ~0);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300361
Peter Chena107f8c2013-08-14 12:44:11 +0300362 /*
363 * Handle id change interrupt, it indicates device/host function
364 * switch.
365 */
366 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
367 ci->id_event = true;
368 ci_clear_otg_interrupt(ci, OTGSC_IDIS);
Richard Zhaob183c192012-09-12 14:58:11 +0300369 disable_irq_nosync(ci->irq);
370 queue_work(ci->wq, &ci->work);
Peter Chena107f8c2013-08-14 12:44:11 +0300371 return IRQ_HANDLED;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300372 }
373
Peter Chena107f8c2013-08-14 12:44:11 +0300374 /*
375 * Handle vbus change interrupt, it indicates device connection
376 * and disconnection events.
377 */
378 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
379 ci->b_sess_valid_event = true;
380 ci_clear_otg_interrupt(ci, OTGSC_BSVIS);
381 disable_irq_nosync(ci->irq);
382 queue_work(ci->wq, &ci->work);
383 return IRQ_HANDLED;
384 }
385
386 /* Handle device/host interrupt */
387 if (ci->role != CI_ROLE_END)
388 ret = ci_role(ci)->irq(ci);
389
Richard Zhaob183c192012-09-12 14:58:11 +0300390 return ret;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300391}
392
Peter Chen1542d9c2013-08-14 12:44:03 +0300393static int ci_get_platdata(struct device *dev,
394 struct ci_hdrc_platform_data *platdata)
395{
Peter Chenc22600c2013-09-17 12:37:22 +0800396 if (!platdata->phy_mode)
397 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
398
399 if (!platdata->dr_mode)
400 platdata->dr_mode = of_usb_get_dr_mode(dev->of_node);
401
402 if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
403 platdata->dr_mode = USB_DR_MODE_OTG;
404
Peter Chenc2ec3a72013-10-30 09:19:29 +0800405 if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
406 /* Get the vbus regulator */
407 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
408 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
409 return -EPROBE_DEFER;
410 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
411 /* no vbus regualator is needed */
412 platdata->reg_vbus = NULL;
413 } else if (IS_ERR(platdata->reg_vbus)) {
414 dev_err(dev, "Getting regulator error: %ld\n",
415 PTR_ERR(platdata->reg_vbus));
416 return PTR_ERR(platdata->reg_vbus);
417 }
418 }
419
Peter Chen1542d9c2013-08-14 12:44:03 +0300420 return 0;
421}
422
Richard Zhaofe6e1252012-07-07 22:56:42 +0800423static DEFINE_IDA(ci_ida);
424
Alexander Shishkin8e229782013-06-24 14:46:36 +0300425struct platform_device *ci_hdrc_add_device(struct device *dev,
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800426 struct resource *res, int nres,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300427 struct ci_hdrc_platform_data *platdata)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800428{
429 struct platform_device *pdev;
Richard Zhaofe6e1252012-07-07 22:56:42 +0800430 int id, ret;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800431
Peter Chen1542d9c2013-08-14 12:44:03 +0300432 ret = ci_get_platdata(dev, platdata);
433 if (ret)
434 return ERR_PTR(ret);
435
Richard Zhaofe6e1252012-07-07 22:56:42 +0800436 id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
437 if (id < 0)
438 return ERR_PTR(id);
439
440 pdev = platform_device_alloc("ci_hdrc", id);
441 if (!pdev) {
442 ret = -ENOMEM;
443 goto put_id;
444 }
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800445
446 pdev->dev.parent = dev;
447 pdev->dev.dma_mask = dev->dma_mask;
448 pdev->dev.dma_parms = dev->dma_parms;
449 dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask);
450
451 ret = platform_device_add_resources(pdev, res, nres);
452 if (ret)
453 goto err;
454
455 ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
456 if (ret)
457 goto err;
458
459 ret = platform_device_add(pdev);
460 if (ret)
461 goto err;
462
463 return pdev;
464
465err:
466 platform_device_put(pdev);
Richard Zhaofe6e1252012-07-07 22:56:42 +0800467put_id:
468 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800469 return ERR_PTR(ret);
470}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300471EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800472
Alexander Shishkin8e229782013-06-24 14:46:36 +0300473void ci_hdrc_remove_device(struct platform_device *pdev)
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800474{
Lothar Waßmann98c35532012-11-22 10:11:25 +0100475 int id = pdev->id;
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800476 platform_device_unregister(pdev);
Lothar Waßmann98c35532012-11-22 10:11:25 +0100477 ida_simple_remove(&ci_ida, id);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800478}
Alexander Shishkin8e229782013-06-24 14:46:36 +0300479EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
Richard Zhaocbc6dc22012-07-07 22:56:41 +0800480
Peter Chen3f124d22013-08-14 12:44:07 +0300481static inline void ci_role_destroy(struct ci_hdrc *ci)
482{
483 ci_hdrc_gadget_destroy(ci);
484 ci_hdrc_host_destroy(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300485 if (ci->is_otg)
486 ci_hdrc_otg_destroy(ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300487}
488
Peter Chen577b2322013-08-14 12:44:08 +0300489static void ci_get_otg_capable(struct ci_hdrc *ci)
490{
491 if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
492 ci->is_otg = false;
493 else
494 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
495 DCCPARAMS_DC | DCCPARAMS_HC)
496 == (DCCPARAMS_DC | DCCPARAMS_HC));
Peter Chenc344b512013-08-14 12:44:09 +0300497 if (ci->is_otg) {
Peter Chen577b2322013-08-14 12:44:08 +0300498 dev_dbg(ci->dev, "It is OTG capable controller\n");
Peter Chenc344b512013-08-14 12:44:09 +0300499 ci_disable_otg_interrupt(ci, OTGSC_INT_EN_BITS);
500 ci_clear_otg_interrupt(ci, OTGSC_INT_STATUS_BITS);
501 }
Peter Chen577b2322013-08-14 12:44:08 +0300502}
503
Peter Chen74475ed2013-09-24 12:47:53 +0800504static int ci_usb_phy_init(struct ci_hdrc *ci)
505{
506 if (ci->platdata->phy) {
507 ci->transceiver = ci->platdata->phy;
508 return usb_phy_init(ci->transceiver);
509 } else {
510 ci->global_phy = true;
511 ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
512 if (IS_ERR(ci->transceiver))
513 ci->transceiver = NULL;
514
515 return 0;
516 }
517}
518
519static void ci_usb_phy_destroy(struct ci_hdrc *ci)
520{
521 if (!ci->transceiver)
522 return;
523
524 otg_set_peripheral(ci->transceiver->otg, NULL);
525 if (ci->global_phy)
526 usb_put_phy(ci->transceiver);
527 else
528 usb_phy_shutdown(ci->transceiver);
529}
530
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500531static int ci_hdrc_probe(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300532{
533 struct device *dev = &pdev->dev;
Alexander Shishkin8e229782013-06-24 14:46:36 +0300534 struct ci_hdrc *ci;
Alexander Shishkine443b332012-05-11 17:25:46 +0300535 struct resource *res;
536 void __iomem *base;
537 int ret;
Sascha Hauer691962d2013-06-13 17:59:57 +0300538 enum usb_dr_mode dr_mode;
Alexander Shishkine443b332012-05-11 17:25:46 +0300539
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300540 if (!dev->platform_data) {
Alexander Shishkine443b332012-05-11 17:25:46 +0300541 dev_err(dev, "platform data missing\n");
542 return -ENODEV;
543 }
544
545 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbi19290812013-03-30 02:46:27 +0200546 base = devm_ioremap_resource(dev, res);
547 if (IS_ERR(base))
548 return PTR_ERR(base);
Alexander Shishkine443b332012-05-11 17:25:46 +0300549
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300550 ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
551 if (!ci) {
552 dev_err(dev, "can't allocate device\n");
553 return -ENOMEM;
Alexander Shishkine443b332012-05-11 17:25:46 +0300554 }
555
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300556 ci->dev = dev;
Richard Zhao77c44002012-06-29 17:48:53 +0800557 ci->platdata = dev->platform_data;
Alexander Shishkine443b332012-05-11 17:25:46 +0300558
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300559 ret = hw_device_init(ci, base);
560 if (ret < 0) {
561 dev_err(dev, "can't initialize hardware\n");
562 return -ENODEV;
563 }
564
Peter Chen74475ed2013-09-24 12:47:53 +0800565 ret = ci_usb_phy_init(ci);
566 if (ret) {
567 dev_err(dev, "unable to init phy: %d\n", ret);
568 return ret;
569 }
570
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300571 ci->hw_bank.phys = res->start;
572
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300573 ci->irq = platform_get_irq(pdev, 0);
574 if (ci->irq < 0) {
575 dev_err(dev, "missing IRQ\n");
Peter Chen74475ed2013-09-24 12:47:53 +0800576 ret = -ENODEV;
577 goto destroy_phy;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300578 }
579
Peter Chen577b2322013-08-14 12:44:08 +0300580 ci_get_otg_capable(ci);
581
Fabio Estevam03779f02013-08-14 12:43:56 +0300582 hw_phymode_configure(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");
Peter Chen74475ed2013-09-24 12:47:53 +0800596 if (!ret && ci->transceiver) {
597 ret = otg_set_peripheral(ci->transceiver->otg,
598 &ci->gadget);
599 /*
600 * If we implement all USB functions using chipidea drivers,
601 * it doesn't need to call above API, meanwhile, if we only
602 * use gadget function, calling above API is useless.
603 */
604 if (ret && ret != -ENOTSUPP)
605 goto destroy_phy;
606 }
Sascha Hauer691962d2013-06-13 17:59:57 +0300607 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300608
609 if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
610 dev_err(dev, "no supported roles\n");
Peter Chen74475ed2013-09-24 12:47:53 +0800611 ret = -ENODEV;
612 goto destroy_phy;
Peter Chencbec6bd2013-08-14 12:44:10 +0300613 }
614
615 if (ci->is_otg) {
616 ret = ci_hdrc_otg_init(ci);
617 if (ret) {
618 dev_err(dev, "init otg fails, ret = %d\n", ret);
619 goto stop;
620 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300621 }
622
623 if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
Peter Chen577b2322013-08-14 12:44:08 +0300624 if (ci->is_otg) {
625 /*
626 * ID pin needs 1ms debouce time,
627 * we delay 2ms for safe.
628 */
629 mdelay(2);
630 ci->role = ci_otg_role(ci);
Peter Chencbec6bd2013-08-14 12:44:10 +0300631 ci_enable_otg_interrupt(ci, OTGSC_IDIE);
Peter Chen577b2322013-08-14 12:44:08 +0300632 } else {
633 /*
634 * If the controller is not OTG capable, but support
635 * role switch, the defalt role is gadget, and the
636 * user can switch it through debugfs.
637 */
638 ci->role = CI_ROLE_GADGET;
639 }
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300640 } else {
641 ci->role = ci->roles[CI_ROLE_HOST]
642 ? CI_ROLE_HOST
643 : CI_ROLE_GADGET;
644 }
645
646 ret = ci_role_start(ci, ci->role);
647 if (ret) {
648 dev_err(dev, "can't start %s role\n", ci_role(ci)->name);
Peter Chencbec6bd2013-08-14 12:44:10 +0300649 goto stop;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300650 }
651
652 platform_set_drvdata(pdev, ci);
Richard Zhao77c44002012-06-29 17:48:53 +0800653 ret = request_irq(ci->irq, ci_irq, IRQF_SHARED, ci->platdata->name,
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300654 ci);
655 if (ret)
656 goto stop;
657
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200658 ret = dbg_create_files(ci);
659 if (!ret)
660 return 0;
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300661
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200662 free_irq(ci->irq, ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300663stop:
Peter Chen3f124d22013-08-14 12:44:07 +0300664 ci_role_destroy(ci);
Peter Chen74475ed2013-09-24 12:47:53 +0800665destroy_phy:
666 ci_usb_phy_destroy(ci);
Alexander Shishkine443b332012-05-11 17:25:46 +0300667
668 return ret;
669}
670
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500671static int ci_hdrc_remove(struct platform_device *pdev)
Alexander Shishkine443b332012-05-11 17:25:46 +0300672{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300673 struct ci_hdrc *ci = platform_get_drvdata(pdev);
Alexander Shishkine443b332012-05-11 17:25:46 +0300674
Alexander Shishkinadf0f732013-03-30 12:53:53 +0200675 dbg_remove_files(ci);
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300676 free_irq(ci->irq, ci);
Peter Chen3f124d22013-08-14 12:44:07 +0300677 ci_role_destroy(ci);
Peter Chen864cf942013-09-24 12:47:55 +0800678 ci_hdrc_enter_lpm(ci, true);
Peter Chen74475ed2013-09-24 12:47:53 +0800679 ci_usb_phy_destroy(ci);
Peter Chen222bed92013-09-17 12:37:21 +0800680 kfree(ci->hw_bank.regmap);
Alexander Shishkine443b332012-05-11 17:25:46 +0300681
682 return 0;
683}
684
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300685static struct platform_driver ci_hdrc_driver = {
686 .probe = ci_hdrc_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500687 .remove = ci_hdrc_remove,
Alexander Shishkine443b332012-05-11 17:25:46 +0300688 .driver = {
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300689 .name = "ci_hdrc",
Alexander Shishkine443b332012-05-11 17:25:46 +0300690 },
691};
692
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300693module_platform_driver(ci_hdrc_driver);
Alexander Shishkine443b332012-05-11 17:25:46 +0300694
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300695MODULE_ALIAS("platform:ci_hdrc");
Alexander Shishkine443b332012-05-11 17:25:46 +0300696MODULE_LICENSE("GPL v2");
697MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>");
Alexander Shishkin5f36e232012-05-11 17:25:47 +0300698MODULE_DESCRIPTION("ChipIdea HDRC Driver");