davinci.c 17 KB

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