1 // SPDX-License-Identifier: GPL-2.0
3 * Cadence USBSS and USBSSP DRD Driver.
5 * Copyright (C) 2018-2020 Cadence.
6 * Copyright (C) 2019 Texas Instruments
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>
22 * cdns_set_mode - change mode of OTG Core
23 * @cdns: pointer to context structure
24 * @mode: selected mode from cdns_role
26 * Returns 0 on success otherwise negative errno
28 static int cdns_set_mode(struct cdns *cdns, enum usb_dr_mode mode)
30 void __iomem *override_reg;
34 case USB_DR_MODE_PERIPHERAL:
36 case USB_DR_MODE_HOST:
39 dev_dbg(cdns->dev, "Set controller to OTG mode\n");
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;
46 override_reg = &cdns->otg_v0_regs->ctrl1;
48 reg = readl(override_reg);
50 if (cdns->version != CDNS3_CONTROLLER_V0)
51 reg |= OVERRIDE_IDPULLUP;
53 reg |= OVERRIDE_IDPULLUP_V0;
55 writel(reg, override_reg);
57 if (cdns->version == CDNS3_CONTROLLER_V1) {
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.
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);
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.
76 usleep_range(50000, 60000);
79 dev_err(cdns->dev, "Unsupported mode of operation %d\n", mode);
86 int cdns_get_id(struct cdns *cdns)
90 id = readl(&cdns->otg_regs->sts) & OTGSTS_ID_VALUE;
91 dev_dbg(cdns->dev, "OTG ID: %d", id);
96 int cdns_get_vbus(struct cdns *cdns)
100 vbus = !!(readl(&cdns->otg_regs->sts) & OTGSTS_VBUS_VALID);
101 dev_dbg(cdns->dev, "OTG VBUS: %d", vbus);
106 void cdns_clear_vbus(struct cdns *cdns)
110 if (cdns->version != CDNSP_CONTROLLER_V2)
113 reg = readl(&cdns->otg_cdnsp_regs->override);
114 reg |= OVERRIDE_SESS_VLD_SEL;
115 writel(reg, &cdns->otg_cdnsp_regs->override);
117 EXPORT_SYMBOL_GPL(cdns_clear_vbus);
119 void cdns_set_vbus(struct cdns *cdns)
123 if (cdns->version != CDNSP_CONTROLLER_V2)
126 reg = readl(&cdns->otg_cdnsp_regs->override);
127 reg &= ~OVERRIDE_SESS_VLD_SEL;
128 writel(reg, &cdns->otg_cdnsp_regs->override);
130 EXPORT_SYMBOL_GPL(cdns_set_vbus);
132 bool cdns_is_host(struct cdns *cdns)
134 if (cdns->dr_mode == USB_DR_MODE_HOST)
136 else if (cdns_get_id(cdns) == CDNS3_ID_HOST)
142 bool cdns_is_device(struct cdns *cdns)
144 if (cdns->dr_mode == USB_DR_MODE_PERIPHERAL)
146 else if (cdns->dr_mode == USB_DR_MODE_OTG)
147 if (cdns_get_id(cdns) == CDNS3_ID_PERIPHERAL)
154 * cdns_otg_disable_irq - Disable all OTG interrupts
155 * @cdns: Pointer to controller context structure
157 static void cdns_otg_disable_irq(struct cdns *cdns)
159 writel(0, &cdns->otg_irq_regs->ien);
163 * cdns_otg_enable_irq - enable id and sess_valid interrupts
164 * @cdns: Pointer to controller context structure
166 static void cdns_otg_enable_irq(struct cdns *cdns)
168 writel(OTGIEN_ID_CHANGE_INT | OTGIEN_VBUSVALID_RISE_INT |
169 OTGIEN_VBUSVALID_FALL_INT, &cdns->otg_irq_regs->ien);
173 * cdns_drd_host_on - start host.
174 * @cdns: Pointer to controller context structure.
176 * Returns 0 on success otherwise negative errno.
178 int cdns_drd_host_on(struct cdns *cdns)
183 /* Enable host mode. */
184 writel(OTGCMD_HOST_BUS_REQ | OTGCMD_OTG_DIS,
185 &cdns->otg_regs->cmd);
187 if (cdns->version == CDNSP_CONTROLLER_V2)
188 ready_bit = OTGSTS_CDNSP_XHCI_READY;
190 ready_bit = OTGSTS_CDNS3_XHCI_READY;
192 dev_dbg(cdns->dev, "Waiting till Host mode is turned on\n");
193 ret = readl_poll_timeout_atomic(&cdns->otg_regs->sts, val,
194 val & ready_bit, 1, 100000);
197 dev_err(cdns->dev, "timeout waiting for xhci_ready\n");
199 phy_set_mode(cdns->usb2_phy, PHY_MODE_USB_HOST);
200 phy_set_mode(cdns->usb3_phy, PHY_MODE_USB_HOST);
205 * cdns_drd_host_off - stop host.
206 * @cdns: Pointer to controller context structure.
208 void cdns_drd_host_off(struct cdns *cdns)
212 writel(OTGCMD_HOST_BUS_DROP | OTGCMD_DEV_BUS_DROP |
213 OTGCMD_DEV_POWER_OFF | OTGCMD_HOST_POWER_OFF,
214 &cdns->otg_regs->cmd);
216 /* Waiting till H_IDLE state.*/
217 readl_poll_timeout_atomic(&cdns->otg_regs->state, val,
218 !(val & OTGSTATE_HOST_STATE_MASK),
220 phy_set_mode(cdns->usb2_phy, PHY_MODE_INVALID);
221 phy_set_mode(cdns->usb3_phy, PHY_MODE_INVALID);
225 * cdns_drd_gadget_on - start gadget.
226 * @cdns: Pointer to controller context structure.
228 * Returns 0 on success otherwise negative errno
230 int cdns_drd_gadget_on(struct cdns *cdns)
232 u32 reg = OTGCMD_OTG_DIS;
236 /* switch OTG core */
237 writel(OTGCMD_DEV_BUS_REQ | reg, &cdns->otg_regs->cmd);
239 dev_dbg(cdns->dev, "Waiting till Device mode is turned on\n");
241 if (cdns->version == CDNSP_CONTROLLER_V2)
242 ready_bit = OTGSTS_CDNSP_DEV_READY;
244 ready_bit = OTGSTS_CDNS3_DEV_READY;
246 ret = readl_poll_timeout_atomic(&cdns->otg_regs->sts, val,
247 val & ready_bit, 1, 100000);
249 dev_err(cdns->dev, "timeout waiting for dev_ready\n");
253 phy_set_mode(cdns->usb2_phy, PHY_MODE_USB_DEVICE);
254 phy_set_mode(cdns->usb3_phy, PHY_MODE_USB_DEVICE);
257 EXPORT_SYMBOL_GPL(cdns_drd_gadget_on);
260 * cdns_drd_gadget_off - stop gadget.
261 * @cdns: Pointer to controller context structure.
263 void cdns_drd_gadget_off(struct cdns *cdns)
268 * Driver should wait at least 10us after disabling Device
269 * before turning-off Device (DEV_BUS_DROP).
271 usleep_range(20, 30);
272 writel(OTGCMD_HOST_BUS_DROP | OTGCMD_DEV_BUS_DROP |
273 OTGCMD_DEV_POWER_OFF | OTGCMD_HOST_POWER_OFF,
274 &cdns->otg_regs->cmd);
275 /* Waiting till DEV_IDLE state.*/
276 readl_poll_timeout_atomic(&cdns->otg_regs->state, val,
277 !(val & OTGSTATE_DEV_STATE_MASK),
279 phy_set_mode(cdns->usb2_phy, PHY_MODE_INVALID);
280 phy_set_mode(cdns->usb3_phy, PHY_MODE_INVALID);
282 EXPORT_SYMBOL_GPL(cdns_drd_gadget_off);
285 * cdns_init_otg_mode - initialize drd controller
286 * @cdns: Pointer to controller context structure
288 * Returns 0 on success otherwise negative errno
290 static int cdns_init_otg_mode(struct cdns *cdns)
294 cdns_otg_disable_irq(cdns);
295 /* clear all interrupts */
296 writel(~0, &cdns->otg_irq_regs->ivect);
298 ret = cdns_set_mode(cdns, USB_DR_MODE_OTG);
302 cdns_otg_enable_irq(cdns);
308 * cdns_drd_update_mode - initialize mode of operation
309 * @cdns: Pointer to controller context structure
311 * Returns 0 on success otherwise negative errno
313 int cdns_drd_update_mode(struct cdns *cdns)
317 switch (cdns->dr_mode) {
318 case USB_DR_MODE_PERIPHERAL:
319 ret = cdns_set_mode(cdns, USB_DR_MODE_PERIPHERAL);
321 case USB_DR_MODE_HOST:
322 ret = cdns_set_mode(cdns, USB_DR_MODE_HOST);
324 case USB_DR_MODE_OTG:
325 ret = cdns_init_otg_mode(cdns);
328 dev_err(cdns->dev, "Unsupported mode of operation %d\n",
336 static irqreturn_t cdns_drd_thread_irq(int irq, void *data)
338 struct cdns *cdns = data;
340 cdns_hw_role_switch(cdns);
346 * cdns_drd_irq - interrupt handler for OTG events
348 * @irq: irq number for cdns core device
349 * @data: structure of cdns
351 * Returns IRQ_HANDLED or IRQ_NONE
353 static irqreturn_t cdns_drd_irq(int irq, void *data)
355 irqreturn_t ret = IRQ_NONE;
356 struct cdns *cdns = data;
359 if (cdns->dr_mode != USB_DR_MODE_OTG)
365 reg = readl(&cdns->otg_irq_regs->ivect);
370 if (reg & OTGIEN_ID_CHANGE_INT) {
371 dev_dbg(cdns->dev, "OTG IRQ: new ID: %d\n",
374 ret = IRQ_WAKE_THREAD;
377 if (reg & (OTGIEN_VBUSVALID_RISE_INT | OTGIEN_VBUSVALID_FALL_INT)) {
378 dev_dbg(cdns->dev, "OTG IRQ: new VBUS: %d\n",
379 cdns_get_vbus(cdns));
381 ret = IRQ_WAKE_THREAD;
384 writel(~0, &cdns->otg_irq_regs->ivect);
388 int cdns_drd_init(struct cdns *cdns)
394 regs = devm_ioremap_resource(cdns->dev, &cdns->otg_res);
396 return PTR_ERR(regs);
398 /* Detection of DRD version. Controller has been released
399 * in three versions. All are very similar and are software compatible,
400 * but they have same changes in register maps.
401 * The first register in oldest version is command register and it's
402 * read only. Driver should read 0 from it. On the other hand, in v1
403 * and v2 the first register contains device ID number which is not
404 * set to 0. Driver uses this fact to detect the proper version of
407 cdns->otg_v0_regs = regs;
408 if (!readl(&cdns->otg_v0_regs->cmd)) {
409 cdns->version = CDNS3_CONTROLLER_V0;
410 cdns->otg_v1_regs = NULL;
411 cdns->otg_cdnsp_regs = NULL;
412 cdns->otg_regs = regs;
413 cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *)
414 &cdns->otg_v0_regs->ien;
415 writel(1, &cdns->otg_v0_regs->simulate);
416 dev_dbg(cdns->dev, "DRD version v0 (%08x)\n",
417 readl(&cdns->otg_v0_regs->version));
419 cdns->otg_v0_regs = NULL;
420 cdns->otg_v1_regs = regs;
421 cdns->otg_cdnsp_regs = regs;
423 cdns->otg_regs = (void __iomem *)&cdns->otg_v1_regs->cmd;
425 if (readl(&cdns->otg_cdnsp_regs->did) == OTG_CDNSP_DID) {
426 cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *)
427 &cdns->otg_cdnsp_regs->ien;
428 cdns->version = CDNSP_CONTROLLER_V2;
430 cdns->otg_irq_regs = (struct cdns_otg_irq_regs __iomem *)
431 &cdns->otg_v1_regs->ien;
432 writel(1, &cdns->otg_v1_regs->simulate);
433 cdns->version = CDNS3_CONTROLLER_V1;
436 dev_dbg(cdns->dev, "DRD version v1 (ID: %08x, rev: %08x)\n",
437 readl(&cdns->otg_v1_regs->did),
438 readl(&cdns->otg_v1_regs->rid));
441 state = OTGSTS_STRAP(readl(&cdns->otg_regs->sts));
443 /* Update dr_mode according to STRAP configuration. */
444 cdns->dr_mode = USB_DR_MODE_OTG;
446 if ((cdns->version == CDNSP_CONTROLLER_V2 &&
447 state == OTGSTS_CDNSP_STRAP_HOST) ||
448 (cdns->version != CDNSP_CONTROLLER_V2 &&
449 state == OTGSTS_STRAP_HOST)) {
450 dev_dbg(cdns->dev, "Controller strapped to HOST\n");
451 cdns->dr_mode = USB_DR_MODE_HOST;
452 } else if ((cdns->version == CDNSP_CONTROLLER_V2 &&
453 state == OTGSTS_CDNSP_STRAP_GADGET) ||
454 (cdns->version != CDNSP_CONTROLLER_V2 &&
455 state == OTGSTS_STRAP_GADGET)) {
456 dev_dbg(cdns->dev, "Controller strapped to PERIPHERAL\n");
457 cdns->dr_mode = USB_DR_MODE_PERIPHERAL;
460 ret = devm_request_threaded_irq(cdns->dev, cdns->otg_irq,
464 dev_name(cdns->dev), cdns);
466 dev_err(cdns->dev, "couldn't get otg_irq\n");
470 state = readl(&cdns->otg_regs->sts);
471 if (OTGSTS_OTG_NRDY(state)) {
472 dev_err(cdns->dev, "Cadence USB3 OTG device not ready\n");
479 int cdns_drd_exit(struct cdns *cdns)
481 cdns_otg_disable_irq(cdns);
487 /* Indicate the cdns3 core was power lost before */
488 bool cdns_power_is_lost(struct cdns *cdns)
490 if (cdns->version == CDNS3_CONTROLLER_V0) {
491 if (!(readl(&cdns->otg_v0_regs->simulate) & BIT(0)))
494 if (!(readl(&cdns->otg_v1_regs->simulate) & BIT(0)))
499 EXPORT_SYMBOL_GPL(cdns_power_is_lost);