davinci.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. /*
  2. * Copyright (C) 2005-2006 by Texas Instruments
  3. *
  4. * This file is part of the Inventra Controller Driver for Linux.
  5. *
  6. * The Inventra Controller Driver for Linux is free software; you
  7. * can redistribute it and/or modify it under the terms of the GNU
  8. * General Public License version 2 as published by the Free Software
  9. * Foundation.
  10. *
  11. * The Inventra Controller Driver for Linux is distributed in
  12. * the hope that it will be useful, but WITHOUT ANY WARRANTY;
  13. * without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  15. * License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with The Inventra Controller Driver for Linux ; if not,
  19. * write to the Free Software Foundation, Inc., 59 Temple Place,
  20. * Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/list.h>
  27. #include <linux/delay.h>
  28. #include <linux/clk.h>
  29. #include <linux/err.h>
  30. #include <linux/io.h>
  31. #include <linux/gpio.h>
  32. #include <linux/platform_device.h>
  33. #include <linux/dma-mapping.h>
  34. #include <linux/usb/usb_phy_generic.h>
  35. #include <mach/cputype.h>
  36. #include <mach/hardware.h>
  37. #include <asm/mach-types.h>
  38. #include "musb_core.h"
  39. #ifdef CONFIG_MACH_DAVINCI_EVM
  40. #define GPIO_nVBUS_DRV 160
  41. #endif
  42. #include "davinci.h"
  43. #include "cppi_dma.h"
  44. #define USB_PHY_CTRL IO_ADDRESS(USBPHY_CTL_PADDR)
  45. #define DM355_DEEPSLEEP IO_ADDRESS(DM355_DEEPSLEEP_PADDR)
  46. struct davinci_glue {
  47. struct device *dev;
  48. struct platform_device *musb;
  49. struct clk *clk;
  50. };
  51. /* REVISIT (PM) we should be able to keep the PHY in low power mode most
  52. * of the time (24 MHZ oscillator and PLL off, etc) by setting POWER.D0
  53. * and, when in host mode, autosuspending idle root ports... PHYPLLON
  54. * (overriding SUSPENDM?) then likely needs to stay off.
  55. */
  56. static inline void phy_on(void)
  57. {
  58. u32 phy_ctrl = __raw_readl(USB_PHY_CTRL);
  59. /* power everything up; start the on-chip PHY and its PLL */
  60. phy_ctrl &= ~(USBPHY_OSCPDWN | USBPHY_OTGPDWN | USBPHY_PHYPDWN);
  61. phy_ctrl |= USBPHY_SESNDEN | USBPHY_VBDTCTEN | USBPHY_PHYPLLON;
  62. __raw_writel(phy_ctrl, USB_PHY_CTRL);
  63. /* wait for PLL to lock before proceeding */
  64. while ((__raw_readl(USB_PHY_CTRL) & USBPHY_PHYCLKGD) == 0)
  65. cpu_relax();
  66. }
  67. static inline void phy_off(void)
  68. {
  69. u32 phy_ctrl = __raw_readl(USB_PHY_CTRL);
  70. /* powerdown the on-chip PHY, its PLL, and the OTG block */
  71. phy_ctrl &= ~(USBPHY_SESNDEN | USBPHY_VBDTCTEN | USBPHY_PHYPLLON);
  72. phy_ctrl |= USBPHY_OSCPDWN | USBPHY_OTGPDWN | USBPHY_PHYPDWN;
  73. __raw_writel(phy_ctrl, USB_PHY_CTRL);
  74. }
  75. static int dma_off = 1;
  76. static void davinci_musb_enable(struct musb *musb)
  77. {
  78. u32 tmp, old, val;
  79. /* workaround: setup irqs through both register sets */
  80. tmp = (musb->epmask & DAVINCI_USB_TX_ENDPTS_MASK)
  81. << DAVINCI_USB_TXINT_SHIFT;
  82. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  83. old = tmp;
  84. tmp = (musb->epmask & (0xfffe & DAVINCI_USB_RX_ENDPTS_MASK))
  85. << DAVINCI_USB_RXINT_SHIFT;
  86. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  87. tmp |= old;
  88. val = ~MUSB_INTR_SOF;
  89. tmp |= ((val & 0x01ff) << DAVINCI_USB_USBINT_SHIFT);
  90. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  91. if (is_dma_capable() && !dma_off)
  92. printk(KERN_WARNING "%s %s: dma not reactivated\n",
  93. __FILE__, __func__);
  94. else
  95. dma_off = 0;
  96. /* force a DRVVBUS irq so we can start polling for ID change */
  97. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_SET_REG,
  98. DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT);
  99. }
  100. /*
  101. * Disable the HDRC and flush interrupts
  102. */
  103. static void davinci_musb_disable(struct musb *musb)
  104. {
  105. /* because we don't set CTRLR.UINT, "important" to:
  106. * - not read/write INTRUSB/INTRUSBE
  107. * - (except during initial setup, as workaround)
  108. * - use INTSETR/INTCLRR instead
  109. */
  110. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_CLR_REG,
  111. DAVINCI_USB_USBINT_MASK
  112. | DAVINCI_USB_TXINT_MASK
  113. | DAVINCI_USB_RXINT_MASK);
  114. musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
  115. musb_writel(musb->ctrl_base, DAVINCI_USB_EOI_REG, 0);
  116. if (is_dma_capable() && !dma_off)
  117. WARNING("dma still active\n");
  118. }
  119. #define portstate(stmt) stmt
  120. /*
  121. * VBUS SWITCHING IS BOARD-SPECIFIC ... at least for the DM6446 EVM,
  122. * which doesn't wire DRVVBUS to the FET that switches it. Unclear
  123. * if that's a problem with the DM6446 chip or just with that board.
  124. *
  125. * In either case, the DM355 EVM automates DRVVBUS the normal way,
  126. * when J10 is out, and TI documents it as handling OTG.
  127. */
  128. #ifdef CONFIG_MACH_DAVINCI_EVM
  129. static int vbus_state = -1;
  130. /* I2C operations are always synchronous, and require a task context.
  131. * With unloaded systems, using the shared workqueue seems to suffice
  132. * to satisfy the 100msec A_WAIT_VRISE timeout...
  133. */
  134. static void evm_deferred_drvvbus(struct work_struct *ignored)
  135. {
  136. gpio_set_value_cansleep(GPIO_nVBUS_DRV, vbus_state);
  137. vbus_state = !vbus_state;
  138. }
  139. #endif /* EVM */
  140. static void davinci_musb_source_power(struct musb *musb, int is_on, int immediate)
  141. {
  142. #ifdef CONFIG_MACH_DAVINCI_EVM
  143. if (is_on)
  144. is_on = 1;
  145. if (vbus_state == is_on)
  146. return;
  147. vbus_state = !is_on; /* 0/1 vs "-1 == unknown/init" */
  148. if (machine_is_davinci_evm()) {
  149. static DECLARE_WORK(evm_vbus_work, evm_deferred_drvvbus);
  150. if (immediate)
  151. gpio_set_value_cansleep(GPIO_nVBUS_DRV, vbus_state);
  152. else
  153. schedule_work(&evm_vbus_work);
  154. }
  155. if (immediate)
  156. vbus_state = is_on;
  157. #endif
  158. }
  159. static void davinci_musb_set_vbus(struct musb *musb, int is_on)
  160. {
  161. WARN_ON(is_on && is_peripheral_active(musb));
  162. davinci_musb_source_power(musb, is_on, 0);
  163. }
  164. #define POLL_SECONDS 2
  165. static struct timer_list otg_workaround;
  166. static void otg_timer(unsigned long _musb)
  167. {
  168. struct musb *musb = (void *)_musb;
  169. void __iomem *mregs = musb->mregs;
  170. u8 devctl;
  171. unsigned long flags;
  172. /* We poll because DaVinci's won't expose several OTG-critical
  173. * status change events (from the transceiver) otherwise.
  174. */
  175. devctl = musb_readb(mregs, MUSB_DEVCTL);
  176. dev_dbg(musb->controller, "poll devctl %02x (%s)\n", devctl,
  177. usb_otg_state_string(musb->xceiv->otg->state));
  178. spin_lock_irqsave(&musb->lock, flags);
  179. switch (musb->xceiv->otg->state) {
  180. case OTG_STATE_A_WAIT_VFALL:
  181. /* Wait till VBUS falls below SessionEnd (~0.2V); the 1.3 RTL
  182. * seems to mis-handle session "start" otherwise (or in our
  183. * case "recover"), in routine "VBUS was valid by the time
  184. * VBUSERR got reported during enumeration" cases.
  185. */
  186. if (devctl & MUSB_DEVCTL_VBUS) {
  187. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  188. break;
  189. }
  190. musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE;
  191. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_SET_REG,
  192. MUSB_INTR_VBUSERROR << DAVINCI_USB_USBINT_SHIFT);
  193. break;
  194. case OTG_STATE_B_IDLE:
  195. /*
  196. * There's no ID-changed IRQ, so we have no good way to tell
  197. * when to switch to the A-Default state machine (by setting
  198. * the DEVCTL.SESSION flag).
  199. *
  200. * Workaround: whenever we're in B_IDLE, try setting the
  201. * session flag every few seconds. If it works, ID was
  202. * grounded and we're now in the A-Default state machine.
  203. *
  204. * NOTE setting the session flag is _supposed_ to trigger
  205. * SRP, but clearly it doesn't.
  206. */
  207. musb_writeb(mregs, MUSB_DEVCTL,
  208. devctl | MUSB_DEVCTL_SESSION);
  209. devctl = musb_readb(mregs, MUSB_DEVCTL);
  210. if (devctl & MUSB_DEVCTL_BDEVICE)
  211. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  212. else
  213. musb->xceiv->otg->state = OTG_STATE_A_IDLE;
  214. break;
  215. default:
  216. break;
  217. }
  218. spin_unlock_irqrestore(&musb->lock, flags);
  219. }
  220. static irqreturn_t davinci_musb_interrupt(int irq, void *__hci)
  221. {
  222. unsigned long flags;
  223. irqreturn_t retval = IRQ_NONE;
  224. struct musb *musb = __hci;
  225. struct usb_otg *otg = musb->xceiv->otg;
  226. void __iomem *tibase = musb->ctrl_base;
  227. struct cppi *cppi;
  228. u32 tmp;
  229. spin_lock_irqsave(&musb->lock, flags);
  230. /* NOTE: DaVinci shadows the Mentor IRQs. Don't manage them through
  231. * the Mentor registers (except for setup), use the TI ones and EOI.
  232. *
  233. * Docs describe irq "vector" registers associated with the CPPI and
  234. * USB EOI registers. These hold a bitmask corresponding to the
  235. * current IRQ, not an irq handler address. Would using those bits
  236. * resolve some of the races observed in this dispatch code??
  237. */
  238. /* CPPI interrupts share the same IRQ line, but have their own
  239. * mask, state, "vector", and EOI registers.
  240. */
  241. cppi = container_of(musb->dma_controller, struct cppi, controller);
  242. if (is_cppi_enabled(musb) && musb->dma_controller && !cppi->irq)
  243. retval = cppi_interrupt(irq, __hci);
  244. /* ack and handle non-CPPI interrupts */
  245. tmp = musb_readl(tibase, DAVINCI_USB_INT_SRC_MASKED_REG);
  246. musb_writel(tibase, DAVINCI_USB_INT_SRC_CLR_REG, tmp);
  247. dev_dbg(musb->controller, "IRQ %08x\n", tmp);
  248. musb->int_rx = (tmp & DAVINCI_USB_RXINT_MASK)
  249. >> DAVINCI_USB_RXINT_SHIFT;
  250. musb->int_tx = (tmp & DAVINCI_USB_TXINT_MASK)
  251. >> DAVINCI_USB_TXINT_SHIFT;
  252. musb->int_usb = (tmp & DAVINCI_USB_USBINT_MASK)
  253. >> DAVINCI_USB_USBINT_SHIFT;
  254. /* DRVVBUS irqs are the only proxy we have (a very poor one!) for
  255. * DaVinci's missing ID change IRQ. We need an ID change IRQ to
  256. * switch appropriately between halves of the OTG state machine.
  257. * Managing DEVCTL.SESSION per Mentor docs requires we know its
  258. * value, but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
  259. * Also, DRVVBUS pulses for SRP (but not at 5V) ...
  260. */
  261. if (tmp & (DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT)) {
  262. int drvvbus = musb_readl(tibase, DAVINCI_USB_STAT_REG);
  263. void __iomem *mregs = musb->mregs;
  264. u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
  265. int err = musb->int_usb & MUSB_INTR_VBUSERROR;
  266. err = musb->int_usb & MUSB_INTR_VBUSERROR;
  267. if (err) {
  268. /* The Mentor core doesn't debounce VBUS as needed
  269. * to cope with device connect current spikes. This
  270. * means it's not uncommon for bus-powered devices
  271. * to get VBUS errors during enumeration.
  272. *
  273. * This is a workaround, but newer RTL from Mentor
  274. * seems to allow a better one: "re"starting sessions
  275. * without waiting (on EVM, a **long** time) for VBUS
  276. * to stop registering in devctl.
  277. */
  278. musb->int_usb &= ~MUSB_INTR_VBUSERROR;
  279. musb->xceiv->otg->state = OTG_STATE_A_WAIT_VFALL;
  280. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  281. WARNING("VBUS error workaround (delay coming)\n");
  282. } else if (drvvbus) {
  283. MUSB_HST_MODE(musb);
  284. otg->default_a = 1;
  285. musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE;
  286. portstate(musb->port1_status |= USB_PORT_STAT_POWER);
  287. del_timer(&otg_workaround);
  288. } else {
  289. musb->is_active = 0;
  290. MUSB_DEV_MODE(musb);
  291. otg->default_a = 0;
  292. musb->xceiv->otg->state = OTG_STATE_B_IDLE;
  293. portstate(musb->port1_status &= ~USB_PORT_STAT_POWER);
  294. }
  295. /* NOTE: this must complete poweron within 100 msec
  296. * (OTG_TIME_A_WAIT_VRISE) but we don't check for that.
  297. */
  298. davinci_musb_source_power(musb, drvvbus, 0);
  299. dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
  300. drvvbus ? "on" : "off",
  301. usb_otg_state_string(musb->xceiv->otg->state),
  302. err ? " ERROR" : "",
  303. devctl);
  304. retval = IRQ_HANDLED;
  305. }
  306. if (musb->int_tx || musb->int_rx || musb->int_usb)
  307. retval |= musb_interrupt(musb);
  308. /* irq stays asserted until EOI is written */
  309. musb_writel(tibase, DAVINCI_USB_EOI_REG, 0);
  310. /* poll for ID change */
  311. if (musb->xceiv->otg->state == OTG_STATE_B_IDLE)
  312. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  313. spin_unlock_irqrestore(&musb->lock, flags);
  314. return retval;
  315. }
  316. static int davinci_musb_set_mode(struct musb *musb, u8 mode)
  317. {
  318. /* EVM can't do this (right?) */
  319. return -EIO;
  320. }
  321. static int davinci_musb_init(struct musb *musb)
  322. {
  323. void __iomem *tibase = musb->ctrl_base;
  324. u32 revision;
  325. int ret = -ENODEV;
  326. musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2);
  327. if (IS_ERR_OR_NULL(musb->xceiv)) {
  328. ret = -EPROBE_DEFER;
  329. goto unregister;
  330. }
  331. musb->mregs += DAVINCI_BASE_OFFSET;
  332. /* returns zero if e.g. not clocked */
  333. revision = musb_readl(tibase, DAVINCI_USB_VERSION_REG);
  334. if (revision == 0)
  335. goto fail;
  336. setup_timer(&otg_workaround, otg_timer, (unsigned long) musb);
  337. davinci_musb_source_power(musb, 0, 1);
  338. /* dm355 EVM swaps D+/D- for signal integrity, and
  339. * is clocked from the main 24 MHz crystal.
  340. */
  341. if (machine_is_davinci_dm355_evm()) {
  342. u32 phy_ctrl = __raw_readl(USB_PHY_CTRL);
  343. phy_ctrl &= ~(3 << 9);
  344. phy_ctrl |= USBPHY_DATAPOL;
  345. __raw_writel(phy_ctrl, USB_PHY_CTRL);
  346. }
  347. /* On dm355, the default-A state machine needs DRVVBUS control.
  348. * If we won't be a host, there's no need to turn it on.
  349. */
  350. if (cpu_is_davinci_dm355()) {
  351. u32 deepsleep = __raw_readl(DM355_DEEPSLEEP);
  352. deepsleep &= ~DRVVBUS_FORCE;
  353. __raw_writel(deepsleep, DM355_DEEPSLEEP);
  354. }
  355. /* reset the controller */
  356. musb_writel(tibase, DAVINCI_USB_CTRL_REG, 0x1);
  357. /* start the on-chip PHY and its PLL */
  358. phy_on();
  359. msleep(5);
  360. /* NOTE: irqs are in mixed mode, not bypass to pure-musb */
  361. pr_debug("DaVinci OTG revision %08x phy %03x control %02x\n",
  362. revision, __raw_readl(USB_PHY_CTRL),
  363. musb_readb(tibase, DAVINCI_USB_CTRL_REG));
  364. musb->isr = davinci_musb_interrupt;
  365. return 0;
  366. fail:
  367. usb_put_phy(musb->xceiv);
  368. unregister:
  369. usb_phy_generic_unregister();
  370. return ret;
  371. }
  372. static int davinci_musb_exit(struct musb *musb)
  373. {
  374. del_timer_sync(&otg_workaround);
  375. /* force VBUS off */
  376. if (cpu_is_davinci_dm355()) {
  377. u32 deepsleep = __raw_readl(DM355_DEEPSLEEP);
  378. deepsleep &= ~DRVVBUS_FORCE;
  379. deepsleep |= DRVVBUS_OVERRIDE;
  380. __raw_writel(deepsleep, DM355_DEEPSLEEP);
  381. }
  382. davinci_musb_source_power(musb, 0 /*off*/, 1);
  383. /* delay, to avoid problems with module reload */
  384. if (musb->xceiv->otg->default_a) {
  385. int maxdelay = 30;
  386. u8 devctl, warn = 0;
  387. /* if there's no peripheral connected, this can take a
  388. * long time to fall, especially on EVM with huge C133.
  389. */
  390. do {
  391. devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
  392. if (!(devctl & MUSB_DEVCTL_VBUS))
  393. break;
  394. if ((devctl & MUSB_DEVCTL_VBUS) != warn) {
  395. warn = devctl & MUSB_DEVCTL_VBUS;
  396. dev_dbg(musb->controller, "VBUS %d\n",
  397. warn >> MUSB_DEVCTL_VBUS_SHIFT);
  398. }
  399. msleep(1000);
  400. maxdelay--;
  401. } while (maxdelay > 0);
  402. /* in OTG mode, another host might be connected */
  403. if (devctl & MUSB_DEVCTL_VBUS)
  404. dev_dbg(musb->controller, "VBUS off timeout (devctl %02x)\n", devctl);
  405. }
  406. phy_off();
  407. usb_put_phy(musb->xceiv);
  408. return 0;
  409. }
  410. static const struct musb_platform_ops davinci_ops = {
  411. .quirks = MUSB_DMA_CPPI,
  412. .init = davinci_musb_init,
  413. .exit = davinci_musb_exit,
  414. #ifdef CONFIG_USB_TI_CPPI_DMA
  415. .dma_init = cppi_dma_controller_create,
  416. .dma_exit = cppi_dma_controller_destroy,
  417. #endif
  418. .enable = davinci_musb_enable,
  419. .disable = davinci_musb_disable,
  420. .set_mode = davinci_musb_set_mode,
  421. .set_vbus = davinci_musb_set_vbus,
  422. };
  423. static const struct platform_device_info davinci_dev_info = {
  424. .name = "musb-hdrc",
  425. .id = PLATFORM_DEVID_AUTO,
  426. .dma_mask = DMA_BIT_MASK(32),
  427. };
  428. static int davinci_probe(struct platform_device *pdev)
  429. {
  430. struct resource musb_resources[3];
  431. struct musb_hdrc_platform_data *pdata = dev_get_platdata(&pdev->dev);
  432. struct platform_device *musb;
  433. struct davinci_glue *glue;
  434. struct platform_device_info pinfo;
  435. struct clk *clk;
  436. int ret = -ENOMEM;
  437. glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL);
  438. if (!glue)
  439. goto err0;
  440. clk = devm_clk_get(&pdev->dev, "usb");
  441. if (IS_ERR(clk)) {
  442. dev_err(&pdev->dev, "failed to get clock\n");
  443. ret = PTR_ERR(clk);
  444. goto err0;
  445. }
  446. ret = clk_enable(clk);
  447. if (ret) {
  448. dev_err(&pdev->dev, "failed to enable clock\n");
  449. goto err0;
  450. }
  451. glue->dev = &pdev->dev;
  452. glue->clk = clk;
  453. pdata->platform_ops = &davinci_ops;
  454. usb_phy_generic_register();
  455. platform_set_drvdata(pdev, glue);
  456. memset(musb_resources, 0x00, sizeof(*musb_resources) *
  457. ARRAY_SIZE(musb_resources));
  458. musb_resources[0].name = pdev->resource[0].name;
  459. musb_resources[0].start = pdev->resource[0].start;
  460. musb_resources[0].end = pdev->resource[0].end;
  461. musb_resources[0].flags = pdev->resource[0].flags;
  462. musb_resources[1].name = pdev->resource[1].name;
  463. musb_resources[1].start = pdev->resource[1].start;
  464. musb_resources[1].end = pdev->resource[1].end;
  465. musb_resources[1].flags = pdev->resource[1].flags;
  466. /*
  467. * For DM6467 3 resources are passed. A placeholder for the 3rd
  468. * resource is always there, so it's safe to always copy it...
  469. */
  470. musb_resources[2].name = pdev->resource[2].name;
  471. musb_resources[2].start = pdev->resource[2].start;
  472. musb_resources[2].end = pdev->resource[2].end;
  473. musb_resources[2].flags = pdev->resource[2].flags;
  474. pinfo = davinci_dev_info;
  475. pinfo.parent = &pdev->dev;
  476. pinfo.res = musb_resources;
  477. pinfo.num_res = ARRAY_SIZE(musb_resources);
  478. pinfo.data = pdata;
  479. pinfo.size_data = sizeof(*pdata);
  480. glue->musb = musb = platform_device_register_full(&pinfo);
  481. if (IS_ERR(musb)) {
  482. ret = PTR_ERR(musb);
  483. dev_err(&pdev->dev, "failed to register musb device: %d\n", ret);
  484. goto err1;
  485. }
  486. return 0;
  487. err1:
  488. clk_disable(clk);
  489. err0:
  490. return ret;
  491. }
  492. static int davinci_remove(struct platform_device *pdev)
  493. {
  494. struct davinci_glue *glue = platform_get_drvdata(pdev);
  495. platform_device_unregister(glue->musb);
  496. usb_phy_generic_unregister();
  497. clk_disable(glue->clk);
  498. return 0;
  499. }
  500. static struct platform_driver davinci_driver = {
  501. .probe = davinci_probe,
  502. .remove = davinci_remove,
  503. .driver = {
  504. .name = "musb-davinci",
  505. },
  506. };
  507. MODULE_DESCRIPTION("DaVinci MUSB Glue Layer");
  508. MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
  509. MODULE_LICENSE("GPL v2");
  510. module_platform_driver(davinci_driver);