Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2005-2007 by Texas Instruments |
| 4 | * Some code has been taken from tusb6010.c |
| 5 | * Copyrights for that are attributable to: |
| 6 | * Copyright (C) 2006 Nokia Corporation |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 7 | * Tony Lindgren <tony@atomide.com> |
| 8 | * |
| 9 | * This file is part of the Inventra Controller Driver for Linux. |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 10 | */ |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/sched.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/list.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 16 | #include <linux/io.h> |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame] | 17 | #include <linux/of.h> |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/dma-mapping.h> |
Hema HK | 207b0e1 | 2011-02-17 12:07:22 +0530 | [diff] [blame] | 20 | #include <linux/pm_runtime.h> |
| 21 | #include <linux/err.h> |
NeilBrown | 12a19b5 | 2012-08-13 12:32:58 +1000 | [diff] [blame] | 22 | #include <linux/delay.h> |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 23 | #include <linux/usb/musb.h> |
Kishon Vijay Abraham I | 14da699 | 2014-03-06 16:38:37 +0200 | [diff] [blame] | 24 | #include <linux/phy/omap_control_phy.h> |
Roger Quadros | 8934d3e | 2013-10-03 18:12:34 +0300 | [diff] [blame] | 25 | #include <linux/of_platform.h> |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 26 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 27 | #include "musb_core.h" |
| 28 | #include "omap2430.h" |
| 29 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 30 | struct omap2430_glue { |
| 31 | struct device *dev; |
| 32 | struct platform_device *musb; |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 33 | enum musb_vbus_id_status status; |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 34 | struct work_struct omap_musb_mailbox_work; |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 35 | struct device *control_otghs; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 36 | }; |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 37 | #define glue_to_musb(g) platform_get_drvdata(g->musb) |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 38 | |
Aaro Koskinen | 4b58ed1 | 2013-03-05 13:04:24 +0200 | [diff] [blame] | 39 | static struct omap2430_glue *_glue; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 40 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 41 | static inline void omap2430_low_level_exit(struct musb *musb) |
| 42 | { |
| 43 | u32 l; |
| 44 | |
| 45 | /* in any role */ |
| 46 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 47 | l |= ENABLEFORCE; /* enable MSTANDBY */ |
| 48 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static inline void omap2430_low_level_init(struct musb *musb) |
| 52 | { |
| 53 | u32 l; |
| 54 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 55 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 56 | l &= ~ENABLEFORCE; /* disable MSTANDBY */ |
| 57 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
| 58 | } |
| 59 | |
Tony Lindgren | 12b7db2 | 2016-05-31 10:05:19 -0500 | [diff] [blame] | 60 | static int omap2430_musb_mailbox(enum musb_vbus_id_status status) |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 61 | { |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 62 | struct omap2430_glue *glue = _glue; |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 63 | |
Aaro Koskinen | f8c4b0e | 2013-03-05 13:04:23 +0200 | [diff] [blame] | 64 | if (!glue) { |
| 65 | pr_err("%s: musb core is not yet initialized\n", __func__); |
Tony Lindgren | 12b7db2 | 2016-05-31 10:05:19 -0500 | [diff] [blame] | 66 | return -EPROBE_DEFER; |
Aaro Koskinen | f8c4b0e | 2013-03-05 13:04:23 +0200 | [diff] [blame] | 67 | } |
| 68 | glue->status = status; |
| 69 | |
| 70 | if (!glue_to_musb(glue)) { |
Aaro Koskinen | 80ab72e | 2012-12-23 01:24:51 +0200 | [diff] [blame] | 71 | pr_err("%s: musb core is not yet ready\n", __func__); |
Tony Lindgren | 12b7db2 | 2016-05-31 10:05:19 -0500 | [diff] [blame] | 72 | return -EPROBE_DEFER; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 73 | } |
| 74 | |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 75 | schedule_work(&glue->omap_musb_mailbox_work); |
Tony Lindgren | 12b7db2 | 2016-05-31 10:05:19 -0500 | [diff] [blame] | 76 | |
| 77 | return 0; |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 80 | /* |
| 81 | * HDRC controls CPEN, but beware current surges during device connect. |
| 82 | * They can trigger transient overcurrent conditions that must be ignored. |
| 83 | * |
| 84 | * Note that we're skipping A_WAIT_VFALL -> A_IDLE and jumping right to B_IDLE |
| 85 | * as set by musb_set_peripheral(). |
| 86 | */ |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 87 | static void omap_musb_set_mailbox(struct omap2430_glue *glue) |
Vikram Pandita | 712d8ef | 2011-08-12 07:38:51 -0700 | [diff] [blame] | 88 | { |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 89 | struct musb *musb = glue_to_musb(glue); |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 90 | int error; |
Tony Lindgren | 21f77be | 2016-05-31 10:05:15 -0500 | [diff] [blame] | 91 | |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 92 | pm_runtime_get_sync(musb->controller); |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 93 | |
| 94 | dev_dbg(musb->controller, "VBUS %s, devctl %02x\n", |
| 95 | usb_otg_state_string(musb->xceiv->otg->state), |
| 96 | musb_readb(musb->mregs, MUSB_DEVCTL)); |
| 97 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 98 | switch (glue->status) { |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 99 | case MUSB_ID_GROUND: |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 100 | dev_dbg(musb->controller, "ID GND\n"); |
Tony Lindgren | 15f1122 | 2020-01-15 07:25:28 -0600 | [diff] [blame] | 101 | switch (musb->xceiv->otg->state) { |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 102 | case OTG_STATE_A_IDLE: |
| 103 | error = musb_set_host(musb); |
| 104 | if (error) |
| 105 | break; |
| 106 | musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE; |
| 107 | /* Fall through */ |
Tony Lindgren | 15f1122 | 2020-01-15 07:25:28 -0600 | [diff] [blame] | 108 | case OTG_STATE_A_WAIT_VRISE: |
| 109 | case OTG_STATE_A_WAIT_BCON: |
| 110 | case OTG_STATE_A_HOST: |
Tony Lindgren | 15f1122 | 2020-01-15 07:25:28 -0600 | [diff] [blame] | 111 | /* |
| 112 | * On multiple ID ground interrupts just keep enabling |
| 113 | * VBUS. At least cpcap VBUS shuts down otherwise. |
| 114 | */ |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 115 | otg_set_vbus(musb->xceiv->otg, 1); |
Tony Lindgren | 15f1122 | 2020-01-15 07:25:28 -0600 | [diff] [blame] | 116 | break; |
| 117 | default: |
| 118 | musb->xceiv->otg->state = OTG_STATE_A_IDLE; |
| 119 | musb->xceiv->last_event = USB_EVENT_ID; |
| 120 | if (musb->gadget_driver) { |
| 121 | omap_control_usb_set_mode(glue->control_otghs, |
| 122 | USB_MODE_HOST); |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 123 | otg_set_vbus(musb->xceiv->otg, 1); |
Tony Lindgren | 15f1122 | 2020-01-15 07:25:28 -0600 | [diff] [blame] | 124 | } |
| 125 | break; |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 126 | } |
| 127 | break; |
| 128 | |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 129 | case MUSB_VBUS_VALID: |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 130 | dev_dbg(musb->controller, "VBUS Connect\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 131 | |
Antoine Tenart | e47d925 | 2014-10-30 18:41:13 +0100 | [diff] [blame] | 132 | musb->xceiv->otg->state = OTG_STATE_B_IDLE; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 133 | musb->xceiv->last_event = USB_EVENT_VBUS; |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 134 | omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 135 | break; |
| 136 | |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 137 | case MUSB_ID_FLOAT: |
| 138 | case MUSB_VBUS_OFF: |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 139 | dev_dbg(musb->controller, "VBUS Disconnect\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 140 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 141 | musb->xceiv->last_event = USB_EVENT_NONE; |
Tony Lindgren | 9882710 | 2020-01-15 07:25:32 -0600 | [diff] [blame] | 142 | musb_set_peripheral(musb); |
| 143 | otg_set_vbus(musb->xceiv->otg, 0); |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 144 | omap_control_usb_set_mode(glue->control_otghs, |
| 145 | USB_MODE_DISCONNECT); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 146 | break; |
| 147 | default: |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 148 | dev_dbg(musb->controller, "ID float\n"); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 149 | } |
Tony Lindgren | ae909fe | 2016-09-12 21:48:30 -0500 | [diff] [blame] | 150 | pm_runtime_mark_last_busy(musb->controller); |
| 151 | pm_runtime_put_autosuspend(musb->controller); |
Pali Rohár | 6fa7178 | 2013-09-18 19:03:34 +0200 | [diff] [blame] | 152 | atomic_notifier_call_chain(&musb->xceiv->notifier, |
| 153 | musb->xceiv->last_event, NULL); |
Hema HK | 594632e | 2010-12-10 18:10:51 +0530 | [diff] [blame] | 154 | } |
| 155 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 156 | |
| 157 | static void omap_musb_mailbox_work(struct work_struct *mailbox_work) |
| 158 | { |
| 159 | struct omap2430_glue *glue = container_of(mailbox_work, |
| 160 | struct omap2430_glue, omap_musb_mailbox_work); |
Felipe Balbi | 8b2bc2c | 2014-04-07 10:58:01 -0500 | [diff] [blame] | 161 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 162 | omap_musb_set_mailbox(glue); |
| 163 | } |
| 164 | |
Philippe De Swert | baef653 | 2012-11-06 15:32:13 +0200 | [diff] [blame] | 165 | static irqreturn_t omap2430_musb_interrupt(int irq, void *__hci) |
| 166 | { |
| 167 | unsigned long flags; |
| 168 | irqreturn_t retval = IRQ_NONE; |
| 169 | struct musb *musb = __hci; |
| 170 | |
| 171 | spin_lock_irqsave(&musb->lock, flags); |
| 172 | |
| 173 | musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB); |
| 174 | musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX); |
| 175 | musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX); |
| 176 | |
| 177 | if (musb->int_usb || musb->int_tx || musb->int_rx) |
| 178 | retval = musb_interrupt(musb); |
| 179 | |
| 180 | spin_unlock_irqrestore(&musb->lock, flags); |
| 181 | |
| 182 | return retval; |
| 183 | } |
| 184 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 185 | static int omap2430_musb_init(struct musb *musb) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 186 | { |
Shubhrajyoti D | ad57969 | 2012-03-22 12:48:06 +0530 | [diff] [blame] | 187 | u32 l; |
| 188 | int status = 0; |
Hema Kalliguddi | ea65df5 | 2010-09-22 19:27:40 -0500 | [diff] [blame] | 189 | struct device *dev = musb->controller; |
Jingoo Han | c1a7d67 | 2013-07-30 17:03:12 +0900 | [diff] [blame] | 190 | struct musb_hdrc_platform_data *plat = dev_get_platdata(dev); |
Hema Kalliguddi | ea65df5 | 2010-09-22 19:27:40 -0500 | [diff] [blame] | 191 | struct omap_musb_board_data *data = plat->board_data; |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 192 | |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 193 | /* We require some kind of external transceiver, hooked |
| 194 | * up through ULPI. TWL4030-family PMICs include one, |
| 195 | * which needs a driver, drivers aren't always needed. |
| 196 | */ |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 197 | musb->phy = devm_phy_get(dev->parent, "usb2-phy"); |
Kishon Vijay Abraham I | 3e3101d | 2013-09-27 11:53:30 +0530 | [diff] [blame] | 198 | |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 199 | /* We can't totally remove musb->xceiv as of now because |
| 200 | * musb core uses xceiv.state and xceiv.otg. Once we have |
| 201 | * a separate state machine to handle otg, these can be moved |
| 202 | * out of xceiv and then we can start using the generic PHY |
| 203 | * framework |
| 204 | */ |
| 205 | musb->xceiv = devm_usb_get_phy_by_phandle(dev->parent, "usb-phy", 0); |
Kishon Vijay Abraham I | b16604f | 2013-01-25 08:03:26 +0530 | [diff] [blame] | 206 | |
Felipe Balbi | a90199b | 2013-03-15 10:57:40 +0200 | [diff] [blame] | 207 | if (IS_ERR(musb->xceiv)) { |
| 208 | status = PTR_ERR(musb->xceiv); |
| 209 | |
| 210 | if (status == -ENXIO) |
| 211 | return status; |
| 212 | |
Ladislav Michl | dc66ba8 | 2016-11-21 08:59:26 -0600 | [diff] [blame] | 213 | dev_dbg(dev, "HS USB OTG: no transceiver configured\n"); |
Ming Lei | 25736e0 | 2013-01-04 23:13:58 +0800 | [diff] [blame] | 214 | return -EPROBE_DEFER; |
David Brownell | 84e250f | 2009-03-31 12:30:04 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Kishon Vijay Abraham I | 3e3101d | 2013-09-27 11:53:30 +0530 | [diff] [blame] | 217 | if (IS_ERR(musb->phy)) { |
Ladislav Michl | 71127a7 | 2016-11-21 08:59:25 -0600 | [diff] [blame] | 218 | dev_err(dev, "HS USB OTG: no PHY configured\n"); |
Kishon Vijay Abraham I | 3e3101d | 2013-09-27 11:53:30 +0530 | [diff] [blame] | 219 | return PTR_ERR(musb->phy); |
| 220 | } |
Philippe De Swert | baef653 | 2012-11-06 15:32:13 +0200 | [diff] [blame] | 221 | musb->isr = omap2430_musb_interrupt; |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 222 | phy_init(musb->phy); |
Tony Lindgren | d8e5f0e | 2016-10-19 12:03:39 -0500 | [diff] [blame] | 223 | phy_power_on(musb->phy); |
Philippe De Swert | baef653 | 2012-11-06 15:32:13 +0200 | [diff] [blame] | 224 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 225 | l = musb_readl(musb->mregs, OTG_INTERFSEL); |
Maulik Mankad | de2e1b0 | 2010-03-12 10:29:07 +0200 | [diff] [blame] | 226 | |
| 227 | if (data->interface_type == MUSB_INTERFACE_UTMI) { |
| 228 | /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */ |
| 229 | l &= ~ULPI_12PIN; /* Disable ULPI */ |
| 230 | l |= UTMI_8BIT; /* Enable UTMI */ |
| 231 | } else { |
| 232 | l |= ULPI_12PIN; |
| 233 | } |
| 234 | |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 235 | musb_writel(musb->mregs, OTG_INTERFSEL, l); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 236 | |
Ladislav Michl | 71127a7 | 2016-11-21 08:59:25 -0600 | [diff] [blame] | 237 | dev_dbg(dev, "HS USB OTG: revision 0x%x, sysconfig 0x%02x, " |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 238 | "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n", |
Felipe Balbi | 8573e6a | 2010-01-21 15:33:53 +0200 | [diff] [blame] | 239 | musb_readl(musb->mregs, OTG_REVISION), |
| 240 | musb_readl(musb->mregs, OTG_SYSCONFIG), |
| 241 | musb_readl(musb->mregs, OTG_SYSSTATUS), |
| 242 | musb_readl(musb->mregs, OTG_INTERFSEL), |
| 243 | musb_readl(musb->mregs, OTG_SIMENABLE)); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 244 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 245 | return 0; |
| 246 | } |
| 247 | |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 248 | static void omap2430_musb_enable(struct musb *musb) |
| 249 | { |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 250 | struct device *dev = musb->controller; |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 251 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 252 | |
Tony Lindgren | 8b359cbc | 2020-01-15 07:25:31 -0600 | [diff] [blame] | 253 | if (glue->status == MUSB_UNKNOWN) |
| 254 | glue->status = MUSB_VBUS_OFF; |
| 255 | omap_musb_set_mailbox(glue); |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | static void omap2430_musb_disable(struct musb *musb) |
| 259 | { |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 260 | struct device *dev = musb->controller; |
| 261 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
| 262 | |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 263 | if (glue->status != MUSB_UNKNOWN) |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 264 | omap_control_usb_set_mode(glue->control_otghs, |
| 265 | USB_MODE_DISCONNECT); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 266 | } |
| 267 | |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 268 | static int omap2430_musb_exit(struct musb *musb) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 269 | { |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 270 | struct device *dev = musb->controller; |
| 271 | struct omap2430_glue *glue = dev_get_drvdata(dev->parent); |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 272 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 273 | omap2430_low_level_exit(musb); |
Tony Lindgren | d8e5f0e | 2016-10-19 12:03:39 -0500 | [diff] [blame] | 274 | phy_power_off(musb->phy); |
Kishon Vijay Abraham I | 3e3101d | 2013-09-27 11:53:30 +0530 | [diff] [blame] | 275 | phy_exit(musb->phy); |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 276 | musb->phy = NULL; |
| 277 | cancel_work_sync(&glue->omap_musb_mailbox_work); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 278 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 279 | return 0; |
| 280 | } |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 281 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 282 | static const struct musb_platform_ops omap2430_ops = { |
Tony Lindgren | f8e9f34f | 2015-05-01 12:29:27 -0700 | [diff] [blame] | 283 | .quirks = MUSB_DMA_INVENTRA, |
Tony Lindgren | 7f6283e | 2015-05-01 12:29:28 -0700 | [diff] [blame] | 284 | #ifdef CONFIG_USB_INVENTRA_DMA |
| 285 | .dma_init = musbhs_dma_controller_create, |
| 286 | .dma_exit = musbhs_dma_controller_destroy, |
| 287 | #endif |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 288 | .init = omap2430_musb_init, |
| 289 | .exit = omap2430_musb_exit, |
| 290 | |
Hema HK | 002eda1 | 2011-02-17 12:06:10 +0530 | [diff] [blame] | 291 | .enable = omap2430_musb_enable, |
| 292 | .disable = omap2430_musb_disable, |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 293 | |
| 294 | .phy_callback = omap2430_musb_mailbox, |
Felipe Balbi | 743411b | 2010-12-01 13:22:05 +0200 | [diff] [blame] | 295 | }; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 296 | |
| 297 | static u64 omap2430_dmamask = DMA_BIT_MASK(32); |
| 298 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 299 | static int omap2430_probe(struct platform_device *pdev) |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 300 | { |
Kishon Vijay Abraham I | c1f01be | 2013-07-17 10:51:22 +0300 | [diff] [blame] | 301 | struct resource musb_resources[3]; |
Jingoo Han | c1a7d67 | 2013-07-30 17:03:12 +0900 | [diff] [blame] | 302 | struct musb_hdrc_platform_data *pdata = dev_get_platdata(&pdev->dev); |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame] | 303 | struct omap_musb_board_data *data; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 304 | struct platform_device *musb; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 305 | struct omap2430_glue *glue; |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame] | 306 | struct device_node *np = pdev->dev.of_node; |
| 307 | struct musb_hdrc_config *config; |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 308 | struct device_node *control_node; |
| 309 | struct platform_device *control_pdev; |
Tony Lindgren | 606bf4d | 2015-02-04 06:28:49 -0800 | [diff] [blame] | 310 | int ret = -ENOMEM, val; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 311 | |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 312 | if (!np) |
| 313 | return -ENODEV; |
| 314 | |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 315 | glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL); |
Peter Chen | af1bdfc | 2014-10-14 15:56:08 +0800 | [diff] [blame] | 316 | if (!glue) |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 317 | goto err0; |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 318 | |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 319 | musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO); |
| 320 | if (!musb) { |
| 321 | dev_err(&pdev->dev, "failed to allocate musb device\n"); |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 322 | goto err0; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | musb->dev.parent = &pdev->dev; |
| 326 | musb->dev.dma_mask = &omap2430_dmamask; |
| 327 | musb->dev.coherent_dma_mask = omap2430_dmamask; |
| 328 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 329 | glue->dev = &pdev->dev; |
| 330 | glue->musb = musb; |
Tony Lindgren | 8055555 | 2015-11-30 21:37:12 -0800 | [diff] [blame] | 331 | glue->status = MUSB_UNKNOWN; |
Roger Quadros | 8934d3e | 2013-10-03 18:12:34 +0300 | [diff] [blame] | 332 | glue->control_otghs = ERR_PTR(-ENODEV); |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 333 | |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 334 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 335 | if (!pdata) |
| 336 | goto err2; |
Roger Quadros | 8934d3e | 2013-10-03 18:12:34 +0300 | [diff] [blame] | 337 | |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 338 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); |
| 339 | if (!data) |
| 340 | goto err2; |
| 341 | |
| 342 | config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL); |
| 343 | if (!config) |
| 344 | goto err2; |
| 345 | |
| 346 | of_property_read_u32(np, "mode", (u32 *)&pdata->mode); |
| 347 | of_property_read_u32(np, "interface-type", |
| 348 | (u32 *)&data->interface_type); |
| 349 | of_property_read_u32(np, "num-eps", (u32 *)&config->num_eps); |
| 350 | of_property_read_u32(np, "ram-bits", (u32 *)&config->ram_bits); |
| 351 | of_property_read_u32(np, "power", (u32 *)&pdata->power); |
| 352 | |
| 353 | ret = of_property_read_u32(np, "multipoint", &val); |
| 354 | if (!ret && val) |
| 355 | config->multipoint = true; |
| 356 | |
| 357 | pdata->board_data = data; |
| 358 | pdata->config = config; |
| 359 | |
| 360 | control_node = of_parse_phandle(np, "ctrl-module", 0); |
| 361 | if (control_node) { |
| 362 | control_pdev = of_find_device_by_node(control_node); |
| 363 | if (!control_pdev) { |
| 364 | dev_err(&pdev->dev, "Failed to get control device\n"); |
| 365 | ret = -EINVAL; |
Sebastian Andrzej Siewior | 2f77116 | 2012-10-31 16:12:43 +0100 | [diff] [blame] | 366 | goto err2; |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 367 | } |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 368 | glue->control_otghs = &control_pdev->dev; |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 369 | } |
Johan Hovold | 5ee1787 | 2018-04-18 11:26:22 +0200 | [diff] [blame] | 370 | |
Felipe Balbi | f7ec943 | 2010-12-02 09:48:58 +0200 | [diff] [blame] | 371 | pdata->platform_ops = &omap2430_ops; |
| 372 | |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 373 | platform_set_drvdata(pdev, glue); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 374 | |
Kishon Vijay Abraham I | c972143 | 2012-06-22 17:40:52 +0530 | [diff] [blame] | 375 | /* |
| 376 | * REVISIT if we ever have two instances of the wrapper, we will be |
| 377 | * in big trouble |
| 378 | */ |
| 379 | _glue = glue; |
| 380 | |
Kishon Vijay Abraham I | 1e5acb8 | 2012-06-22 17:40:51 +0530 | [diff] [blame] | 381 | INIT_WORK(&glue->omap_musb_mailbox_work, omap_musb_mailbox_work); |
| 382 | |
Sebastian Andrzej Siewior | 3a0ddc7 | 2013-06-25 09:41:02 +0200 | [diff] [blame] | 383 | memset(musb_resources, 0x00, sizeof(*musb_resources) * |
Felipe Balbi | 09fc7d2 | 2013-04-24 17:21:42 +0300 | [diff] [blame] | 384 | ARRAY_SIZE(musb_resources)); |
| 385 | |
| 386 | musb_resources[0].name = pdev->resource[0].name; |
| 387 | musb_resources[0].start = pdev->resource[0].start; |
| 388 | musb_resources[0].end = pdev->resource[0].end; |
| 389 | musb_resources[0].flags = pdev->resource[0].flags; |
| 390 | |
| 391 | musb_resources[1].name = pdev->resource[1].name; |
| 392 | musb_resources[1].start = pdev->resource[1].start; |
| 393 | musb_resources[1].end = pdev->resource[1].end; |
| 394 | musb_resources[1].flags = pdev->resource[1].flags; |
| 395 | |
Kishon Vijay Abraham I | c1f01be | 2013-07-17 10:51:22 +0300 | [diff] [blame] | 396 | musb_resources[2].name = pdev->resource[2].name; |
| 397 | musb_resources[2].start = pdev->resource[2].start; |
| 398 | musb_resources[2].end = pdev->resource[2].end; |
| 399 | musb_resources[2].flags = pdev->resource[2].flags; |
| 400 | |
Felipe Balbi | 09fc7d2 | 2013-04-24 17:21:42 +0300 | [diff] [blame] | 401 | ret = platform_device_add_resources(musb, musb_resources, |
| 402 | ARRAY_SIZE(musb_resources)); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 403 | if (ret) { |
| 404 | dev_err(&pdev->dev, "failed to add resources\n"); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 405 | goto err2; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | ret = platform_device_add_data(musb, pdata, sizeof(*pdata)); |
| 409 | if (ret) { |
| 410 | dev_err(&pdev->dev, "failed to add platform_data\n"); |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 411 | goto err2; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 412 | } |
| 413 | |
Tony Lindgren | 87326e8 | 2016-05-31 10:05:20 -0500 | [diff] [blame] | 414 | pm_runtime_enable(glue->dev); |
Kishon Vijay Abraham I | 3006dc8 | 2012-03-21 21:30:20 +0530 | [diff] [blame] | 415 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 416 | ret = platform_device_add(musb); |
| 417 | if (ret) { |
| 418 | dev_err(&pdev->dev, "failed to register musb device\n"); |
Tony Lindgren | 536d599 | 2016-11-16 13:21:25 -0600 | [diff] [blame] | 419 | goto err3; |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | return 0; |
| 423 | |
Tony Lindgren | 536d599 | 2016-11-16 13:21:25 -0600 | [diff] [blame] | 424 | err3: |
| 425 | pm_runtime_disable(glue->dev); |
| 426 | |
B, Ravi | 65b3d52 | 2012-08-31 11:09:49 +0000 | [diff] [blame] | 427 | err2: |
Kishon Vijay Abraham I | b1183c2 | 2012-06-22 17:40:54 +0530 | [diff] [blame] | 428 | platform_device_put(musb); |
Felipe Balbi | a3cee12 | 2010-12-02 09:27:29 +0200 | [diff] [blame] | 429 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 430 | err0: |
| 431 | return ret; |
| 432 | } |
| 433 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 434 | static int omap2430_remove(struct platform_device *pdev) |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 435 | { |
Tony Lindgren | 21f77be | 2016-05-31 10:05:15 -0500 | [diff] [blame] | 436 | struct omap2430_glue *glue = platform_get_drvdata(pdev); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 437 | |
Kishon Vijay Abraham I | f039df5 | 2012-08-02 15:30:07 +0530 | [diff] [blame] | 438 | platform_device_unregister(glue->musb); |
Tony Lindgren | 03e4352 | 2015-11-30 21:37:13 -0800 | [diff] [blame] | 439 | pm_runtime_disable(glue->dev); |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 444 | #ifdef CONFIG_PM |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 445 | |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 446 | static int omap2430_runtime_suspend(struct device *dev) |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 447 | { |
| 448 | struct omap2430_glue *glue = dev_get_drvdata(dev); |
| 449 | struct musb *musb = glue_to_musb(glue); |
| 450 | |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 451 | if (!musb) |
| 452 | return 0; |
Hema HK | e25bec1 | 2011-09-07 09:19:24 -0700 | [diff] [blame] | 453 | |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 454 | musb->context.otg_interfsel = musb_readl(musb->mregs, |
| 455 | OTG_INTERFSEL); |
| 456 | |
| 457 | omap2430_low_level_exit(musb); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 458 | |
Tony Lindgren | 10ac7e7 | 2019-04-30 09:59:36 -0500 | [diff] [blame] | 459 | phy_power_off(musb->phy); |
| 460 | phy_exit(musb->phy); |
| 461 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 462 | return 0; |
| 463 | } |
| 464 | |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 465 | static int omap2430_runtime_resume(struct device *dev) |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 466 | { |
| 467 | struct omap2430_glue *glue = dev_get_drvdata(dev); |
| 468 | struct musb *musb = glue_to_musb(glue); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 469 | |
Tony Lindgren | 8f2279d | 2015-10-28 10:16:04 -0700 | [diff] [blame] | 470 | if (!musb) |
Tony Lindgren | a83e17d | 2016-05-31 10:05:16 -0500 | [diff] [blame] | 471 | return 0; |
Tony Lindgren | 8f2279d | 2015-10-28 10:16:04 -0700 | [diff] [blame] | 472 | |
Tony Lindgren | 10ac7e7 | 2019-04-30 09:59:36 -0500 | [diff] [blame] | 473 | phy_init(musb->phy); |
| 474 | phy_power_on(musb->phy); |
| 475 | |
Tony Lindgren | 8f2279d | 2015-10-28 10:16:04 -0700 | [diff] [blame] | 476 | omap2430_low_level_init(musb); |
| 477 | musb_writel(musb->mregs, OTG_INTERFSEL, |
| 478 | musb->context.otg_interfsel); |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 479 | |
Tony Lindgren | ce3ab65 | 2020-01-15 07:25:27 -0600 | [diff] [blame] | 480 | /* Wait for musb to get oriented. Otherwise we can get babble */ |
| 481 | usleep_range(200000, 250000); |
| 482 | |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
Bhumika Goyal | c0927fe | 2017-02-01 21:30:26 -0600 | [diff] [blame] | 486 | static const struct dev_pm_ops omap2430_pm_ops = { |
Hema HK | 7acc619 | 2011-02-28 14:19:34 +0530 | [diff] [blame] | 487 | .runtime_suspend = omap2430_runtime_suspend, |
| 488 | .runtime_resume = omap2430_runtime_resume, |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 489 | }; |
| 490 | |
| 491 | #define DEV_PM_OPS (&omap2430_pm_ops) |
| 492 | #else |
| 493 | #define DEV_PM_OPS NULL |
| 494 | #endif |
| 495 | |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame] | 496 | #ifdef CONFIG_OF |
| 497 | static const struct of_device_id omap2430_id_table[] = { |
| 498 | { |
| 499 | .compatible = "ti,omap4-musb" |
| 500 | }, |
| 501 | { |
| 502 | .compatible = "ti,omap3-musb" |
| 503 | }, |
| 504 | {}, |
| 505 | }; |
| 506 | MODULE_DEVICE_TABLE(of, omap2430_id_table); |
| 507 | #endif |
| 508 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 509 | static struct platform_driver omap2430_driver = { |
Felipe Balbi | e9e8c85 | 2012-01-26 12:40:23 +0200 | [diff] [blame] | 510 | .probe = omap2430_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 511 | .remove = omap2430_remove, |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 512 | .driver = { |
| 513 | .name = "musb-omap2430", |
Felipe Balbi | c20aebb | 2010-12-02 12:44:40 +0200 | [diff] [blame] | 514 | .pm = DEV_PM_OPS, |
Kishon Vijay Abraham I | 00a0b1d | 2012-09-11 14:39:40 +0530 | [diff] [blame] | 515 | .of_match_table = of_match_ptr(omap2430_id_table), |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 516 | }, |
| 517 | }; |
| 518 | |
Tony Lindgren | aec373c | 2016-05-31 10:05:22 -0500 | [diff] [blame] | 519 | module_platform_driver(omap2430_driver); |
| 520 | |
Felipe Balbi | dc09886 | 2010-12-01 15:01:11 +0200 | [diff] [blame] | 521 | MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer"); |
| 522 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); |
| 523 | MODULE_LICENSE("GPL v2"); |