Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
Pawel Laszczak | 3d82904 | 2020-12-07 11:32:24 +0100 | [diff] [blame] | 3 | * Cadence USBSS and USBSSP DRD Driver. |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 4 | * |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 5 | * Copyright (C) 2018-2020 Cadence. |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 6 | * Copyright (C) 2019 Texas Instruments |
| 7 | * |
| 8 | * Author: Pawel Laszczak <pawell@cadence.com> |
| 9 | * Roger Quadros <rogerq@ti.com> |
| 10 | * |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 11 | */ |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/iopoll.h> |
| 16 | #include <linux/usb/otg.h> |
| 17 | |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 18 | #include "drd.h" |
| 19 | #include "core.h" |
| 20 | |
| 21 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 22 | * cdns_set_mode - change mode of OTG Core |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 23 | * @cdns: pointer to context structure |
| 24 | * @mode: selected mode from cdns_role |
| 25 | * |
| 26 | * Returns 0 on success otherwise negative errno |
| 27 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 28 | static int cdns_set_mode(struct cdns *cdns, enum usb_dr_mode mode) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 29 | { |
Pawel Laszczak | 6500f30 | 2020-12-15 11:27:09 +0100 | [diff] [blame] | 30 | void __iomem *override_reg; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 31 | u32 reg; |
| 32 | |
| 33 | switch (mode) { |
| 34 | case USB_DR_MODE_PERIPHERAL: |
| 35 | break; |
| 36 | case USB_DR_MODE_HOST: |
| 37 | break; |
| 38 | case USB_DR_MODE_OTG: |
| 39 | dev_dbg(cdns->dev, "Set controller to OTG mode\n"); |
Pawel Laszczak | 2eae2df | 2020-09-15 14:45:43 +0300 | [diff] [blame] | 40 | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 41 | if (cdns->version == CDNSP_CONTROLLER_V2) |
| 42 | override_reg = &cdns->otg_cdnsp_regs->override; |
| 43 | else if (cdns->version == CDNS3_CONTROLLER_V1) |
| 44 | override_reg = &cdns->otg_v1_regs->override; |
| 45 | else |
| 46 | override_reg = &cdns->otg_v0_regs->ctrl1; |
| 47 | |
| 48 | reg = readl(override_reg); |
| 49 | |
| 50 | if (cdns->version != CDNS3_CONTROLLER_V0) |
| 51 | reg |= OVERRIDE_IDPULLUP; |
| 52 | else |
| 53 | reg |= OVERRIDE_IDPULLUP_V0; |
| 54 | |
| 55 | writel(reg, override_reg); |
| 56 | |
| 57 | if (cdns->version == CDNS3_CONTROLLER_V1) { |
Pawel Laszczak | 2eae2df | 2020-09-15 14:45:43 +0300 | [diff] [blame] | 58 | /* |
| 59 | * Enable work around feature built into the |
| 60 | * controller to address issue with RX Sensitivity |
| 61 | * est (EL_17) for USB2 PHY. The issue only occures |
| 62 | * for 0x0002450D controller version. |
| 63 | */ |
| 64 | if (cdns->phyrst_a_enable) { |
| 65 | reg = readl(&cdns->otg_v1_regs->phyrst_cfg); |
| 66 | reg |= PHYRST_CFG_PHYRST_A_ENABLE; |
| 67 | writel(reg, &cdns->otg_v1_regs->phyrst_cfg); |
| 68 | } |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | /* |
| 72 | * Hardware specification says: "ID_VALUE must be valid within |
| 73 | * 50ms after idpullup is set to '1" so driver must wait |
| 74 | * 50ms before reading this pin. |
| 75 | */ |
| 76 | usleep_range(50000, 60000); |
| 77 | break; |
| 78 | default: |
| 79 | dev_err(cdns->dev, "Unsupported mode of operation %d\n", mode); |
| 80 | return -EINVAL; |
| 81 | } |
| 82 | |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 83 | return 0; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 84 | } |
| 85 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 86 | int cdns_get_id(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 87 | { |
| 88 | int id; |
| 89 | |
| 90 | id = readl(&cdns->otg_regs->sts) & OTGSTS_ID_VALUE; |
| 91 | dev_dbg(cdns->dev, "OTG ID: %d", id); |
| 92 | |
| 93 | return id; |
| 94 | } |
| 95 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 96 | int cdns_get_vbus(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 97 | { |
| 98 | int vbus; |
| 99 | |
| 100 | vbus = !!(readl(&cdns->otg_regs->sts) & OTGSTS_VBUS_VALID); |
| 101 | dev_dbg(cdns->dev, "OTG VBUS: %d", vbus); |
| 102 | |
| 103 | return vbus; |
| 104 | } |
| 105 | |
Pawel Laszczak | 3d82904 | 2020-12-07 11:32:24 +0100 | [diff] [blame] | 106 | void cdns_clear_vbus(struct cdns *cdns) |
| 107 | { |
| 108 | u32 reg; |
| 109 | |
| 110 | if (cdns->version != CDNSP_CONTROLLER_V2) |
| 111 | return; |
| 112 | |
| 113 | reg = readl(&cdns->otg_cdnsp_regs->override); |
| 114 | reg |= OVERRIDE_SESS_VLD_SEL; |
| 115 | writel(reg, &cdns->otg_cdnsp_regs->override); |
| 116 | } |
| 117 | EXPORT_SYMBOL_GPL(cdns_clear_vbus); |
| 118 | |
| 119 | void cdns_set_vbus(struct cdns *cdns) |
| 120 | { |
| 121 | u32 reg; |
| 122 | |
| 123 | if (cdns->version != CDNSP_CONTROLLER_V2) |
| 124 | return; |
| 125 | |
| 126 | reg = readl(&cdns->otg_cdnsp_regs->override); |
| 127 | reg &= ~OVERRIDE_SESS_VLD_SEL; |
| 128 | writel(reg, &cdns->otg_cdnsp_regs->override); |
| 129 | } |
| 130 | EXPORT_SYMBOL_GPL(cdns_set_vbus); |
| 131 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 132 | bool cdns_is_host(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 133 | { |
| 134 | if (cdns->dr_mode == USB_DR_MODE_HOST) |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 135 | return true; |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 136 | else if (cdns_get_id(cdns) == CDNS3_ID_HOST) |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 137 | return true; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 138 | |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 139 | return false; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 140 | } |
| 141 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 142 | bool cdns_is_device(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 143 | { |
| 144 | if (cdns->dr_mode == USB_DR_MODE_PERIPHERAL) |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 145 | return true; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 146 | else if (cdns->dr_mode == USB_DR_MODE_OTG) |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 147 | if (cdns_get_id(cdns) == CDNS3_ID_PERIPHERAL) |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 148 | return true; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 149 | |
Pawel Laszczak | 2452584 | 2020-07-13 12:05:50 +0200 | [diff] [blame] | 150 | return false; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 154 | * cdns_otg_disable_irq - Disable all OTG interrupts |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 155 | * @cdns: Pointer to controller context structure |
| 156 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 157 | static void cdns_otg_disable_irq(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 158 | { |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 159 | writel(0, &cdns->otg_irq_regs->ien); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 163 | * cdns_otg_enable_irq - enable id and sess_valid interrupts |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 164 | * @cdns: Pointer to controller context structure |
| 165 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 166 | static void cdns_otg_enable_irq(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 167 | { |
| 168 | writel(OTGIEN_ID_CHANGE_INT | OTGIEN_VBUSVALID_RISE_INT | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 169 | OTGIEN_VBUSVALID_FALL_INT, &cdns->otg_irq_regs->ien); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 173 | * cdns_drd_host_on - start host. |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 174 | * @cdns: Pointer to controller context structure. |
| 175 | * |
| 176 | * Returns 0 on success otherwise negative errno. |
| 177 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 178 | int cdns_drd_host_on(struct cdns *cdns) |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 179 | { |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 180 | u32 val, ready_bit; |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 181 | int ret; |
| 182 | |
| 183 | /* Enable host mode. */ |
| 184 | writel(OTGCMD_HOST_BUS_REQ | OTGCMD_OTG_DIS, |
| 185 | &cdns->otg_regs->cmd); |
| 186 | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 187 | if (cdns->version == CDNSP_CONTROLLER_V2) |
| 188 | ready_bit = OTGSTS_CDNSP_XHCI_READY; |
| 189 | else |
| 190 | ready_bit = OTGSTS_CDNS3_XHCI_READY; |
| 191 | |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 192 | dev_dbg(cdns->dev, "Waiting till Host mode is turned on\n"); |
| 193 | ret = readl_poll_timeout_atomic(&cdns->otg_regs->sts, val, |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 194 | val & ready_bit, 1, 100000); |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 195 | |
| 196 | if (ret) |
| 197 | dev_err(cdns->dev, "timeout waiting for xhci_ready\n"); |
| 198 | |
Peter Chen | 9f65013 | 2020-09-01 10:33:51 +0800 | [diff] [blame] | 199 | phy_set_mode(cdns->usb3_phy, PHY_MODE_USB_HOST); |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 200 | return ret; |
| 201 | } |
| 202 | |
| 203 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 204 | * cdns_drd_host_off - stop host. |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 205 | * @cdns: Pointer to controller context structure. |
| 206 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 207 | void cdns_drd_host_off(struct cdns *cdns) |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 208 | { |
| 209 | u32 val; |
| 210 | |
| 211 | writel(OTGCMD_HOST_BUS_DROP | OTGCMD_DEV_BUS_DROP | |
| 212 | OTGCMD_DEV_POWER_OFF | OTGCMD_HOST_POWER_OFF, |
| 213 | &cdns->otg_regs->cmd); |
| 214 | |
| 215 | /* Waiting till H_IDLE state.*/ |
| 216 | readl_poll_timeout_atomic(&cdns->otg_regs->state, val, |
| 217 | !(val & OTGSTATE_HOST_STATE_MASK), |
| 218 | 1, 2000000); |
Peter Chen | 9f65013 | 2020-09-01 10:33:51 +0800 | [diff] [blame] | 219 | phy_set_mode(cdns->usb3_phy, PHY_MODE_INVALID); |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 223 | * cdns_drd_gadget_on - start gadget. |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 224 | * @cdns: Pointer to controller context structure. |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 225 | * |
| 226 | * Returns 0 on success otherwise negative errno |
| 227 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 228 | int cdns_drd_gadget_on(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 229 | { |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 230 | u32 reg = OTGCMD_OTG_DIS; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 231 | u32 ready_bit; |
| 232 | int ret, val; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 233 | |
| 234 | /* switch OTG core */ |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 235 | writel(OTGCMD_DEV_BUS_REQ | reg, &cdns->otg_regs->cmd); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 236 | |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 237 | dev_dbg(cdns->dev, "Waiting till Device mode is turned on\n"); |
| 238 | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 239 | if (cdns->version == CDNSP_CONTROLLER_V2) |
| 240 | ready_bit = OTGSTS_CDNSP_DEV_READY; |
| 241 | else |
| 242 | ready_bit = OTGSTS_CDNS3_DEV_READY; |
| 243 | |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 244 | ret = readl_poll_timeout_atomic(&cdns->otg_regs->sts, val, |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 245 | val & ready_bit, 1, 100000); |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 246 | if (ret) { |
| 247 | dev_err(cdns->dev, "timeout waiting for dev_ready\n"); |
| 248 | return ret; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Peter Chen | 9f65013 | 2020-09-01 10:33:51 +0800 | [diff] [blame] | 251 | phy_set_mode(cdns->usb3_phy, PHY_MODE_USB_DEVICE); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 252 | return 0; |
| 253 | } |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 254 | EXPORT_SYMBOL_GPL(cdns_drd_gadget_on); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 255 | |
| 256 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 257 | * cdns_drd_gadget_off - stop gadget. |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 258 | * @cdns: Pointer to controller context structure. |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 259 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 260 | void cdns_drd_gadget_off(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 261 | { |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 262 | u32 val; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 263 | |
Pawel Laszczak | b2aeb6d | 2020-07-13 12:05:54 +0200 | [diff] [blame] | 264 | /* |
| 265 | * Driver should wait at least 10us after disabling Device |
| 266 | * before turning-off Device (DEV_BUS_DROP). |
| 267 | */ |
| 268 | usleep_range(20, 30); |
| 269 | writel(OTGCMD_HOST_BUS_DROP | OTGCMD_DEV_BUS_DROP | |
| 270 | OTGCMD_DEV_POWER_OFF | OTGCMD_HOST_POWER_OFF, |
| 271 | &cdns->otg_regs->cmd); |
| 272 | /* Waiting till DEV_IDLE state.*/ |
| 273 | readl_poll_timeout_atomic(&cdns->otg_regs->state, val, |
| 274 | !(val & OTGSTATE_DEV_STATE_MASK), |
| 275 | 1, 2000000); |
Peter Chen | 9f65013 | 2020-09-01 10:33:51 +0800 | [diff] [blame] | 276 | phy_set_mode(cdns->usb3_phy, PHY_MODE_INVALID); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 277 | } |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 278 | EXPORT_SYMBOL_GPL(cdns_drd_gadget_off); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 279 | |
| 280 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 281 | * cdns_init_otg_mode - initialize drd controller |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 282 | * @cdns: Pointer to controller context structure |
| 283 | * |
| 284 | * Returns 0 on success otherwise negative errno |
| 285 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 286 | static int cdns_init_otg_mode(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 287 | { |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 288 | int ret; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 289 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 290 | cdns_otg_disable_irq(cdns); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 291 | /* clear all interrupts */ |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 292 | writel(~0, &cdns->otg_irq_regs->ivect); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 293 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 294 | ret = cdns_set_mode(cdns, USB_DR_MODE_OTG); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 295 | if (ret) |
| 296 | return ret; |
| 297 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 298 | cdns_otg_enable_irq(cdns); |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 299 | |
| 300 | return 0; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 304 | * cdns_drd_update_mode - initialize mode of operation |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 305 | * @cdns: Pointer to controller context structure |
| 306 | * |
| 307 | * Returns 0 on success otherwise negative errno |
| 308 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 309 | int cdns_drd_update_mode(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 310 | { |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 311 | int ret; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 312 | |
| 313 | switch (cdns->dr_mode) { |
| 314 | case USB_DR_MODE_PERIPHERAL: |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 315 | ret = cdns_set_mode(cdns, USB_DR_MODE_PERIPHERAL); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 316 | break; |
| 317 | case USB_DR_MODE_HOST: |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 318 | ret = cdns_set_mode(cdns, USB_DR_MODE_HOST); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 319 | break; |
| 320 | case USB_DR_MODE_OTG: |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 321 | ret = cdns_init_otg_mode(cdns); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 322 | break; |
| 323 | default: |
| 324 | dev_err(cdns->dev, "Unsupported mode of operation %d\n", |
| 325 | cdns->dr_mode); |
| 326 | return -EINVAL; |
| 327 | } |
| 328 | |
| 329 | return ret; |
| 330 | } |
| 331 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 332 | static irqreturn_t cdns_drd_thread_irq(int irq, void *data) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 333 | { |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 334 | struct cdns *cdns = data; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 335 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 336 | cdns_hw_role_switch(cdns); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 337 | |
| 338 | return IRQ_HANDLED; |
| 339 | } |
| 340 | |
| 341 | /** |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 342 | * cdns_drd_irq - interrupt handler for OTG events |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 343 | * |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 344 | * @irq: irq number for cdns core device |
| 345 | * @data: structure of cdns |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 346 | * |
| 347 | * Returns IRQ_HANDLED or IRQ_NONE |
| 348 | */ |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 349 | static irqreturn_t cdns_drd_irq(int irq, void *data) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 350 | { |
| 351 | irqreturn_t ret = IRQ_NONE; |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 352 | struct cdns *cdns = data; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 353 | u32 reg; |
| 354 | |
| 355 | if (cdns->dr_mode != USB_DR_MODE_OTG) |
Pawel Laszczak | 03cce68 | 2020-07-13 12:05:49 +0200 | [diff] [blame] | 356 | return IRQ_NONE; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 357 | |
Peter Chen | b1234e3 | 2020-09-02 17:57:32 +0800 | [diff] [blame] | 358 | if (cdns->in_lpm) |
| 359 | return ret; |
| 360 | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 361 | reg = readl(&cdns->otg_irq_regs->ivect); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 362 | |
| 363 | if (!reg) |
Pawel Laszczak | 03cce68 | 2020-07-13 12:05:49 +0200 | [diff] [blame] | 364 | return IRQ_NONE; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 365 | |
| 366 | if (reg & OTGIEN_ID_CHANGE_INT) { |
| 367 | dev_dbg(cdns->dev, "OTG IRQ: new ID: %d\n", |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 368 | cdns_get_id(cdns)); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 369 | |
| 370 | ret = IRQ_WAKE_THREAD; |
| 371 | } |
| 372 | |
| 373 | if (reg & (OTGIEN_VBUSVALID_RISE_INT | OTGIEN_VBUSVALID_FALL_INT)) { |
| 374 | dev_dbg(cdns->dev, "OTG IRQ: new VBUS: %d\n", |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 375 | cdns_get_vbus(cdns)); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 376 | |
| 377 | ret = IRQ_WAKE_THREAD; |
| 378 | } |
| 379 | |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 380 | writel(~0, &cdns->otg_irq_regs->ivect); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 381 | return ret; |
| 382 | } |
| 383 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 384 | int cdns_drd_init(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 385 | { |
| 386 | void __iomem *regs; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 387 | u32 state; |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 388 | int ret; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 389 | |
| 390 | regs = devm_ioremap_resource(cdns->dev, &cdns->otg_res); |
| 391 | if (IS_ERR(regs)) |
| 392 | return PTR_ERR(regs); |
| 393 | |
| 394 | /* Detection of DRD version. Controller has been released |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 395 | * in three versions. All are very similar and are software compatible, |
| 396 | * but they have same changes in register maps. |
| 397 | * The first register in oldest version is command register and it's |
| 398 | * read only. Driver should read 0 from it. On the other hand, in v1 |
| 399 | * and v2 the first register contains device ID number which is not |
| 400 | * set to 0. Driver uses this fact to detect the proper version of |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 401 | * controller. |
| 402 | */ |
| 403 | cdns->otg_v0_regs = regs; |
| 404 | if (!readl(&cdns->otg_v0_regs->cmd)) { |
| 405 | cdns->version = CDNS3_CONTROLLER_V0; |
| 406 | cdns->otg_v1_regs = NULL; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 407 | cdns->otg_cdnsp_regs = NULL; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 408 | cdns->otg_regs = regs; |
Pawel Laszczak | 6500f30 | 2020-12-15 11:27:09 +0100 | [diff] [blame] | 409 | cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *) |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 410 | &cdns->otg_v0_regs->ien; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 411 | writel(1, &cdns->otg_v0_regs->simulate); |
Peter Chen | eed6ed6 | 2020-03-31 16:10:05 +0800 | [diff] [blame] | 412 | dev_dbg(cdns->dev, "DRD version v0 (%08x)\n", |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 413 | readl(&cdns->otg_v0_regs->version)); |
| 414 | } else { |
| 415 | cdns->otg_v0_regs = NULL; |
| 416 | cdns->otg_v1_regs = regs; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 417 | cdns->otg_cdnsp_regs = regs; |
| 418 | |
Pawel Laszczak | 6500f30 | 2020-12-15 11:27:09 +0100 | [diff] [blame] | 419 | cdns->otg_regs = (void __iomem *)&cdns->otg_v1_regs->cmd; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 420 | |
Pawel Laszczak | 6500f30 | 2020-12-15 11:27:09 +0100 | [diff] [blame] | 421 | if (readl(&cdns->otg_cdnsp_regs->did) == OTG_CDNSP_DID) { |
| 422 | cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *) |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 423 | &cdns->otg_cdnsp_regs->ien; |
| 424 | cdns->version = CDNSP_CONTROLLER_V2; |
| 425 | } else { |
Pawel Laszczak | 6500f30 | 2020-12-15 11:27:09 +0100 | [diff] [blame] | 426 | cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *) |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 427 | &cdns->otg_v1_regs->ien; |
| 428 | writel(1, &cdns->otg_v1_regs->simulate); |
| 429 | cdns->version = CDNS3_CONTROLLER_V1; |
| 430 | } |
| 431 | |
Peter Chen | eed6ed6 | 2020-03-31 16:10:05 +0800 | [diff] [blame] | 432 | dev_dbg(cdns->dev, "DRD version v1 (ID: %08x, rev: %08x)\n", |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 433 | readl(&cdns->otg_v1_regs->did), |
| 434 | readl(&cdns->otg_v1_regs->rid)); |
| 435 | } |
| 436 | |
| 437 | state = OTGSTS_STRAP(readl(&cdns->otg_regs->sts)); |
| 438 | |
| 439 | /* Update dr_mode according to STRAP configuration. */ |
| 440 | cdns->dr_mode = USB_DR_MODE_OTG; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 441 | |
| 442 | if ((cdns->version == CDNSP_CONTROLLER_V2 && |
| 443 | state == OTGSTS_CDNSP_STRAP_HOST) || |
| 444 | (cdns->version != CDNSP_CONTROLLER_V2 && |
| 445 | state == OTGSTS_STRAP_HOST)) { |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 446 | dev_dbg(cdns->dev, "Controller strapped to HOST\n"); |
| 447 | cdns->dr_mode = USB_DR_MODE_HOST; |
Pawel Laszczak | db8892b | 2020-12-07 11:32:18 +0100 | [diff] [blame] | 448 | } else if ((cdns->version == CDNSP_CONTROLLER_V2 && |
| 449 | state == OTGSTS_CDNSP_STRAP_GADGET) || |
| 450 | (cdns->version != CDNSP_CONTROLLER_V2 && |
| 451 | state == OTGSTS_STRAP_GADGET)) { |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 452 | dev_dbg(cdns->dev, "Controller strapped to PERIPHERAL\n"); |
| 453 | cdns->dr_mode = USB_DR_MODE_PERIPHERAL; |
| 454 | } |
| 455 | |
| 456 | ret = devm_request_threaded_irq(cdns->dev, cdns->otg_irq, |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 457 | cdns_drd_irq, |
| 458 | cdns_drd_thread_irq, |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 459 | IRQF_SHARED, |
| 460 | dev_name(cdns->dev), cdns); |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 461 | if (ret) { |
| 462 | dev_err(cdns->dev, "couldn't get otg_irq\n"); |
| 463 | return ret; |
| 464 | } |
| 465 | |
| 466 | state = readl(&cdns->otg_regs->sts); |
Pawel Laszczak | ecf4f82 | 2020-07-13 12:05:48 +0200 | [diff] [blame] | 467 | if (OTGSTS_OTG_NRDY(state)) { |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 468 | dev_err(cdns->dev, "Cadence USB3 OTG device not ready\n"); |
| 469 | return -ENODEV; |
| 470 | } |
| 471 | |
Pawel Laszczak | 27afe16 | 2020-07-13 12:05:47 +0200 | [diff] [blame] | 472 | return 0; |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 473 | } |
| 474 | |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 475 | int cdns_drd_exit(struct cdns *cdns) |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 476 | { |
Pawel Laszczak | 0b49004 | 2020-12-07 11:32:21 +0100 | [diff] [blame] | 477 | cdns_otg_disable_irq(cdns); |
Pawel Laszczak | 3d82904 | 2020-12-07 11:32:24 +0100 | [diff] [blame] | 478 | |
Pawel Laszczak | 7733f6c | 2019-08-26 12:19:30 +0100 | [diff] [blame] | 479 | return 0; |
| 480 | } |
Frank Li | 2cf2581 | 2021-02-18 16:51:08 -0600 | [diff] [blame] | 481 | |
| 482 | |
| 483 | /* Indicate the cdns3 core was power lost before */ |
| 484 | bool cdns_power_is_lost(struct cdns *cdns) |
| 485 | { |
| 486 | if (cdns->version == CDNS3_CONTROLLER_V1) { |
| 487 | if (!(readl(&cdns->otg_v1_regs->simulate) & BIT(0))) |
| 488 | return true; |
| 489 | } else { |
| 490 | if (!(readl(&cdns->otg_v0_regs->simulate) & BIT(0))) |
| 491 | return true; |
| 492 | } |
| 493 | return false; |
| 494 | } |
| 495 | EXPORT_SYMBOL_GPL(cdns_power_is_lost); |