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