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 |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 26 | * - STALL_IN: non-empty bulk-in pipes cannot be halted |
| 27 | * if defined mass storage compliance succeeds but with warnings |
| 28 | * => case 4: Hi > Dn |
| 29 | * => case 5: Hi > Di |
| 30 | * => case 8: Hi <> Do |
| 31 | * if undefined usbtest 13 fails |
| 32 | * - TRACE: enable function tracing (depends on DEBUG) |
| 33 | * |
| 34 | * Main Features |
| 35 | * - Chapter 9 & Mass Storage Compliance with Gadget File Storage |
| 36 | * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined) |
| 37 | * - Normal & LPM support |
| 38 | * |
| 39 | * USBTEST Report |
| 40 | * - OK: 0-12, 13 (STALL_IN defined) & 14 |
| 41 | * - Not Supported: 15 & 16 (ISO) |
| 42 | * |
| 43 | * TODO List |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 44 | * - Suspend & Remote Wakeup |
| 45 | */ |
| 46 | #include <linux/delay.h> |
| 47 | #include <linux/device.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 48 | #include <linux/dma-mapping.h> |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 49 | #include <linux/extcon.h> |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 50 | #include <linux/phy/phy.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 51 | #include <linux/platform_device.h> |
| 52 | #include <linux/module.h> |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 53 | #include <linux/idr.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 54 | #include <linux/interrupt.h> |
| 55 | #include <linux/io.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 56 | #include <linux/kernel.h> |
| 57 | #include <linux/slab.h> |
| 58 | #include <linux/pm_runtime.h> |
| 59 | #include <linux/usb/ch9.h> |
| 60 | #include <linux/usb/gadget.h> |
| 61 | #include <linux/usb/otg.h> |
| 62 | #include <linux/usb/chipidea.h> |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 63 | #include <linux/usb/of.h> |
Michael Grzeschik | 4f6743d | 2014-02-19 13:41:43 +0800 | [diff] [blame] | 64 | #include <linux/of.h> |
Peter Chen | 1542d9c | 2013-08-14 12:44:03 +0300 | [diff] [blame] | 65 | #include <linux/regulator/consumer.h> |
Peter Chen | 8022d3d | 2014-10-30 09:15:15 +0800 | [diff] [blame] | 66 | #include <linux/usb/ehci_def.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 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" |
Peter Chen | c10b4f0 | 2013-08-14 12:44:06 +0300 | [diff] [blame] | 72 | #include "otg.h" |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 73 | #include "otg_fsm.h" |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 74 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 75 | /* Controller register map */ |
Marc Kleine-Budde | 987e7bc | 2014-01-06 10:10:39 +0800 | [diff] [blame] | 76 | static const u8 ci_regs_nolpm[] = { |
| 77 | [CAP_CAPLENGTH] = 0x00U, |
| 78 | [CAP_HCCPARAMS] = 0x08U, |
| 79 | [CAP_DCCPARAMS] = 0x24U, |
| 80 | [CAP_TESTMODE] = 0x38U, |
| 81 | [OP_USBCMD] = 0x00U, |
| 82 | [OP_USBSTS] = 0x04U, |
| 83 | [OP_USBINTR] = 0x08U, |
| 84 | [OP_DEVICEADDR] = 0x14U, |
| 85 | [OP_ENDPTLISTADDR] = 0x18U, |
Peter Chen | 2836267 | 2015-06-18 11:51:53 +0800 | [diff] [blame] | 86 | [OP_TTCTRL] = 0x1CU, |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 87 | [OP_BURSTSIZE] = 0x20U, |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 88 | [OP_ULPI_VIEWPORT] = 0x30U, |
Marc Kleine-Budde | 987e7bc | 2014-01-06 10:10:39 +0800 | [diff] [blame] | 89 | [OP_PORTSC] = 0x44U, |
| 90 | [OP_DEVLC] = 0x84U, |
| 91 | [OP_OTGSC] = 0x64U, |
| 92 | [OP_USBMODE] = 0x68U, |
| 93 | [OP_ENDPTSETUPSTAT] = 0x6CU, |
| 94 | [OP_ENDPTPRIME] = 0x70U, |
| 95 | [OP_ENDPTFLUSH] = 0x74U, |
| 96 | [OP_ENDPTSTAT] = 0x78U, |
| 97 | [OP_ENDPTCOMPLETE] = 0x7CU, |
| 98 | [OP_ENDPTCTRL] = 0x80U, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 99 | }; |
| 100 | |
Marc Kleine-Budde | 987e7bc | 2014-01-06 10:10:39 +0800 | [diff] [blame] | 101 | static const u8 ci_regs_lpm[] = { |
| 102 | [CAP_CAPLENGTH] = 0x00U, |
| 103 | [CAP_HCCPARAMS] = 0x08U, |
| 104 | [CAP_DCCPARAMS] = 0x24U, |
| 105 | [CAP_TESTMODE] = 0xFCU, |
| 106 | [OP_USBCMD] = 0x00U, |
| 107 | [OP_USBSTS] = 0x04U, |
| 108 | [OP_USBINTR] = 0x08U, |
| 109 | [OP_DEVICEADDR] = 0x14U, |
| 110 | [OP_ENDPTLISTADDR] = 0x18U, |
Peter Chen | 2836267 | 2015-06-18 11:51:53 +0800 | [diff] [blame] | 111 | [OP_TTCTRL] = 0x1CU, |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 112 | [OP_BURSTSIZE] = 0x20U, |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 113 | [OP_ULPI_VIEWPORT] = 0x30U, |
Marc Kleine-Budde | 987e7bc | 2014-01-06 10:10:39 +0800 | [diff] [blame] | 114 | [OP_PORTSC] = 0x44U, |
| 115 | [OP_DEVLC] = 0x84U, |
| 116 | [OP_OTGSC] = 0xC4U, |
| 117 | [OP_USBMODE] = 0xC8U, |
| 118 | [OP_ENDPTSETUPSTAT] = 0xD8U, |
| 119 | [OP_ENDPTPRIME] = 0xDCU, |
| 120 | [OP_ENDPTFLUSH] = 0xE0U, |
| 121 | [OP_ENDPTSTAT] = 0xE4U, |
| 122 | [OP_ENDPTCOMPLETE] = 0xE8U, |
| 123 | [OP_ENDPTCTRL] = 0xECU, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 124 | }; |
| 125 | |
Nicholas Krause | 158ec07 | 2015-06-27 00:34:48 -0400 | [diff] [blame] | 126 | static void hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 127 | { |
| 128 | int i; |
| 129 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 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 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 142 | } |
| 143 | |
Peter Chen | cb271f3 | 2015-02-11 12:44:55 +0800 | [diff] [blame] | 144 | static enum ci_revision ci_get_revision(struct ci_hdrc *ci) |
| 145 | { |
| 146 | int ver = hw_read_id_reg(ci, ID_ID, VERSION) >> __ffs(VERSION); |
| 147 | enum ci_revision rev = CI_REVISION_UNKNOWN; |
| 148 | |
| 149 | if (ver == 0x2) { |
| 150 | rev = hw_read_id_reg(ci, ID_ID, REVISION) |
| 151 | >> __ffs(REVISION); |
| 152 | rev += CI_REVISION_20; |
| 153 | } else if (ver == 0x0) { |
| 154 | rev = CI_REVISION_1X; |
| 155 | } |
| 156 | |
| 157 | return rev; |
| 158 | } |
| 159 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 160 | /** |
Li Jun | 36304b0 | 2014-04-23 15:56:39 +0800 | [diff] [blame] | 161 | * hw_read_intr_enable: returns interrupt enable register |
| 162 | * |
Peter Chen | 1935388 | 2014-09-22 08:14:17 +0800 | [diff] [blame] | 163 | * @ci: the controller |
| 164 | * |
Li Jun | 36304b0 | 2014-04-23 15:56:39 +0800 | [diff] [blame] | 165 | * This function returns register data |
| 166 | */ |
| 167 | u32 hw_read_intr_enable(struct ci_hdrc *ci) |
| 168 | { |
| 169 | return hw_read(ci, OP_USBINTR, ~0); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * hw_read_intr_status: returns interrupt status register |
| 174 | * |
Peter Chen | 1935388 | 2014-09-22 08:14:17 +0800 | [diff] [blame] | 175 | * @ci: the controller |
| 176 | * |
Li Jun | 36304b0 | 2014-04-23 15:56:39 +0800 | [diff] [blame] | 177 | * This function returns register data |
| 178 | */ |
| 179 | u32 hw_read_intr_status(struct ci_hdrc *ci) |
| 180 | { |
| 181 | return hw_read(ci, OP_USBSTS, ~0); |
| 182 | } |
| 183 | |
| 184 | /** |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 185 | * hw_port_test_set: writes port test mode (execute without interruption) |
| 186 | * @mode: new value |
| 187 | * |
| 188 | * This function returns an error code |
| 189 | */ |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 190 | int hw_port_test_set(struct ci_hdrc *ci, u8 mode) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 191 | { |
| 192 | const u8 TEST_MODE_MAX = 7; |
| 193 | |
| 194 | if (mode > TEST_MODE_MAX) |
| 195 | return -EINVAL; |
| 196 | |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 197 | hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC)); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 198 | return 0; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * hw_port_test_get: reads port test mode value |
| 203 | * |
Peter Chen | 1935388 | 2014-09-22 08:14:17 +0800 | [diff] [blame] | 204 | * @ci: the controller |
| 205 | * |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 206 | * This function returns port test mode value |
| 207 | */ |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 208 | u8 hw_port_test_get(struct ci_hdrc *ci) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 209 | { |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 210 | return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 211 | } |
| 212 | |
Peter Chen | b82613c | 2014-11-26 13:44:28 +0800 | [diff] [blame] | 213 | static void hw_wait_phy_stable(void) |
| 214 | { |
| 215 | /* |
| 216 | * The phy needs some delay to output the stable status from low |
| 217 | * power mode. And for OTGSC, the status inputs are debounced |
| 218 | * using a 1 ms time constant, so, delay 2ms for controller to get |
| 219 | * the stable status, like vbus and id when the phy leaves low power. |
| 220 | */ |
| 221 | usleep_range(2000, 2500); |
| 222 | } |
| 223 | |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 224 | /* The PHY enters/leaves low power mode */ |
| 225 | static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable) |
| 226 | { |
| 227 | enum ci_hw_regs reg = ci->hw_bank.lpm ? OP_DEVLC : OP_PORTSC; |
| 228 | bool lpm = !!(hw_read(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm))); |
| 229 | |
Peter Chen | 6d037db | 2014-11-26 13:44:27 +0800 | [diff] [blame] | 230 | if (enable && !lpm) |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 231 | hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm), |
| 232 | PORTSC_PHCD(ci->hw_bank.lpm)); |
Peter Chen | 6d037db | 2014-11-26 13:44:27 +0800 | [diff] [blame] | 233 | else if (!enable && lpm) |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 234 | hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm), |
| 235 | 0); |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 236 | } |
| 237 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 238 | static int hw_device_init(struct ci_hdrc *ci, void __iomem *base) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 239 | { |
| 240 | u32 reg; |
| 241 | |
| 242 | /* bank is a module variable */ |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 243 | ci->hw_bank.abs = base; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 244 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 245 | ci->hw_bank.cap = ci->hw_bank.abs; |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 246 | ci->hw_bank.cap += ci->platdata->capoffset; |
Svetoslav Neykov | 938d323 | 2013-03-30 12:54:03 +0200 | [diff] [blame] | 247 | 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] | 248 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 249 | hw_alloc_regmap(ci, false); |
| 250 | reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >> |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 251 | __ffs(HCCPARAMS_LEN); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 252 | ci->hw_bank.lpm = reg; |
Chris Ruehl | aeb2c12 | 2013-12-06 16:35:12 +0800 | [diff] [blame] | 253 | if (reg) |
| 254 | hw_alloc_regmap(ci, !!reg); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 255 | ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs; |
| 256 | ci->hw_bank.size += OP_LAST; |
| 257 | ci->hw_bank.size /= sizeof(u32); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 258 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 259 | reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >> |
Felipe Balbi | 727b4dd | 2013-03-30 12:53:55 +0200 | [diff] [blame] | 260 | __ffs(DCCPARAMS_DEN); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 261 | ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */ |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 262 | |
Richard Zhao | 09c94e6 | 2012-05-15 21:58:18 +0800 | [diff] [blame] | 263 | if (ci->hw_ep_max > ENDPT_MAX) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 264 | return -ENODEV; |
| 265 | |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 266 | ci_hdrc_enter_lpm(ci, false); |
| 267 | |
Peter Chen | c344b51 | 2013-08-14 12:44:09 +0300 | [diff] [blame] | 268 | /* Disable all interrupts bits */ |
| 269 | hw_write(ci, OP_USBINTR, 0xffffffff, 0); |
| 270 | |
| 271 | /* Clear all interrupts status bits*/ |
| 272 | hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff); |
| 273 | |
Peter Chen | cb271f3 | 2015-02-11 12:44:55 +0800 | [diff] [blame] | 274 | ci->rev = ci_get_revision(ci); |
| 275 | |
| 276 | dev_dbg(ci->dev, |
| 277 | "ChipIdea HDRC found, revision: %d, lpm: %d; cap: %p op: %p\n", |
| 278 | ci->rev, ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 279 | |
| 280 | /* setup lock mode ? */ |
| 281 | |
| 282 | /* ENDPTSETUPSTAT is '0' by default */ |
| 283 | |
| 284 | /* HCSPARAMS.bf.ppc SHOULD BE zero for device */ |
| 285 | |
| 286 | return 0; |
| 287 | } |
| 288 | |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 289 | void hw_phymode_configure(struct ci_hdrc *ci) |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 290 | { |
Chris Ruehl | 3b5d3e6 | 2014-01-10 13:51:29 +0800 | [diff] [blame] | 291 | u32 portsc, lpm, sts = 0; |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 292 | |
| 293 | switch (ci->platdata->phy_mode) { |
| 294 | case USBPHY_INTERFACE_MODE_UTMI: |
| 295 | portsc = PORTSC_PTS(PTS_UTMI); |
| 296 | lpm = DEVLC_PTS(PTS_UTMI); |
| 297 | break; |
| 298 | case USBPHY_INTERFACE_MODE_UTMIW: |
| 299 | portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW; |
| 300 | lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW; |
| 301 | break; |
| 302 | case USBPHY_INTERFACE_MODE_ULPI: |
| 303 | portsc = PORTSC_PTS(PTS_ULPI); |
| 304 | lpm = DEVLC_PTS(PTS_ULPI); |
| 305 | break; |
| 306 | case USBPHY_INTERFACE_MODE_SERIAL: |
| 307 | portsc = PORTSC_PTS(PTS_SERIAL); |
| 308 | lpm = DEVLC_PTS(PTS_SERIAL); |
| 309 | sts = 1; |
| 310 | break; |
| 311 | case USBPHY_INTERFACE_MODE_HSIC: |
| 312 | portsc = PORTSC_PTS(PTS_HSIC); |
| 313 | lpm = DEVLC_PTS(PTS_HSIC); |
| 314 | break; |
| 315 | default: |
| 316 | return; |
| 317 | } |
| 318 | |
| 319 | if (ci->hw_bank.lpm) { |
| 320 | hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm); |
Chris Ruehl | 3b5d3e6 | 2014-01-10 13:51:29 +0800 | [diff] [blame] | 321 | if (sts) |
| 322 | hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS); |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 323 | } else { |
| 324 | hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc); |
Chris Ruehl | 3b5d3e6 | 2014-01-10 13:51:29 +0800 | [diff] [blame] | 325 | if (sts) |
| 326 | hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS); |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 327 | } |
| 328 | } |
Stephen Boyd | 11893da | 2016-12-28 14:57:06 -0800 | [diff] [blame] | 329 | EXPORT_SYMBOL_GPL(hw_phymode_configure); |
Michael Grzeschik | 40dcd0e | 2013-06-13 17:59:56 +0300 | [diff] [blame] | 330 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 331 | /** |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 332 | * _ci_usb_phy_init: initialize phy taking in account both phy and usb_phy |
| 333 | * interfaces |
| 334 | * @ci: the controller |
| 335 | * |
| 336 | * This function returns an error code if the phy failed to init |
| 337 | */ |
| 338 | static int _ci_usb_phy_init(struct ci_hdrc *ci) |
| 339 | { |
| 340 | int ret; |
| 341 | |
| 342 | if (ci->phy) { |
| 343 | ret = phy_init(ci->phy); |
| 344 | if (ret) |
| 345 | return ret; |
| 346 | |
| 347 | ret = phy_power_on(ci->phy); |
| 348 | if (ret) { |
| 349 | phy_exit(ci->phy); |
| 350 | return ret; |
| 351 | } |
| 352 | } else { |
| 353 | ret = usb_phy_init(ci->usb_phy); |
| 354 | } |
| 355 | |
| 356 | return ret; |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * _ci_usb_phy_exit: deinitialize phy taking in account both phy and usb_phy |
| 361 | * interfaces |
| 362 | * @ci: the controller |
| 363 | */ |
| 364 | static void ci_usb_phy_exit(struct ci_hdrc *ci) |
| 365 | { |
Stephen Boyd | 8feb368 | 2016-12-28 14:56:52 -0800 | [diff] [blame] | 366 | if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL) |
| 367 | return; |
| 368 | |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 369 | if (ci->phy) { |
| 370 | phy_power_off(ci->phy); |
| 371 | phy_exit(ci->phy); |
| 372 | } else { |
| 373 | usb_phy_shutdown(ci->usb_phy); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | /** |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 378 | * ci_usb_phy_init: initialize phy according to different phy type |
| 379 | * @ci: the controller |
Peter Chen | 1935388 | 2014-09-22 08:14:17 +0800 | [diff] [blame] | 380 | * |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 381 | * This function returns an error code if usb_phy_init has failed |
| 382 | */ |
| 383 | static int ci_usb_phy_init(struct ci_hdrc *ci) |
| 384 | { |
| 385 | int ret; |
| 386 | |
Stephen Boyd | 8feb368 | 2016-12-28 14:56:52 -0800 | [diff] [blame] | 387 | if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL) |
| 388 | return 0; |
| 389 | |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 390 | switch (ci->platdata->phy_mode) { |
| 391 | case USBPHY_INTERFACE_MODE_UTMI: |
| 392 | case USBPHY_INTERFACE_MODE_UTMIW: |
| 393 | case USBPHY_INTERFACE_MODE_HSIC: |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 394 | ret = _ci_usb_phy_init(ci); |
Peter Chen | b82613c | 2014-11-26 13:44:28 +0800 | [diff] [blame] | 395 | if (!ret) |
| 396 | hw_wait_phy_stable(); |
| 397 | else |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 398 | return ret; |
| 399 | hw_phymode_configure(ci); |
| 400 | break; |
| 401 | case USBPHY_INTERFACE_MODE_ULPI: |
| 402 | case USBPHY_INTERFACE_MODE_SERIAL: |
| 403 | hw_phymode_configure(ci); |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 404 | ret = _ci_usb_phy_init(ci); |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 405 | if (ret) |
| 406 | return ret; |
| 407 | break; |
| 408 | default: |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 409 | ret = _ci_usb_phy_init(ci); |
Peter Chen | b82613c | 2014-11-26 13:44:28 +0800 | [diff] [blame] | 410 | if (!ret) |
| 411 | hw_wait_phy_stable(); |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | return ret; |
| 415 | } |
| 416 | |
Peter Chen | bf9c85e | 2015-03-17 10:40:50 +0800 | [diff] [blame] | 417 | |
| 418 | /** |
| 419 | * ci_platform_configure: do controller configure |
| 420 | * @ci: the controller |
| 421 | * |
| 422 | */ |
| 423 | void ci_platform_configure(struct ci_hdrc *ci) |
| 424 | { |
Peter Chen | 8022d3d | 2014-10-30 09:15:15 +0800 | [diff] [blame] | 425 | bool is_device_mode, is_host_mode; |
| 426 | |
| 427 | is_device_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_DC; |
| 428 | is_host_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_HC; |
| 429 | |
Stephen Boyd | 490b63e | 2017-01-25 14:32:43 -0800 | [diff] [blame] | 430 | if (is_device_mode) { |
| 431 | phy_set_mode(ci->phy, PHY_MODE_USB_DEVICE); |
Peter Chen | 8022d3d | 2014-10-30 09:15:15 +0800 | [diff] [blame] | 432 | |
Stephen Boyd | 490b63e | 2017-01-25 14:32:43 -0800 | [diff] [blame] | 433 | if (ci->platdata->flags & CI_HDRC_DISABLE_DEVICE_STREAMING) |
| 434 | hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, |
| 435 | USBMODE_CI_SDIS); |
| 436 | } |
| 437 | |
| 438 | if (is_host_mode) { |
| 439 | phy_set_mode(ci->phy, PHY_MODE_USB_HOST); |
| 440 | |
| 441 | if (ci->platdata->flags & CI_HDRC_DISABLE_HOST_STREAMING) |
| 442 | hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, |
| 443 | USBMODE_CI_SDIS); |
| 444 | } |
Peter Chen | bf9c85e | 2015-03-17 10:40:50 +0800 | [diff] [blame] | 445 | |
| 446 | if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) { |
| 447 | if (ci->hw_bank.lpm) |
| 448 | hw_write(ci, OP_DEVLC, DEVLC_PFSC, DEVLC_PFSC); |
| 449 | else |
| 450 | hw_write(ci, OP_PORTSC, PORTSC_PFSC, PORTSC_PFSC); |
| 451 | } |
| 452 | |
| 453 | if (ci->platdata->flags & CI_HDRC_SET_NON_ZERO_TTHA) |
| 454 | hw_write(ci, OP_TTCTRL, TTCTRL_TTHA_MASK, TTCTRL_TTHA); |
Peter Chen | df96ed8 | 2014-09-22 16:45:39 +0800 | [diff] [blame] | 455 | |
| 456 | hw_write(ci, OP_USBCMD, 0xff0000, ci->platdata->itc_setting << 16); |
| 457 | |
Peter Chen | 6566871 | 2015-03-17 14:21:00 +0800 | [diff] [blame] | 458 | if (ci->platdata->flags & CI_HDRC_OVERRIDE_AHB_BURST) |
| 459 | hw_write_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK, |
| 460 | ci->platdata->ahb_burst_config); |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 461 | |
| 462 | /* override burst size, take effect only when ahb_burst_config is 0 */ |
| 463 | if (!hw_read_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK)) { |
| 464 | if (ci->platdata->flags & CI_HDRC_OVERRIDE_TX_BURST) |
| 465 | hw_write(ci, OP_BURSTSIZE, TX_BURST_MASK, |
| 466 | ci->platdata->tx_burst_size << __ffs(TX_BURST_MASK)); |
| 467 | |
| 468 | if (ci->platdata->flags & CI_HDRC_OVERRIDE_RX_BURST) |
| 469 | hw_write(ci, OP_BURSTSIZE, RX_BURST_MASK, |
| 470 | ci->platdata->rx_burst_size); |
| 471 | } |
Peter Chen | bf9c85e | 2015-03-17 10:40:50 +0800 | [diff] [blame] | 472 | } |
| 473 | |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 474 | /** |
Peter Chen | cdd278f | 2014-11-26 13:44:32 +0800 | [diff] [blame] | 475 | * hw_controller_reset: do controller reset |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 476 | * @ci: the controller |
| 477 | * |
| 478 | * This function returns an error code |
| 479 | */ |
Peter Chen | cdd278f | 2014-11-26 13:44:32 +0800 | [diff] [blame] | 480 | static int hw_controller_reset(struct ci_hdrc *ci) |
| 481 | { |
| 482 | int count = 0; |
| 483 | |
| 484 | hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST); |
| 485 | while (hw_read(ci, OP_USBCMD, USBCMD_RST)) { |
| 486 | udelay(10); |
| 487 | if (count++ > 1000) |
| 488 | return -ETIMEDOUT; |
| 489 | } |
| 490 | |
| 491 | return 0; |
| 492 | } |
| 493 | |
| 494 | /** |
| 495 | * hw_device_reset: resets chip (execute without interruption) |
| 496 | * @ci: the controller |
| 497 | * |
| 498 | * This function returns an error code |
| 499 | */ |
Peter Chen | 5b15730 | 2014-11-26 13:44:33 +0800 | [diff] [blame] | 500 | int hw_device_reset(struct ci_hdrc *ci) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 501 | { |
Peter Chen | cdd278f | 2014-11-26 13:44:32 +0800 | [diff] [blame] | 502 | int ret; |
| 503 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 504 | /* should flush & stop before reset */ |
| 505 | hw_write(ci, OP_ENDPTFLUSH, ~0, ~0); |
| 506 | hw_write(ci, OP_USBCMD, USBCMD_RS, 0); |
| 507 | |
Peter Chen | cdd278f | 2014-11-26 13:44:32 +0800 | [diff] [blame] | 508 | ret = hw_controller_reset(ci); |
| 509 | if (ret) { |
| 510 | dev_err(ci->dev, "error resetting controller, ret=%d\n", ret); |
| 511 | return ret; |
| 512 | } |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 513 | |
Stephen Boyd | 11893da | 2016-12-28 14:57:06 -0800 | [diff] [blame] | 514 | if (ci->platdata->notify_event) { |
| 515 | ret = ci->platdata->notify_event(ci, |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 516 | CI_HDRC_CONTROLLER_RESET_EVENT); |
Stephen Boyd | 11893da | 2016-12-28 14:57:06 -0800 | [diff] [blame] | 517 | if (ret) |
| 518 | return ret; |
| 519 | } |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 520 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 521 | /* USBMODE should be configured step by step */ |
| 522 | hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE); |
Peter Chen | 5b15730 | 2014-11-26 13:44:33 +0800 | [diff] [blame] | 523 | hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_DC); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 524 | /* HW >= 2.3 */ |
| 525 | hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM); |
| 526 | |
Peter Chen | 5b15730 | 2014-11-26 13:44:33 +0800 | [diff] [blame] | 527 | if (hw_read(ci, OP_USBMODE, USBMODE_CM) != USBMODE_CM_DC) { |
| 528 | pr_err("cannot enter in %s device mode", ci_role(ci)->name); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 529 | pr_err("lpm = %i", ci->hw_bank.lpm); |
| 530 | return -ENODEV; |
| 531 | } |
| 532 | |
Peter Chen | bf9c85e | 2015-03-17 10:40:50 +0800 | [diff] [blame] | 533 | ci_platform_configure(ci); |
| 534 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 535 | return 0; |
| 536 | } |
| 537 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 538 | static irqreturn_t ci_irq(int irq, void *data) |
| 539 | { |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 540 | struct ci_hdrc *ci = data; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 541 | irqreturn_t ret = IRQ_NONE; |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 542 | u32 otgsc = 0; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 543 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 544 | if (ci->in_lpm) { |
| 545 | disable_irq_nosync(irq); |
| 546 | ci->wakeup_int = true; |
| 547 | pm_runtime_get(ci->dev); |
| 548 | return IRQ_HANDLED; |
| 549 | } |
| 550 | |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 551 | if (ci->is_otg) { |
Li Jun | 0c33bf7 | 2014-04-23 15:56:38 +0800 | [diff] [blame] | 552 | otgsc = hw_read_otgsc(ci, ~0); |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 553 | if (ci_otg_is_fsm_mode(ci)) { |
| 554 | ret = ci_otg_fsm_irq(ci); |
| 555 | if (ret == IRQ_HANDLED) |
| 556 | return ret; |
| 557 | } |
| 558 | } |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 559 | |
Peter Chen | a107f8c | 2013-08-14 12:44:11 +0300 | [diff] [blame] | 560 | /* |
| 561 | * Handle id change interrupt, it indicates device/host function |
| 562 | * switch. |
| 563 | */ |
| 564 | if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) { |
| 565 | ci->id_event = true; |
Li Jun | 0c33bf7 | 2014-04-23 15:56:38 +0800 | [diff] [blame] | 566 | /* Clear ID change irq status */ |
| 567 | hw_write_otgsc(ci, OTGSC_IDIS, OTGSC_IDIS); |
Peter Chen | be6b0c1 | 2014-05-23 08:12:49 +0800 | [diff] [blame] | 568 | ci_otg_queue_work(ci); |
Peter Chen | a107f8c | 2013-08-14 12:44:11 +0300 | [diff] [blame] | 569 | return IRQ_HANDLED; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 570 | } |
| 571 | |
Peter Chen | a107f8c | 2013-08-14 12:44:11 +0300 | [diff] [blame] | 572 | /* |
| 573 | * Handle vbus change interrupt, it indicates device connection |
| 574 | * and disconnection events. |
| 575 | */ |
| 576 | if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) { |
| 577 | ci->b_sess_valid_event = true; |
Li Jun | 0c33bf7 | 2014-04-23 15:56:38 +0800 | [diff] [blame] | 578 | /* Clear BSV irq */ |
| 579 | hw_write_otgsc(ci, OTGSC_BSVIS, OTGSC_BSVIS); |
Peter Chen | be6b0c1 | 2014-05-23 08:12:49 +0800 | [diff] [blame] | 580 | ci_otg_queue_work(ci); |
Peter Chen | a107f8c | 2013-08-14 12:44:11 +0300 | [diff] [blame] | 581 | return IRQ_HANDLED; |
| 582 | } |
| 583 | |
| 584 | /* Handle device/host interrupt */ |
| 585 | if (ci->role != CI_ROLE_END) |
| 586 | ret = ci_role(ci)->irq(ci); |
| 587 | |
Richard Zhao | b183c19 | 2012-09-12 14:58:11 +0300 | [diff] [blame] | 588 | return ret; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 589 | } |
| 590 | |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 591 | static int ci_cable_notifier(struct notifier_block *nb, unsigned long event, |
| 592 | void *ptr) |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 593 | { |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 594 | struct ci_hdrc_cable *cbl = container_of(nb, struct ci_hdrc_cable, nb); |
| 595 | struct ci_hdrc *ci = cbl->ci; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 596 | |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 597 | cbl->connected = event; |
| 598 | cbl->changed = true; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 599 | |
| 600 | ci_irq(ci->irq, ci); |
| 601 | return NOTIFY_DONE; |
| 602 | } |
| 603 | |
Peter Chen | 1542d9c | 2013-08-14 12:44:03 +0300 | [diff] [blame] | 604 | static int ci_get_platdata(struct device *dev, |
| 605 | struct ci_hdrc_platform_data *platdata) |
| 606 | { |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 607 | struct extcon_dev *ext_vbus, *ext_id; |
| 608 | struct ci_hdrc_cable *cable; |
Li Jun | 7974235 | 2015-07-09 15:18:45 +0800 | [diff] [blame] | 609 | int ret; |
| 610 | |
Peter Chen | c22600c | 2013-09-17 12:37:22 +0800 | [diff] [blame] | 611 | if (!platdata->phy_mode) |
| 612 | platdata->phy_mode = of_usb_get_phy_mode(dev->of_node); |
| 613 | |
| 614 | if (!platdata->dr_mode) |
Heikki Krogerus | 06e7114 | 2015-09-21 11:14:34 +0300 | [diff] [blame] | 615 | platdata->dr_mode = usb_get_dr_mode(dev); |
Peter Chen | c22600c | 2013-09-17 12:37:22 +0800 | [diff] [blame] | 616 | |
| 617 | if (platdata->dr_mode == USB_DR_MODE_UNKNOWN) |
| 618 | platdata->dr_mode = USB_DR_MODE_OTG; |
| 619 | |
Peter Chen | c2ec3a7 | 2013-10-30 09:19:29 +0800 | [diff] [blame] | 620 | if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) { |
| 621 | /* Get the vbus regulator */ |
| 622 | platdata->reg_vbus = devm_regulator_get(dev, "vbus"); |
| 623 | if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) { |
| 624 | return -EPROBE_DEFER; |
| 625 | } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) { |
Mickael Maison | 6629467 | 2014-11-26 13:44:38 +0800 | [diff] [blame] | 626 | /* no vbus regulator is needed */ |
Peter Chen | c2ec3a7 | 2013-10-30 09:19:29 +0800 | [diff] [blame] | 627 | platdata->reg_vbus = NULL; |
| 628 | } else if (IS_ERR(platdata->reg_vbus)) { |
| 629 | dev_err(dev, "Getting regulator error: %ld\n", |
| 630 | PTR_ERR(platdata->reg_vbus)); |
| 631 | return PTR_ERR(platdata->reg_vbus); |
| 632 | } |
Peter Chen | f6a9ff0 | 2014-08-19 09:51:56 +0800 | [diff] [blame] | 633 | /* Get TPL support */ |
| 634 | if (!platdata->tpl_support) |
| 635 | platdata->tpl_support = |
| 636 | of_usb_host_tpl_support(dev->of_node); |
Peter Chen | c2ec3a7 | 2013-10-30 09:19:29 +0800 | [diff] [blame] | 637 | } |
| 638 | |
Li Jun | 7974235 | 2015-07-09 15:18:45 +0800 | [diff] [blame] | 639 | if (platdata->dr_mode == USB_DR_MODE_OTG) { |
| 640 | /* We can support HNP and SRP of OTG 2.0 */ |
| 641 | platdata->ci_otg_caps.otg_rev = 0x0200; |
| 642 | platdata->ci_otg_caps.hnp_support = true; |
| 643 | platdata->ci_otg_caps.srp_support = true; |
| 644 | |
| 645 | /* Update otg capabilities by DT properties */ |
| 646 | ret = of_usb_update_otg_caps(dev->of_node, |
| 647 | &platdata->ci_otg_caps); |
| 648 | if (ret) |
| 649 | return ret; |
| 650 | } |
| 651 | |
Heikki Krogerus | 63863b9 | 2015-09-21 11:14:32 +0300 | [diff] [blame] | 652 | if (usb_get_maximum_speed(dev) == USB_SPEED_FULL) |
Michael Grzeschik | 4f6743d | 2014-02-19 13:41:43 +0800 | [diff] [blame] | 653 | platdata->flags |= CI_HDRC_FORCE_FULLSPEED; |
| 654 | |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 655 | of_property_read_u32(dev->of_node, "phy-clkgate-delay-us", |
Fabio Estevam | 1fbf462 | 2015-09-08 22:18:14 -0300 | [diff] [blame] | 656 | &platdata->phy_clkgate_delay_us); |
| 657 | |
Peter Chen | df96ed8 | 2014-09-22 16:45:39 +0800 | [diff] [blame] | 658 | platdata->itc_setting = 1; |
Peter Chen | df96ed8 | 2014-09-22 16:45:39 +0800 | [diff] [blame] | 659 | |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 660 | of_property_read_u32(dev->of_node, "itc-setting", |
| 661 | &platdata->itc_setting); |
| 662 | |
| 663 | ret = of_property_read_u32(dev->of_node, "ahb-burst-config", |
| 664 | &platdata->ahb_burst_config); |
| 665 | if (!ret) { |
Peter Chen | 6566871 | 2015-03-17 14:21:00 +0800 | [diff] [blame] | 666 | platdata->flags |= CI_HDRC_OVERRIDE_AHB_BURST; |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 667 | } else if (ret != -EINVAL) { |
| 668 | dev_err(dev, "failed to get ahb-burst-config\n"); |
| 669 | return ret; |
Peter Chen | 6566871 | 2015-03-17 14:21:00 +0800 | [diff] [blame] | 670 | } |
| 671 | |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 672 | ret = of_property_read_u32(dev->of_node, "tx-burst-size-dword", |
| 673 | &platdata->tx_burst_size); |
| 674 | if (!ret) { |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 675 | platdata->flags |= CI_HDRC_OVERRIDE_TX_BURST; |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 676 | } else if (ret != -EINVAL) { |
| 677 | dev_err(dev, "failed to get tx-burst-size-dword\n"); |
| 678 | return ret; |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 679 | } |
| 680 | |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 681 | ret = of_property_read_u32(dev->of_node, "rx-burst-size-dword", |
| 682 | &platdata->rx_burst_size); |
| 683 | if (!ret) { |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 684 | platdata->flags |= CI_HDRC_OVERRIDE_RX_BURST; |
Saurabh Sengar | 4b19b78 | 2015-11-18 09:40:12 +0530 | [diff] [blame] | 685 | } else if (ret != -EINVAL) { |
| 686 | dev_err(dev, "failed to get rx-burst-size-dword\n"); |
| 687 | return ret; |
Peter Chen | 96625ea | 2015-03-17 17:32:45 +0800 | [diff] [blame] | 688 | } |
| 689 | |
Peter Chen | aa73818 | 2016-02-01 14:23:44 +0800 | [diff] [blame] | 690 | if (of_find_property(dev->of_node, "non-zero-ttctrl-ttha", NULL)) |
| 691 | platdata->flags |= CI_HDRC_SET_NON_ZERO_TTHA; |
| 692 | |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 693 | ext_id = ERR_PTR(-ENODEV); |
| 694 | ext_vbus = ERR_PTR(-ENODEV); |
| 695 | if (of_property_read_bool(dev->of_node, "extcon")) { |
| 696 | /* Each one of them is not mandatory */ |
| 697 | ext_vbus = extcon_get_edev_by_phandle(dev, 0); |
| 698 | if (IS_ERR(ext_vbus) && PTR_ERR(ext_vbus) != -ENODEV) |
| 699 | return PTR_ERR(ext_vbus); |
| 700 | |
| 701 | ext_id = extcon_get_edev_by_phandle(dev, 1); |
| 702 | if (IS_ERR(ext_id) && PTR_ERR(ext_id) != -ENODEV) |
| 703 | return PTR_ERR(ext_id); |
| 704 | } |
| 705 | |
| 706 | cable = &platdata->vbus_extcon; |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 707 | cable->nb.notifier_call = ci_cable_notifier; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 708 | cable->edev = ext_vbus; |
| 709 | |
| 710 | if (!IS_ERR(ext_vbus)) { |
Chanwoo Choi | 3f991aa | 2016-11-30 14:57:33 +0900 | [diff] [blame] | 711 | ret = extcon_get_state(cable->edev, EXTCON_USB); |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 712 | if (ret) |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 713 | cable->connected = true; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 714 | else |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 715 | cable->connected = false; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | cable = &platdata->id_extcon; |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 719 | cable->nb.notifier_call = ci_cable_notifier; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 720 | cable->edev = ext_id; |
| 721 | |
| 722 | if (!IS_ERR(ext_id)) { |
Chanwoo Choi | 3f991aa | 2016-11-30 14:57:33 +0900 | [diff] [blame] | 723 | ret = extcon_get_state(cable->edev, EXTCON_USB_HOST); |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 724 | if (ret) |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 725 | cable->connected = true; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 726 | else |
Stephen Boyd | 5cc4926 | 2017-01-20 15:11:55 +0800 | [diff] [blame] | 727 | cable->connected = false; |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 728 | } |
Peter Chen | 1542d9c | 2013-08-14 12:44:03 +0300 | [diff] [blame] | 729 | return 0; |
| 730 | } |
| 731 | |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 732 | static int ci_extcon_register(struct ci_hdrc *ci) |
| 733 | { |
| 734 | struct ci_hdrc_cable *id, *vbus; |
| 735 | int ret; |
| 736 | |
| 737 | id = &ci->platdata->id_extcon; |
| 738 | id->ci = ci; |
| 739 | if (!IS_ERR(id->edev)) { |
Chanwoo Choi | 3f991aa | 2016-11-30 14:57:33 +0900 | [diff] [blame] | 740 | ret = devm_extcon_register_notifier(ci->dev, id->edev, |
| 741 | EXTCON_USB_HOST, &id->nb); |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 742 | if (ret < 0) { |
| 743 | dev_err(ci->dev, "register ID failed\n"); |
| 744 | return ret; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | vbus = &ci->platdata->vbus_extcon; |
| 749 | vbus->ci = ci; |
| 750 | if (!IS_ERR(vbus->edev)) { |
Chanwoo Choi | 3f991aa | 2016-11-30 14:57:33 +0900 | [diff] [blame] | 751 | ret = devm_extcon_register_notifier(ci->dev, vbus->edev, |
| 752 | EXTCON_USB, &vbus->nb); |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 753 | if (ret < 0) { |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 754 | dev_err(ci->dev, "register VBUS failed\n"); |
| 755 | return ret; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | return 0; |
| 760 | } |
| 761 | |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 762 | static DEFINE_IDA(ci_ida); |
| 763 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 764 | struct platform_device *ci_hdrc_add_device(struct device *dev, |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 765 | struct resource *res, int nres, |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 766 | struct ci_hdrc_platform_data *platdata) |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 767 | { |
| 768 | struct platform_device *pdev; |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 769 | int id, ret; |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 770 | |
Peter Chen | 1542d9c | 2013-08-14 12:44:03 +0300 | [diff] [blame] | 771 | ret = ci_get_platdata(dev, platdata); |
| 772 | if (ret) |
| 773 | return ERR_PTR(ret); |
| 774 | |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 775 | id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL); |
| 776 | if (id < 0) |
| 777 | return ERR_PTR(id); |
| 778 | |
| 779 | pdev = platform_device_alloc("ci_hdrc", id); |
| 780 | if (!pdev) { |
| 781 | ret = -ENOMEM; |
| 782 | goto put_id; |
| 783 | } |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 784 | |
| 785 | pdev->dev.parent = dev; |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 786 | |
| 787 | ret = platform_device_add_resources(pdev, res, nres); |
| 788 | if (ret) |
| 789 | goto err; |
| 790 | |
| 791 | ret = platform_device_add_data(pdev, platdata, sizeof(*platdata)); |
| 792 | if (ret) |
| 793 | goto err; |
| 794 | |
| 795 | ret = platform_device_add(pdev); |
| 796 | if (ret) |
| 797 | goto err; |
| 798 | |
| 799 | return pdev; |
| 800 | |
| 801 | err: |
| 802 | platform_device_put(pdev); |
Richard Zhao | fe6e125 | 2012-07-07 22:56:42 +0800 | [diff] [blame] | 803 | put_id: |
| 804 | ida_simple_remove(&ci_ida, id); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 805 | return ERR_PTR(ret); |
| 806 | } |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 807 | EXPORT_SYMBOL_GPL(ci_hdrc_add_device); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 808 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 809 | void ci_hdrc_remove_device(struct platform_device *pdev) |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 810 | { |
Lothar Waßmann | 98c3553 | 2012-11-22 10:11:25 +0100 | [diff] [blame] | 811 | int id = pdev->id; |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 812 | platform_device_unregister(pdev); |
Lothar Waßmann | 98c3553 | 2012-11-22 10:11:25 +0100 | [diff] [blame] | 813 | ida_simple_remove(&ci_ida, id); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 814 | } |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 815 | EXPORT_SYMBOL_GPL(ci_hdrc_remove_device); |
Richard Zhao | cbc6dc2 | 2012-07-07 22:56:41 +0800 | [diff] [blame] | 816 | |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 817 | static inline void ci_role_destroy(struct ci_hdrc *ci) |
| 818 | { |
| 819 | ci_hdrc_gadget_destroy(ci); |
| 820 | ci_hdrc_host_destroy(ci); |
Peter Chen | cbec6bd | 2013-08-14 12:44:10 +0300 | [diff] [blame] | 821 | if (ci->is_otg) |
| 822 | ci_hdrc_otg_destroy(ci); |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 823 | } |
| 824 | |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 825 | static void ci_get_otg_capable(struct ci_hdrc *ci) |
| 826 | { |
| 827 | if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG) |
| 828 | ci->is_otg = false; |
| 829 | else |
| 830 | ci->is_otg = (hw_read(ci, CAP_DCCPARAMS, |
| 831 | DCCPARAMS_DC | DCCPARAMS_HC) |
| 832 | == (DCCPARAMS_DC | DCCPARAMS_HC)); |
Peter Chen | 2e37cfd | 2015-02-11 12:44:51 +0800 | [diff] [blame] | 833 | if (ci->is_otg) { |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 834 | dev_dbg(ci->dev, "It is OTG capable controller\n"); |
Peter Chen | 2e37cfd | 2015-02-11 12:44:51 +0800 | [diff] [blame] | 835 | /* Disable and clear all OTG irq */ |
| 836 | hw_write_otgsc(ci, OTGSC_INT_EN_BITS | OTGSC_INT_STATUS_BITS, |
| 837 | OTGSC_INT_STATUS_BITS); |
| 838 | } |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 839 | } |
| 840 | |
Peter Chen | a932a80 | 2017-03-27 10:54:27 +0800 | [diff] [blame] | 841 | static ssize_t ci_role_show(struct device *dev, struct device_attribute *attr, |
| 842 | char *buf) |
| 843 | { |
| 844 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
| 845 | |
Michael Thalmeier | cbb22eb | 2017-05-19 10:32:09 +0200 | [diff] [blame] | 846 | if (ci->role != CI_ROLE_END) |
| 847 | return sprintf(buf, "%s\n", ci_role(ci)->name); |
| 848 | |
| 849 | return 0; |
Peter Chen | a932a80 | 2017-03-27 10:54:27 +0800 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | static ssize_t ci_role_store(struct device *dev, |
| 853 | struct device_attribute *attr, const char *buf, size_t n) |
| 854 | { |
| 855 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
| 856 | enum ci_role role; |
| 857 | int ret; |
| 858 | |
| 859 | if (!(ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET])) { |
| 860 | dev_warn(dev, "Current configuration is not dual-role, quit\n"); |
| 861 | return -EPERM; |
| 862 | } |
| 863 | |
| 864 | for (role = CI_ROLE_HOST; role < CI_ROLE_END; role++) |
| 865 | if (!strncmp(buf, ci->roles[role]->name, |
| 866 | strlen(ci->roles[role]->name))) |
| 867 | break; |
| 868 | |
| 869 | if (role == CI_ROLE_END || role == ci->role) |
| 870 | return -EINVAL; |
| 871 | |
| 872 | pm_runtime_get_sync(dev); |
| 873 | disable_irq(ci->irq); |
| 874 | ci_role_stop(ci); |
| 875 | ret = ci_role_start(ci, role); |
| 876 | if (!ret && ci->role == CI_ROLE_GADGET) |
| 877 | ci_handle_vbus_change(ci); |
| 878 | enable_irq(ci->irq); |
| 879 | pm_runtime_put_sync(dev); |
| 880 | |
| 881 | return (ret == 0) ? n : ret; |
| 882 | } |
| 883 | static DEVICE_ATTR(role, 0644, ci_role_show, ci_role_store); |
| 884 | |
| 885 | static struct attribute *ci_attrs[] = { |
| 886 | &dev_attr_role.attr, |
| 887 | NULL, |
| 888 | }; |
| 889 | |
| 890 | static struct attribute_group ci_attr_group = { |
| 891 | .attrs = ci_attrs, |
| 892 | }; |
| 893 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 894 | static int ci_hdrc_probe(struct platform_device *pdev) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 895 | { |
| 896 | struct device *dev = &pdev->dev; |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 897 | struct ci_hdrc *ci; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 898 | struct resource *res; |
| 899 | void __iomem *base; |
| 900 | int ret; |
Sascha Hauer | 691962d | 2013-06-13 17:59:57 +0300 | [diff] [blame] | 901 | enum usb_dr_mode dr_mode; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 902 | |
Jingoo Han | fad5674 | 2014-02-19 13:41:42 +0800 | [diff] [blame] | 903 | if (!dev_get_platdata(dev)) { |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 904 | dev_err(dev, "platform data missing\n"); |
| 905 | return -ENODEV; |
| 906 | } |
| 907 | |
| 908 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Felipe Balbi | 1929081 | 2013-03-30 02:46:27 +0200 | [diff] [blame] | 909 | base = devm_ioremap_resource(dev, res); |
| 910 | if (IS_ERR(base)) |
| 911 | return PTR_ERR(base); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 912 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 913 | ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL); |
Fabio Estevam | d0f9924 | 2014-11-26 13:44:23 +0800 | [diff] [blame] | 914 | if (!ci) |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 915 | return -ENOMEM; |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 916 | |
Peter Chen | a5d906b | 2016-11-15 18:05:33 +0800 | [diff] [blame] | 917 | spin_lock_init(&ci->lock); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 918 | ci->dev = dev; |
Jingoo Han | fad5674 | 2014-02-19 13:41:42 +0800 | [diff] [blame] | 919 | ci->platdata = dev_get_platdata(dev); |
Peter Chen | ed8f831 | 2014-01-10 13:51:27 +0800 | [diff] [blame] | 920 | ci->imx28_write_fix = !!(ci->platdata->flags & |
| 921 | CI_HDRC_IMX28_WRITE_FIX); |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 922 | ci->supports_runtime_pm = !!(ci->platdata->flags & |
| 923 | CI_HDRC_SUPPORTS_RUNTIME_PM); |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 924 | platform_set_drvdata(pdev, ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 925 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 926 | ret = hw_device_init(ci, base); |
| 927 | if (ret < 0) { |
| 928 | dev_err(dev, "can't initialize hardware\n"); |
| 929 | return -ENODEV; |
| 930 | } |
| 931 | |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 932 | ret = ci_ulpi_init(ci); |
| 933 | if (ret) |
| 934 | return ret; |
| 935 | |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 936 | if (ci->platdata->phy) { |
| 937 | ci->phy = ci->platdata->phy; |
| 938 | } else if (ci->platdata->usb_phy) { |
Antoine Tenart | ef44cb4 | 2014-10-30 18:41:16 +0100 | [diff] [blame] | 939 | ci->usb_phy = ci->platdata->usb_phy; |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 940 | } else { |
Antoine Tenart | 21a5b57 | 2014-11-26 13:44:35 +0800 | [diff] [blame] | 941 | ci->phy = devm_phy_get(dev->parent, "usb-phy"); |
| 942 | ci->usb_phy = devm_usb_get_phy(dev->parent, USB_PHY_TYPE_USB2); |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 943 | |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 944 | /* if both generic PHY and USB PHY layers aren't enabled */ |
| 945 | if (PTR_ERR(ci->phy) == -ENOSYS && |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 946 | PTR_ERR(ci->usb_phy) == -ENXIO) { |
| 947 | ret = -ENXIO; |
| 948 | goto ulpi_exit; |
| 949 | } |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 950 | |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 951 | if (IS_ERR(ci->phy) && IS_ERR(ci->usb_phy)) { |
| 952 | ret = -EPROBE_DEFER; |
| 953 | goto ulpi_exit; |
| 954 | } |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 955 | |
| 956 | if (IS_ERR(ci->phy)) |
| 957 | ci->phy = NULL; |
| 958 | else if (IS_ERR(ci->usb_phy)) |
| 959 | ci->usb_phy = NULL; |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 960 | } |
| 961 | |
Peter Chen | d03cccf | 2014-04-23 15:56:37 +0800 | [diff] [blame] | 962 | ret = ci_usb_phy_init(ci); |
Peter Chen | 74475ed | 2013-09-24 12:47:53 +0800 | [diff] [blame] | 963 | if (ret) { |
| 964 | dev_err(dev, "unable to init phy: %d\n", ret); |
| 965 | return ret; |
| 966 | } |
| 967 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 968 | ci->hw_bank.phys = res->start; |
| 969 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 970 | ci->irq = platform_get_irq(pdev, 0); |
| 971 | if (ci->irq < 0) { |
| 972 | dev_err(dev, "missing IRQ\n"); |
Fabio Estevam | 42d1821 | 2014-02-19 13:41:44 +0800 | [diff] [blame] | 973 | ret = ci->irq; |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 974 | goto deinit_phy; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 975 | } |
| 976 | |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 977 | ci_get_otg_capable(ci); |
| 978 | |
Sascha Hauer | 691962d | 2013-06-13 17:59:57 +0300 | [diff] [blame] | 979 | dr_mode = ci->platdata->dr_mode; |
| 980 | /* initialize role(s) before the interrupt is requested */ |
| 981 | if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) { |
| 982 | ret = ci_hdrc_host_init(ci); |
| 983 | if (ret) |
| 984 | dev_info(dev, "doesn't support host\n"); |
| 985 | } |
| 986 | |
| 987 | if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) { |
| 988 | ret = ci_hdrc_gadget_init(ci); |
| 989 | if (ret) |
| 990 | dev_info(dev, "doesn't support gadget\n"); |
| 991 | } |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 992 | |
| 993 | if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) { |
| 994 | dev_err(dev, "no supported roles\n"); |
Peter Chen | 74475ed | 2013-09-24 12:47:53 +0800 | [diff] [blame] | 995 | ret = -ENODEV; |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 996 | goto deinit_phy; |
Peter Chen | cbec6bd | 2013-08-14 12:44:10 +0300 | [diff] [blame] | 997 | } |
| 998 | |
Peter Chen | 27c62c2 | 2014-09-22 08:14:16 +0800 | [diff] [blame] | 999 | if (ci->is_otg && ci->roles[CI_ROLE_GADGET]) { |
Peter Chen | cbec6bd | 2013-08-14 12:44:10 +0300 | [diff] [blame] | 1000 | ret = ci_hdrc_otg_init(ci); |
| 1001 | if (ret) { |
| 1002 | dev_err(dev, "init otg fails, ret = %d\n", ret); |
| 1003 | goto stop; |
| 1004 | } |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) { |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 1008 | if (ci->is_otg) { |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 1009 | ci->role = ci_otg_role(ci); |
Li Jun | 0c33bf7 | 2014-04-23 15:56:38 +0800 | [diff] [blame] | 1010 | /* Enable ID change irq */ |
| 1011 | hw_write_otgsc(ci, OTGSC_IDIE, OTGSC_IDIE); |
Peter Chen | 577b232 | 2013-08-14 12:44:08 +0300 | [diff] [blame] | 1012 | } else { |
| 1013 | /* |
| 1014 | * If the controller is not OTG capable, but support |
| 1015 | * role switch, the defalt role is gadget, and the |
| 1016 | * user can switch it through debugfs. |
| 1017 | */ |
| 1018 | ci->role = CI_ROLE_GADGET; |
| 1019 | } |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1020 | } else { |
| 1021 | ci->role = ci->roles[CI_ROLE_HOST] |
| 1022 | ? CI_ROLE_HOST |
| 1023 | : CI_ROLE_GADGET; |
| 1024 | } |
| 1025 | |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 1026 | if (!ci_otg_is_fsm_mode(ci)) { |
Li Jun | 961ea49 | 2015-02-11 12:45:03 +0800 | [diff] [blame] | 1027 | /* only update vbus status for peripheral */ |
| 1028 | if (ci->role == CI_ROLE_GADGET) |
| 1029 | ci_handle_vbus_change(ci); |
| 1030 | |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 1031 | ret = ci_role_start(ci, ci->role); |
| 1032 | if (ret) { |
| 1033 | dev_err(dev, "can't start %s role\n", |
| 1034 | ci_role(ci)->name); |
| 1035 | goto stop; |
| 1036 | } |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1037 | } |
| 1038 | |
Peter Chen | 4c503dd | 2014-11-26 13:44:22 +0800 | [diff] [blame] | 1039 | ret = devm_request_irq(dev, ci->irq, ci_irq, IRQF_SHARED, |
| 1040 | ci->platdata->name, ci); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1041 | if (ret) |
| 1042 | goto stop; |
| 1043 | |
Ivan T. Ivanov | 3ecb3e0 | 2015-09-07 14:45:25 +0300 | [diff] [blame] | 1044 | ret = ci_extcon_register(ci); |
| 1045 | if (ret) |
| 1046 | goto stop; |
| 1047 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1048 | if (ci->supports_runtime_pm) { |
| 1049 | pm_runtime_set_active(&pdev->dev); |
| 1050 | pm_runtime_enable(&pdev->dev); |
| 1051 | pm_runtime_set_autosuspend_delay(&pdev->dev, 2000); |
| 1052 | pm_runtime_mark_last_busy(ci->dev); |
| 1053 | pm_runtime_use_autosuspend(&pdev->dev); |
| 1054 | } |
| 1055 | |
Li Jun | 4dcf720 | 2014-04-23 15:56:50 +0800 | [diff] [blame] | 1056 | if (ci_otg_is_fsm_mode(ci)) |
| 1057 | ci_hdrc_otg_fsm_start(ci); |
| 1058 | |
Peter Chen | f8efa76 | 2015-02-11 12:44:48 +0800 | [diff] [blame] | 1059 | device_set_wakeup_capable(&pdev->dev, true); |
Alexander Shishkin | adf0f73 | 2013-03-30 12:53:53 +0200 | [diff] [blame] | 1060 | ret = dbg_create_files(ci); |
Peter Chen | a932a80 | 2017-03-27 10:54:27 +0800 | [diff] [blame] | 1061 | if (ret) |
| 1062 | goto stop; |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1063 | |
Peter Chen | a932a80 | 2017-03-27 10:54:27 +0800 | [diff] [blame] | 1064 | ret = sysfs_create_group(&dev->kobj, &ci_attr_group); |
| 1065 | if (ret) |
| 1066 | goto remove_debug; |
| 1067 | |
| 1068 | return 0; |
| 1069 | |
| 1070 | remove_debug: |
| 1071 | dbg_remove_files(ci); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1072 | stop: |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 1073 | ci_role_destroy(ci); |
Peter Chen | c859aa65 | 2014-02-19 13:41:40 +0800 | [diff] [blame] | 1074 | deinit_phy: |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 1075 | ci_usb_phy_exit(ci); |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 1076 | ulpi_exit: |
| 1077 | ci_ulpi_exit(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1078 | |
| 1079 | return ret; |
| 1080 | } |
| 1081 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 1082 | static int ci_hdrc_remove(struct platform_device *pdev) |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1083 | { |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 1084 | struct ci_hdrc *ci = platform_get_drvdata(pdev); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1085 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1086 | if (ci->supports_runtime_pm) { |
| 1087 | pm_runtime_get_sync(&pdev->dev); |
| 1088 | pm_runtime_disable(&pdev->dev); |
| 1089 | pm_runtime_put_noidle(&pdev->dev); |
| 1090 | } |
| 1091 | |
Alexander Shishkin | adf0f73 | 2013-03-30 12:53:53 +0200 | [diff] [blame] | 1092 | dbg_remove_files(ci); |
Peter Chen | a932a80 | 2017-03-27 10:54:27 +0800 | [diff] [blame] | 1093 | sysfs_remove_group(&ci->dev->kobj, &ci_attr_group); |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 1094 | ci_role_destroy(ci); |
Peter Chen | 864cf94 | 2013-09-24 12:47:55 +0800 | [diff] [blame] | 1095 | ci_hdrc_enter_lpm(ci, true); |
Antoine Tenart | 1e5e2d3 | 2014-10-30 18:41:19 +0100 | [diff] [blame] | 1096 | ci_usb_phy_exit(ci); |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 1097 | ci_ulpi_exit(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1102 | #ifdef CONFIG_PM |
Li Jun | 961ea49 | 2015-02-11 12:45:03 +0800 | [diff] [blame] | 1103 | /* Prepare wakeup by SRP before suspend */ |
| 1104 | static void ci_otg_fsm_suspend_for_srp(struct ci_hdrc *ci) |
| 1105 | { |
| 1106 | if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) && |
| 1107 | !hw_read_otgsc(ci, OTGSC_ID)) { |
| 1108 | hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP, |
| 1109 | PORTSC_PP); |
| 1110 | hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_WKCN, |
| 1111 | PORTSC_WKCN); |
| 1112 | } |
| 1113 | } |
| 1114 | |
| 1115 | /* Handle SRP when wakeup by data pulse */ |
| 1116 | static void ci_otg_fsm_wakeup_by_srp(struct ci_hdrc *ci) |
| 1117 | { |
| 1118 | if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) && |
| 1119 | (ci->fsm.a_bus_drop == 1) && (ci->fsm.a_bus_req == 0)) { |
| 1120 | if (!hw_read_otgsc(ci, OTGSC_ID)) { |
| 1121 | ci->fsm.a_srp_det = 1; |
| 1122 | ci->fsm.a_bus_drop = 0; |
| 1123 | } else { |
| 1124 | ci->fsm.id = 1; |
| 1125 | } |
| 1126 | ci_otg_queue_work(ci); |
| 1127 | } |
| 1128 | } |
| 1129 | |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1130 | static void ci_controller_suspend(struct ci_hdrc *ci) |
| 1131 | { |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1132 | disable_irq(ci->irq); |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1133 | ci_hdrc_enter_lpm(ci, true); |
Fabio Estevam | 1fbf462 | 2015-09-08 22:18:14 -0300 | [diff] [blame] | 1134 | if (ci->platdata->phy_clkgate_delay_us) |
| 1135 | usleep_range(ci->platdata->phy_clkgate_delay_us, |
| 1136 | ci->platdata->phy_clkgate_delay_us + 50); |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1137 | usb_phy_set_suspend(ci->usb_phy, 1); |
| 1138 | ci->in_lpm = true; |
| 1139 | enable_irq(ci->irq); |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | static int ci_controller_resume(struct device *dev) |
| 1143 | { |
| 1144 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 1145 | int ret; |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1146 | |
| 1147 | dev_dbg(dev, "at %s\n", __func__); |
| 1148 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1149 | if (!ci->in_lpm) { |
| 1150 | WARN_ON(1); |
| 1151 | return 0; |
| 1152 | } |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1153 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1154 | ci_hdrc_enter_lpm(ci, false); |
Stephen Boyd | 7bb7e9b | 2016-12-28 14:56:55 -0800 | [diff] [blame] | 1155 | |
| 1156 | ret = ci_ulpi_resume(ci); |
| 1157 | if (ret) |
| 1158 | return ret; |
| 1159 | |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1160 | if (ci->usb_phy) { |
| 1161 | usb_phy_set_suspend(ci->usb_phy, 0); |
| 1162 | usb_phy_set_wakeup(ci->usb_phy, false); |
| 1163 | hw_wait_phy_stable(); |
| 1164 | } |
| 1165 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1166 | ci->in_lpm = false; |
| 1167 | if (ci->wakeup_int) { |
| 1168 | ci->wakeup_int = false; |
| 1169 | pm_runtime_mark_last_busy(ci->dev); |
| 1170 | pm_runtime_put_autosuspend(ci->dev); |
| 1171 | enable_irq(ci->irq); |
Li Jun | 961ea49 | 2015-02-11 12:45:03 +0800 | [diff] [blame] | 1172 | if (ci_otg_is_fsm_mode(ci)) |
| 1173 | ci_otg_fsm_wakeup_by_srp(ci); |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1174 | } |
| 1175 | |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1176 | return 0; |
| 1177 | } |
| 1178 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1179 | #ifdef CONFIG_PM_SLEEP |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1180 | static int ci_suspend(struct device *dev) |
| 1181 | { |
| 1182 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
| 1183 | |
| 1184 | if (ci->wq) |
| 1185 | flush_workqueue(ci->wq); |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1186 | /* |
| 1187 | * Controller needs to be active during suspend, otherwise the core |
| 1188 | * may run resume when the parent is at suspend if other driver's |
| 1189 | * suspend fails, it occurs before parent's suspend has not started, |
| 1190 | * but the core suspend has finished. |
| 1191 | */ |
| 1192 | if (ci->in_lpm) |
| 1193 | pm_runtime_resume(dev); |
| 1194 | |
| 1195 | if (ci->in_lpm) { |
| 1196 | WARN_ON(1); |
| 1197 | return 0; |
| 1198 | } |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1199 | |
Peter Chen | f8efa76 | 2015-02-11 12:44:48 +0800 | [diff] [blame] | 1200 | if (device_may_wakeup(dev)) { |
Li Jun | 961ea49 | 2015-02-11 12:45:03 +0800 | [diff] [blame] | 1201 | if (ci_otg_is_fsm_mode(ci)) |
| 1202 | ci_otg_fsm_suspend_for_srp(ci); |
| 1203 | |
Peter Chen | f8efa76 | 2015-02-11 12:44:48 +0800 | [diff] [blame] | 1204 | usb_phy_set_wakeup(ci->usb_phy, true); |
| 1205 | enable_irq_wake(ci->irq); |
| 1206 | } |
| 1207 | |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1208 | ci_controller_suspend(ci); |
| 1209 | |
| 1210 | return 0; |
| 1211 | } |
| 1212 | |
| 1213 | static int ci_resume(struct device *dev) |
| 1214 | { |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1215 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
| 1216 | int ret; |
| 1217 | |
Peter Chen | f8efa76 | 2015-02-11 12:44:48 +0800 | [diff] [blame] | 1218 | if (device_may_wakeup(dev)) |
| 1219 | disable_irq_wake(ci->irq); |
| 1220 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1221 | ret = ci_controller_resume(dev); |
| 1222 | if (ret) |
| 1223 | return ret; |
| 1224 | |
| 1225 | if (ci->supports_runtime_pm) { |
| 1226 | pm_runtime_disable(dev); |
| 1227 | pm_runtime_set_active(dev); |
| 1228 | pm_runtime_enable(dev); |
| 1229 | } |
| 1230 | |
| 1231 | return ret; |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1232 | } |
| 1233 | #endif /* CONFIG_PM_SLEEP */ |
| 1234 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1235 | static int ci_runtime_suspend(struct device *dev) |
| 1236 | { |
| 1237 | struct ci_hdrc *ci = dev_get_drvdata(dev); |
| 1238 | |
| 1239 | dev_dbg(dev, "at %s\n", __func__); |
| 1240 | |
| 1241 | if (ci->in_lpm) { |
| 1242 | WARN_ON(1); |
| 1243 | return 0; |
| 1244 | } |
| 1245 | |
Li Jun | 961ea49 | 2015-02-11 12:45:03 +0800 | [diff] [blame] | 1246 | if (ci_otg_is_fsm_mode(ci)) |
| 1247 | ci_otg_fsm_suspend_for_srp(ci); |
| 1248 | |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1249 | usb_phy_set_wakeup(ci->usb_phy, true); |
| 1250 | ci_controller_suspend(ci); |
| 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
| 1255 | static int ci_runtime_resume(struct device *dev) |
| 1256 | { |
| 1257 | return ci_controller_resume(dev); |
| 1258 | } |
| 1259 | |
| 1260 | #endif /* CONFIG_PM */ |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1261 | static const struct dev_pm_ops ci_pm_ops = { |
| 1262 | SET_SYSTEM_SLEEP_PM_OPS(ci_suspend, ci_resume) |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1263 | SET_RUNTIME_PM_OPS(ci_runtime_suspend, ci_runtime_resume, NULL) |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1264 | }; |
Peter Chen | 1f874ed | 2015-02-11 12:44:45 +0800 | [diff] [blame] | 1265 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1266 | static struct platform_driver ci_hdrc_driver = { |
| 1267 | .probe = ci_hdrc_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 1268 | .remove = ci_hdrc_remove, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1269 | .driver = { |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1270 | .name = "ci_hdrc", |
Peter Chen | 8076932 | 2014-11-26 13:44:29 +0800 | [diff] [blame] | 1271 | .pm = &ci_pm_ops, |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1272 | }, |
| 1273 | }; |
| 1274 | |
Peter Chen | 2f01a33 | 2015-07-21 09:51:29 +0800 | [diff] [blame] | 1275 | static int __init ci_hdrc_platform_register(void) |
| 1276 | { |
| 1277 | ci_hdrc_host_driver_init(); |
| 1278 | return platform_driver_register(&ci_hdrc_driver); |
| 1279 | } |
| 1280 | module_init(ci_hdrc_platform_register); |
| 1281 | |
| 1282 | static void __exit ci_hdrc_platform_unregister(void) |
| 1283 | { |
| 1284 | platform_driver_unregister(&ci_hdrc_driver); |
| 1285 | } |
| 1286 | module_exit(ci_hdrc_platform_unregister); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1287 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1288 | MODULE_ALIAS("platform:ci_hdrc"); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1289 | MODULE_LICENSE("GPL v2"); |
| 1290 | MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>"); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1291 | MODULE_DESCRIPTION("ChipIdea HDRC Driver"); |