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