davinci.c 17 KB

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