Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1 | /* |
| 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 Grzeschik | e4ce4ec | 2013-06-13 17:59:47 +0300 | [diff] [blame] | 46 | * - Interrupt Traffic |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 47 | * - 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 Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 53 | #include <linux/dma-mapping.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 54 | #include <linux/platform_device.h> |
| 55 | #include <linux/module.h> |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 56 | #include <linux/idr.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 57 | #include <linux/interrupt.h> |
| 58 | #include <linux/io.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 59 | #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> |
| 66 | |
| 67 | #include "ci.h" |
| 68 | #include "udc.h" |
| 69 | #include "bits.h" |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 70 | #include "host.h" |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 71 | #include "debug.h" |
| 72 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 73 | /* Controller register map */ |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 74 | static uintptr_t ci_regs_nolpm[] = { |
| 75 | [CAP_CAPLENGTH] = 0x000UL, |
| 76 | [CAP_HCCPARAMS] = 0x008UL, |
| 77 | [CAP_DCCPARAMS] = 0x024UL, |
| 78 | [CAP_TESTMODE] = 0x038UL, |
| 79 | [OP_USBCMD] = 0x000UL, |
| 80 | [OP_USBSTS] = 0x004UL, |
| 81 | [OP_USBINTR] = 0x008UL, |
| 82 | [OP_DEVICEADDR] = 0x014UL, |
| 83 | [OP_ENDPTLISTADDR] = 0x018UL, |
| 84 | [OP_PORTSC] = 0x044UL, |
| 85 | [OP_DEVLC] = 0x084UL, |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 86 | [OP_OTGSC] = 0x064UL, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 87 | [OP_USBMODE] = 0x068UL, |
| 88 | [OP_ENDPTSETUPSTAT] = 0x06CUL, |
| 89 | [OP_ENDPTPRIME] = 0x070UL, |
| 90 | [OP_ENDPTFLUSH] = 0x074UL, |
| 91 | [OP_ENDPTSTAT] = 0x078UL, |
| 92 | [OP_ENDPTCOMPLETE] = 0x07CUL, |
| 93 | [OP_ENDPTCTRL] = 0x080UL, |
| 94 | }; |
| 95 | |
| 96 | static uintptr_t ci_regs_lpm[] = { |
| 97 | [CAP_CAPLENGTH] = 0x000UL, |
| 98 | [CAP_HCCPARAMS] = 0x008UL, |
| 99 | [CAP_DCCPARAMS] = 0x024UL, |
| 100 | [CAP_TESTMODE] = 0x0FCUL, |
| 101 | [OP_USBCMD] = 0x000UL, |
| 102 | [OP_USBSTS] = 0x004UL, |
| 103 | [OP_USBINTR] = 0x008UL, |
| 104 | [OP_DEVICEADDR] = 0x014UL, |
| 105 | [OP_ENDPTLISTADDR] = 0x018UL, |
| 106 | [OP_PORTSC] = 0x044UL, |
| 107 | [OP_DEVLC] = 0x084UL, |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 108 | [OP_OTGSC] = 0x0C4UL, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 109 | [OP_USBMODE] = 0x0C8UL, |
| 110 | [OP_ENDPTSETUPSTAT] = 0x0D8UL, |
| 111 | [OP_ENDPTPRIME] = 0x0DCUL, |
| 112 | [OP_ENDPTFLUSH] = 0x0E0UL, |
| 113 | [OP_ENDPTSTAT] = 0x0E4UL, |
| 114 | [OP_ENDPTCOMPLETE] = 0x0E8UL, |
| 115 | [OP_ENDPTCTRL] = 0x0ECUL, |
| 116 | }; |
| 117 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 118 | static int hw_alloc_regmap(struct ci13xxx *ci, bool is_lpm) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 119 | { |
| 120 | int i; |
| 121 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 122 | kfree(ci->hw_bank.regmap); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 123 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 124 | ci->hw_bank.regmap = kzalloc((OP_LAST + 1) * sizeof(void *), |
| 125 | GFP_KERNEL); |
| 126 | if (!ci->hw_bank.regmap) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 127 | return -ENOMEM; |
| 128 | |
| 129 | for (i = 0; i < OP_ENDPTCTRL; i++) |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 130 | ci->hw_bank.regmap[i] = |
| 131 | (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) + |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 132 | (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]); |
| 133 | |
| 134 | for (; i <= OP_LAST; i++) |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 135 | ci->hw_bank.regmap[i] = ci->hw_bank.op + |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 136 | 4 * (i - OP_ENDPTCTRL) + |
| 137 | (is_lpm |
| 138 | ? ci_regs_lpm[OP_ENDPTCTRL] |
| 139 | : ci_regs_nolpm[OP_ENDPTCTRL]); |
| 140 | |
| 141 | return 0; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * hw_port_test_set: writes port test mode (execute without interruption) |
| 146 | * @mode: new value |
| 147 | * |
| 148 | * This function returns an error code |
| 149 | */ |
| 150 | int hw_port_test_set(struct ci13xxx *ci, u8 mode) |
| 151 | { |
| 152 | const u8 TEST_MODE_MAX = 7; |
| 153 | |
| 154 | if (mode > TEST_MODE_MAX) |
| 155 | return -EINVAL; |
| 156 | |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 157 | hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC)); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * hw_port_test_get: reads port test mode value |
| 163 | * |
| 164 | * This function returns port test mode value |
| 165 | */ |
| 166 | u8 hw_port_test_get(struct ci13xxx *ci) |
| 167 | { |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 168 | return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 169 | } |
| 170 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 171 | static int hw_device_init(struct ci13xxx *ci, void __iomem *base) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 172 | { |
| 173 | u32 reg; |
| 174 | |
| 175 | /* bank is a module variable */ |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 176 | ci->hw_bank.abs = base; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 177 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 178 | ci->hw_bank.cap = ci->hw_bank.abs; |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 179 | ci->hw_bank.cap += ci->platdata->capoffset; |
Svetoslav Neykov | 938d323 | 2013-03-30 12:54:03 +0200 | [diff] [blame] | 180 | ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 181 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 182 | hw_alloc_regmap(ci, false); |
| 183 | reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >> |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 184 | __ffs(HCCPARAMS_LEN); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 185 | ci->hw_bank.lpm = reg; |
| 186 | hw_alloc_regmap(ci, !!reg); |
| 187 | ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs; |
| 188 | ci->hw_bank.size += OP_LAST; |
| 189 | ci->hw_bank.size /= sizeof(u32); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 190 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 191 | reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >> |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 192 | __ffs(DCCPARAMS_DEN); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 193 | ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */ |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 194 | |
Richard Zhao | 09c94e6 | 2012-05-15 21:58:18 +0800 | [diff] [blame] | 195 | if (ci->hw_ep_max > ENDPT_MAX) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 196 | return -ENODEV; |
| 197 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 198 | dev_dbg(ci->dev, "ChipIdea HDRC found, lpm: %d; cap: %p op: %p\n", |
| 199 | ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 200 | |
| 201 | /* setup lock mode ? */ |
| 202 | |
| 203 | /* ENDPTSETUPSTAT is '0' by default */ |
| 204 | |
| 205 | /* HCSPARAMS.bf.ppc SHOULD BE zero for device */ |
| 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * hw_device_reset: resets chip (execute without interruption) |
| 212 | * @ci: the controller |
| 213 | * |
| 214 | * This function returns an error code |
| 215 | */ |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 216 | int hw_device_reset(struct ci13xxx *ci, u32 mode) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 217 | { |
| 218 | /* should flush & stop before reset */ |
| 219 | hw_write(ci, OP_ENDPTFLUSH, ~0, ~0); |
| 220 | hw_write(ci, OP_USBCMD, USBCMD_RS, 0); |
| 221 | |
| 222 | hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST); |
| 223 | while (hw_read(ci, OP_USBCMD, USBCMD_RST)) |
| 224 | udelay(10); /* not RTOS friendly */ |
| 225 | |
| 226 | |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 227 | if (ci->platdata->notify_event) |
| 228 | ci->platdata->notify_event(ci, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 229 | CI13XXX_CONTROLLER_RESET_EVENT); |
| 230 | |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 231 | if (ci->platdata->flags & CI13XXX_DISABLE_STREAMING) |
Alexander Shishkin | 758fc98 | 2012-05-11 17:25:53 +0300 | [diff] [blame] | 232 | hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 233 | |
| 234 | /* USBMODE should be configured step by step */ |
| 235 | hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE); |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 236 | hw_write(ci, OP_USBMODE, USBMODE_CM, mode); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 237 | /* HW >= 2.3 */ |
| 238 | hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM); |
| 239 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 240 | if (hw_read(ci, OP_USBMODE, USBMODE_CM) != mode) { |
| 241 | pr_err("cannot enter in %s mode", ci_role(ci)->name); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 242 | pr_err("lpm = %i", ci->hw_bank.lpm); |
| 243 | return -ENODEV; |
| 244 | } |
| 245 | |
| 246 | return 0; |
| 247 | } |
| 248 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 249 | /** |
| 250 | * ci_otg_role - pick role based on ID pin state |
| 251 | * @ci: the controller |
| 252 | */ |
| 253 | static enum ci_role ci_otg_role(struct ci13xxx *ci) |
| 254 | { |
| 255 | u32 sts = hw_read(ci, OP_OTGSC, ~0); |
| 256 | enum ci_role role = sts & OTGSC_ID |
| 257 | ? CI_ROLE_GADGET |
| 258 | : CI_ROLE_HOST; |
| 259 | |
| 260 | return role; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * ci_role_work - perform role changing based on ID pin |
| 265 | * @work: work struct |
| 266 | */ |
| 267 | static void ci_role_work(struct work_struct *work) |
| 268 | { |
| 269 | struct ci13xxx *ci = container_of(work, struct ci13xxx, work); |
| 270 | enum ci_role role = ci_otg_role(ci); |
| 271 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 272 | if (role != ci->role) { |
| 273 | dev_dbg(ci->dev, "switching from %s to %s\n", |
| 274 | ci_role(ci)->name, ci->roles[role]->name); |
| 275 | |
| 276 | ci_role_stop(ci); |
| 277 | ci_role_start(ci, role); |
| 278 | } |
Alexander Shishkin | 0c3f3dc | 2013-06-11 13:41:48 +0300 | [diff] [blame] | 279 | |
| 280 | enable_irq(ci->irq); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 281 | } |
| 282 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 283 | static irqreturn_t ci_irq(int irq, void *data) |
| 284 | { |
| 285 | struct ci13xxx *ci = data; |
| 286 | irqreturn_t ret = IRQ_NONE; |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 287 | u32 otgsc = 0; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 288 | |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 289 | if (ci->is_otg) |
| 290 | otgsc = hw_read(ci, OP_OTGSC, ~0); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 291 | |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 292 | if (ci->role != CI_ROLE_END) |
| 293 | ret = ci_role(ci)->irq(ci); |
| 294 | |
| 295 | if (ci->is_otg && (otgsc & OTGSC_IDIS)) { |
| 296 | hw_write(ci, OP_OTGSC, OTGSC_IDIS, OTGSC_IDIS); |
| 297 | disable_irq_nosync(ci->irq); |
| 298 | queue_work(ci->wq, &ci->work); |
| 299 | ret = IRQ_HANDLED; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 300 | } |
| 301 | |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 302 | return ret; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 303 | } |
| 304 | |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 305 | static DEFINE_IDA(ci_ida); |
| 306 | |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 307 | struct platform_device *ci13xxx_add_device(struct device *dev, |
| 308 | struct resource *res, int nres, |
| 309 | struct ci13xxx_platform_data *platdata) |
| 310 | { |
| 311 | struct platform_device *pdev; |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 312 | int id, ret; |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 313 | |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 314 | id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL); |
| 315 | if (id < 0) |
| 316 | return ERR_PTR(id); |
| 317 | |
| 318 | pdev = platform_device_alloc("ci_hdrc", id); |
| 319 | if (!pdev) { |
| 320 | ret = -ENOMEM; |
| 321 | goto put_id; |
| 322 | } |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 323 | |
| 324 | pdev->dev.parent = dev; |
| 325 | pdev->dev.dma_mask = dev->dma_mask; |
| 326 | pdev->dev.dma_parms = dev->dma_parms; |
| 327 | dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask); |
| 328 | |
| 329 | ret = platform_device_add_resources(pdev, res, nres); |
| 330 | if (ret) |
| 331 | goto err; |
| 332 | |
| 333 | ret = platform_device_add_data(pdev, platdata, sizeof(*platdata)); |
| 334 | if (ret) |
| 335 | goto err; |
| 336 | |
| 337 | ret = platform_device_add(pdev); |
| 338 | if (ret) |
| 339 | goto err; |
| 340 | |
| 341 | return pdev; |
| 342 | |
| 343 | err: |
| 344 | platform_device_put(pdev); |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 345 | put_id: |
| 346 | ida_simple_remove(&ci_ida, id); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 347 | return ERR_PTR(ret); |
| 348 | } |
| 349 | EXPORT_SYMBOL_GPL(ci13xxx_add_device); |
| 350 | |
| 351 | void ci13xxx_remove_device(struct platform_device *pdev) |
| 352 | { |
Lothar Waßmann | 98c3553 | 2012-11-22 10:11:25 +0100 | [diff] [blame] | 353 | int id = pdev->id; |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 354 | platform_device_unregister(pdev); |
Lothar Waßmann | 98c3553 | 2012-11-22 10:11:25 +0100 | [diff] [blame] | 355 | ida_simple_remove(&ci_ida, id); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 356 | } |
| 357 | EXPORT_SYMBOL_GPL(ci13xxx_remove_device); |
| 358 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 359 | static int ci_hdrc_probe(struct platform_device *pdev) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 360 | { |
| 361 | struct device *dev = &pdev->dev; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 362 | struct ci13xxx *ci; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 363 | struct resource *res; |
| 364 | void __iomem *base; |
| 365 | int ret; |
| 366 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 367 | if (!dev->platform_data) { |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 368 | dev_err(dev, "platform data missing\n"); |
| 369 | return -ENODEV; |
| 370 | } |
| 371 | |
| 372 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Felipe Balbi | 1929081 | 2013-03-30 02:46:27 +0200 | [diff] [blame] | 373 | base = devm_ioremap_resource(dev, res); |
| 374 | if (IS_ERR(base)) |
| 375 | return PTR_ERR(base); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 376 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 377 | ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL); |
| 378 | if (!ci) { |
| 379 | dev_err(dev, "can't allocate device\n"); |
| 380 | return -ENOMEM; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 381 | } |
| 382 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 383 | ci->dev = dev; |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 384 | ci->platdata = dev->platform_data; |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 385 | if (ci->platdata->phy) |
| 386 | ci->transceiver = ci->platdata->phy; |
| 387 | else |
| 388 | ci->global_phy = true; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 389 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 390 | ret = hw_device_init(ci, base); |
| 391 | if (ret < 0) { |
| 392 | dev_err(dev, "can't initialize hardware\n"); |
| 393 | return -ENODEV; |
| 394 | } |
| 395 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 396 | ci->hw_bank.phys = res->start; |
| 397 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 398 | ci->irq = platform_get_irq(pdev, 0); |
| 399 | if (ci->irq < 0) { |
| 400 | dev_err(dev, "missing IRQ\n"); |
| 401 | return -ENODEV; |
| 402 | } |
| 403 | |
| 404 | INIT_WORK(&ci->work, ci_role_work); |
| 405 | ci->wq = create_singlethread_workqueue("ci_otg"); |
| 406 | if (!ci->wq) { |
| 407 | dev_err(dev, "can't create workqueue\n"); |
| 408 | return -ENODEV; |
| 409 | } |
| 410 | |
| 411 | /* initialize role(s) before the interrupt is requested */ |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 412 | ret = ci_hdrc_host_init(ci); |
| 413 | if (ret) |
| 414 | dev_info(dev, "doesn't support host\n"); |
| 415 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 416 | ret = ci_hdrc_gadget_init(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 417 | if (ret) |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 418 | dev_info(dev, "doesn't support gadget\n"); |
| 419 | |
| 420 | if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) { |
| 421 | dev_err(dev, "no supported roles\n"); |
| 422 | ret = -ENODEV; |
| 423 | goto rm_wq; |
| 424 | } |
| 425 | |
| 426 | if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) { |
| 427 | ci->is_otg = true; |
Richard Zhao | 86ad01a | 2012-09-12 14:58:07 +0300 | [diff] [blame] | 428 | /* ID pin needs 1ms debouce time, we delay 2ms for safe */ |
| 429 | mdelay(2); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 430 | ci->role = ci_otg_role(ci); |
| 431 | } else { |
| 432 | ci->role = ci->roles[CI_ROLE_HOST] |
| 433 | ? CI_ROLE_HOST |
| 434 | : CI_ROLE_GADGET; |
| 435 | } |
| 436 | |
| 437 | ret = ci_role_start(ci, ci->role); |
| 438 | if (ret) { |
| 439 | dev_err(dev, "can't start %s role\n", ci_role(ci)->name); |
| 440 | ret = -ENODEV; |
| 441 | goto rm_wq; |
| 442 | } |
| 443 | |
| 444 | platform_set_drvdata(pdev, ci); |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 445 | ret = request_irq(ci->irq, ci_irq, IRQF_SHARED, ci->platdata->name, |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 446 | ci); |
| 447 | if (ret) |
| 448 | goto stop; |
| 449 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 450 | if (ci->is_otg) |
| 451 | hw_write(ci, OP_OTGSC, OTGSC_IDIE, OTGSC_IDIE); |
| 452 | |
Alexander Shishkin | adf0f73 | 2013-03-30 12:53:53 +0200 | [diff] [blame] | 453 | ret = dbg_create_files(ci); |
| 454 | if (!ret) |
| 455 | return 0; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 456 | |
Alexander Shishkin | adf0f73 | 2013-03-30 12:53:53 +0200 | [diff] [blame] | 457 | free_irq(ci->irq, ci); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 458 | stop: |
| 459 | ci_role_stop(ci); |
| 460 | rm_wq: |
| 461 | flush_workqueue(ci->wq); |
| 462 | destroy_workqueue(ci->wq); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 463 | |
| 464 | return ret; |
| 465 | } |
| 466 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 467 | static int ci_hdrc_remove(struct platform_device *pdev) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 468 | { |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 469 | struct ci13xxx *ci = platform_get_drvdata(pdev); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 470 | |
Alexander Shishkin | adf0f73 | 2013-03-30 12:53:53 +0200 | [diff] [blame] | 471 | dbg_remove_files(ci); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 472 | flush_workqueue(ci->wq); |
| 473 | destroy_workqueue(ci->wq); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 474 | free_irq(ci->irq, ci); |
| 475 | ci_role_stop(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 476 | |
| 477 | return 0; |
| 478 | } |
| 479 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 480 | static struct platform_driver ci_hdrc_driver = { |
| 481 | .probe = ci_hdrc_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 482 | .remove = ci_hdrc_remove, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 483 | .driver = { |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 484 | .name = "ci_hdrc", |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 485 | }, |
| 486 | }; |
| 487 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 488 | module_platform_driver(ci_hdrc_driver); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 489 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 490 | MODULE_ALIAS("platform:ci_hdrc"); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 491 | MODULE_ALIAS("platform:ci13xxx"); |
| 492 | MODULE_LICENSE("GPL v2"); |
| 493 | MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>"); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 494 | MODULE_DESCRIPTION("ChipIdea HDRC Driver"); |