davinci.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  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/slab.h>
  27. #include <linux/init.h>
  28. #include <linux/list.h>
  29. #include <linux/delay.h>
  30. #include <linux/clk.h>
  31. #include <linux/io.h>
  32. #include <linux/gpio.h>
  33. #include <mach/hardware.h>
  34. #include <mach/memory.h>
  35. #include <mach/gpio.h>
  36. #include <asm/mach-types.h>
  37. #include "musb_core.h"
  38. #ifdef CONFIG_MACH_DAVINCI_EVM
  39. #define GPIO_nVBUS_DRV 87
  40. #endif
  41. #include "davinci.h"
  42. #include "cppi_dma.h"
  43. #define USB_PHY_CTRL IO_ADDRESS(USBPHY_CTL_PADDR)
  44. #define DM355_DEEPSLEEP IO_ADDRESS(DM355_DEEPSLEEP_PADDR)
  45. /* REVISIT (PM) we should be able to keep the PHY in low power mode most
  46. * of the time (24 MHZ oscillator and PLL off, etc) by setting POWER.D0
  47. * and, when in host mode, autosuspending idle root ports... PHYPLLON
  48. * (overriding SUSPENDM?) then likely needs to stay off.
  49. */
  50. static inline void phy_on(void)
  51. {
  52. u32 phy_ctrl = __raw_readl(USB_PHY_CTRL);
  53. /* power everything up; start the on-chip PHY and its PLL */
  54. phy_ctrl &= ~(USBPHY_OSCPDWN | USBPHY_OTGPDWN | USBPHY_PHYPDWN);
  55. phy_ctrl |= USBPHY_SESNDEN | USBPHY_VBDTCTEN | USBPHY_PHYPLLON;
  56. __raw_writel(phy_ctrl, USB_PHY_CTRL);
  57. /* wait for PLL to lock before proceeding */
  58. while ((__raw_readl(USB_PHY_CTRL) & USBPHY_PHYCLKGD) == 0)
  59. cpu_relax();
  60. }
  61. static inline void phy_off(void)
  62. {
  63. u32 phy_ctrl = __raw_readl(USB_PHY_CTRL);
  64. /* powerdown the on-chip PHY, its PLL, and the OTG block */
  65. phy_ctrl &= ~(USBPHY_SESNDEN | USBPHY_VBDTCTEN | USBPHY_PHYPLLON);
  66. phy_ctrl |= USBPHY_OSCPDWN | USBPHY_OTGPDWN | USBPHY_PHYPDWN;
  67. __raw_writel(phy_ctrl, USB_PHY_CTRL);
  68. }
  69. static int dma_off = 1;
  70. void musb_platform_enable(struct musb *musb)
  71. {
  72. u32 tmp, old, val;
  73. /* workaround: setup irqs through both register sets */
  74. tmp = (musb->epmask & DAVINCI_USB_TX_ENDPTS_MASK)
  75. << DAVINCI_USB_TXINT_SHIFT;
  76. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  77. old = tmp;
  78. tmp = (musb->epmask & (0xfffe & DAVINCI_USB_RX_ENDPTS_MASK))
  79. << DAVINCI_USB_RXINT_SHIFT;
  80. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  81. tmp |= old;
  82. val = ~MUSB_INTR_SOF;
  83. tmp |= ((val & 0x01ff) << DAVINCI_USB_USBINT_SHIFT);
  84. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  85. if (is_dma_capable() && !dma_off)
  86. printk(KERN_WARNING "%s %s: dma not reactivated\n",
  87. __FILE__, __func__);
  88. else
  89. dma_off = 0;
  90. /* force a DRVVBUS irq so we can start polling for ID change */
  91. if (is_otg_enabled(musb))
  92. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_SET_REG,
  93. DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT);
  94. }
  95. /*
  96. * Disable the HDRC and flush interrupts
  97. */
  98. void musb_platform_disable(struct musb *musb)
  99. {
  100. /* because we don't set CTRLR.UINT, "important" to:
  101. * - not read/write INTRUSB/INTRUSBE
  102. * - (except during initial setup, as workaround)
  103. * - use INTSETR/INTCLRR instead
  104. */
  105. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_CLR_REG,
  106. DAVINCI_USB_USBINT_MASK
  107. | DAVINCI_USB_TXINT_MASK
  108. | DAVINCI_USB_RXINT_MASK);
  109. musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
  110. musb_writel(musb->ctrl_base, DAVINCI_USB_EOI_REG, 0);
  111. if (is_dma_capable() && !dma_off)
  112. WARNING("dma still active\n");
  113. }
  114. #ifdef CONFIG_USB_MUSB_HDRC_HCD
  115. #define portstate(stmt) stmt
  116. #else
  117. #define portstate(stmt)
  118. #endif
  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_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_set_vbus(struct musb *musb, int is_on)
  159. {
  160. WARN_ON(is_on && is_peripheral_active(musb));
  161. davinci_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. DBG(7, "poll devctl %02x (%s)\n", devctl, otg_state_string(musb));
  176. spin_lock_irqsave(&musb->lock, flags);
  177. switch (musb->xceiv.state) {
  178. case OTG_STATE_A_WAIT_VFALL:
  179. /* Wait till VBUS falls below SessionEnd (~0.2V); the 1.3 RTL
  180. * seems to mis-handle session "start" otherwise (or in our
  181. * case "recover"), in routine "VBUS was valid by the time
  182. * VBUSERR got reported during enumeration" cases.
  183. */
  184. if (devctl & MUSB_DEVCTL_VBUS) {
  185. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  186. break;
  187. }
  188. musb->xceiv.state = OTG_STATE_A_WAIT_VRISE;
  189. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_SET_REG,
  190. MUSB_INTR_VBUSERROR << DAVINCI_USB_USBINT_SHIFT);
  191. break;
  192. case OTG_STATE_B_IDLE:
  193. if (!is_peripheral_enabled(musb))
  194. break;
  195. /* There's no ID-changed IRQ, so we have no good way to tell
  196. * when to switch to the A-Default state machine (by setting
  197. * the DEVCTL.SESSION flag).
  198. *
  199. * Workaround: whenever we're in B_IDLE, try setting the
  200. * session flag every few seconds. If it works, ID was
  201. * grounded and we're now in the A-Default state machine.
  202. *
  203. * NOTE setting the session flag is _supposed_ to trigger
  204. * SRP, but clearly it doesn't.
  205. */
  206. musb_writeb(mregs, MUSB_DEVCTL,
  207. devctl | MUSB_DEVCTL_SESSION);
  208. devctl = musb_readb(mregs, MUSB_DEVCTL);
  209. if (devctl & MUSB_DEVCTL_BDEVICE)
  210. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  211. else
  212. musb->xceiv.state = OTG_STATE_A_IDLE;
  213. break;
  214. default:
  215. break;
  216. }
  217. spin_unlock_irqrestore(&musb->lock, flags);
  218. }
  219. static irqreturn_t davinci_interrupt(int irq, void *__hci)
  220. {
  221. unsigned long flags;
  222. irqreturn_t retval = IRQ_NONE;
  223. struct musb *musb = __hci;
  224. void __iomem *tibase = musb->ctrl_base;
  225. u32 tmp;
  226. spin_lock_irqsave(&musb->lock, flags);
  227. /* NOTE: DaVinci shadows the Mentor IRQs. Don't manage them through
  228. * the Mentor registers (except for setup), use the TI ones and EOI.
  229. *
  230. * Docs describe irq "vector" registers asociated with the CPPI and
  231. * USB EOI registers. These hold a bitmask corresponding to the
  232. * current IRQ, not an irq handler address. Would using those bits
  233. * resolve some of the races observed in this dispatch code??
  234. */
  235. /* CPPI interrupts share the same IRQ line, but have their own
  236. * mask, state, "vector", and EOI registers.
  237. */
  238. if (is_cppi_enabled()) {
  239. u32 cppi_tx = musb_readl(tibase, DAVINCI_TXCPPI_MASKED_REG);
  240. u32 cppi_rx = musb_readl(tibase, DAVINCI_RXCPPI_MASKED_REG);
  241. if (cppi_tx || cppi_rx) {
  242. DBG(4, "CPPI IRQ t%x r%x\n", cppi_tx, cppi_rx);
  243. cppi_completion(musb, cppi_rx, cppi_tx);
  244. retval = IRQ_HANDLED;
  245. }
  246. }
  247. /* ack and handle non-CPPI interrupts */
  248. tmp = musb_readl(tibase, DAVINCI_USB_INT_SRC_MASKED_REG);
  249. musb_writel(tibase, DAVINCI_USB_INT_SRC_CLR_REG, tmp);
  250. DBG(4, "IRQ %08x\n", tmp);
  251. musb->int_rx = (tmp & DAVINCI_USB_RXINT_MASK)
  252. >> DAVINCI_USB_RXINT_SHIFT;
  253. musb->int_tx = (tmp & DAVINCI_USB_TXINT_MASK)
  254. >> DAVINCI_USB_TXINT_SHIFT;
  255. musb->int_usb = (tmp & DAVINCI_USB_USBINT_MASK)
  256. >> DAVINCI_USB_USBINT_SHIFT;
  257. /* DRVVBUS irqs are the only proxy we have (a very poor one!) for
  258. * DaVinci's missing ID change IRQ. We need an ID change IRQ to
  259. * switch appropriately between halves of the OTG state machine.
  260. * Managing DEVCTL.SESSION per Mentor docs requires we know its
  261. * value, but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
  262. * Also, DRVVBUS pulses for SRP (but not at 5V) ...
  263. */
  264. if (tmp & (DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT)) {
  265. int drvvbus = musb_readl(tibase, DAVINCI_USB_STAT_REG);
  266. void __iomem *mregs = musb->mregs;
  267. u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
  268. int err = musb->int_usb & MUSB_INTR_VBUSERROR;
  269. err = is_host_enabled(musb)
  270. && (musb->int_usb & MUSB_INTR_VBUSERROR);
  271. if (err) {
  272. /* The Mentor core doesn't debounce VBUS as needed
  273. * to cope with device connect current spikes. This
  274. * means it's not uncommon for bus-powered devices
  275. * to get VBUS errors during enumeration.
  276. *
  277. * This is a workaround, but newer RTL from Mentor
  278. * seems to allow a better one: "re"starting sessions
  279. * without waiting (on EVM, a **long** time) for VBUS
  280. * to stop registering in devctl.
  281. */
  282. musb->int_usb &= ~MUSB_INTR_VBUSERROR;
  283. musb->xceiv.state = OTG_STATE_A_WAIT_VFALL;
  284. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  285. WARNING("VBUS error workaround (delay coming)\n");
  286. } else if (is_host_enabled(musb) && drvvbus) {
  287. musb->is_active = 1;
  288. MUSB_HST_MODE(musb);
  289. musb->xceiv.default_a = 1;
  290. musb->xceiv.state = OTG_STATE_A_WAIT_VRISE;
  291. portstate(musb->port1_status |= USB_PORT_STAT_POWER);
  292. del_timer(&otg_workaround);
  293. } else {
  294. musb->is_active = 0;
  295. MUSB_DEV_MODE(musb);
  296. musb->xceiv.default_a = 0;
  297. musb->xceiv.state = OTG_STATE_B_IDLE;
  298. portstate(musb->port1_status &= ~USB_PORT_STAT_POWER);
  299. }
  300. /* NOTE: this must complete poweron within 100 msec */
  301. davinci_source_power(musb, drvvbus, 0);
  302. DBG(2, "VBUS %s (%s)%s, devctl %02x\n",
  303. drvvbus ? "on" : "off",
  304. otg_state_string(musb),
  305. err ? " ERROR" : "",
  306. devctl);
  307. retval = IRQ_HANDLED;
  308. }
  309. if (musb->int_tx || musb->int_rx || musb->int_usb)
  310. retval |= musb_interrupt(musb);
  311. /* irq stays asserted until EOI is written */
  312. musb_writel(tibase, DAVINCI_USB_EOI_REG, 0);
  313. /* poll for ID change */
  314. if (is_otg_enabled(musb)
  315. && musb->xceiv.state == OTG_STATE_B_IDLE)
  316. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  317. spin_unlock_irqrestore(&musb->lock, flags);
  318. /* REVISIT we sometimes get unhandled IRQs
  319. * (e.g. ep0). not clear why...
  320. */
  321. if (retval != IRQ_HANDLED)
  322. DBG(5, "unhandled? %08x\n", tmp);
  323. return IRQ_HANDLED;
  324. }
  325. int musb_platform_set_mode(struct musb *musb, u8 mode)
  326. {
  327. /* EVM can't do this (right?) */
  328. return -EIO;
  329. }
  330. int __init musb_platform_init(struct musb *musb)
  331. {
  332. void __iomem *tibase = musb->ctrl_base;
  333. u32 revision;
  334. musb->mregs += DAVINCI_BASE_OFFSET;
  335. clk_enable(musb->clock);
  336. /* returns zero if e.g. not clocked */
  337. revision = musb_readl(tibase, DAVINCI_USB_VERSION_REG);
  338. if (revision == 0)
  339. return -ENODEV;
  340. if (is_host_enabled(musb))
  341. setup_timer(&otg_workaround, otg_timer, (unsigned long) musb);
  342. musb->board_set_vbus = davinci_set_vbus;
  343. davinci_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. /* reset the controller */
  354. musb_writel(tibase, DAVINCI_USB_CTRL_REG, 0x1);
  355. /* start the on-chip PHY and its PLL */
  356. phy_on();
  357. msleep(5);
  358. /* NOTE: irqs are in mixed mode, not bypass to pure-musb */
  359. pr_debug("DaVinci OTG revision %08x phy %03x control %02x\n",
  360. revision, __raw_readl(USB_PHY_CTRL),
  361. musb_readb(tibase, DAVINCI_USB_CTRL_REG));
  362. musb->isr = davinci_interrupt;
  363. return 0;
  364. }
  365. int musb_platform_exit(struct musb *musb)
  366. {
  367. if (is_host_enabled(musb))
  368. del_timer_sync(&otg_workaround);
  369. davinci_source_power(musb, 0 /*off*/, 1);
  370. /* delay, to avoid problems with module reload */
  371. if (is_host_enabled(musb) && musb->xceiv.default_a) {
  372. int maxdelay = 30;
  373. u8 devctl, warn = 0;
  374. /* if there's no peripheral connected, this can take a
  375. * long time to fall, especially on EVM with huge C133.
  376. */
  377. do {
  378. devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
  379. if (!(devctl & MUSB_DEVCTL_VBUS))
  380. break;
  381. if ((devctl & MUSB_DEVCTL_VBUS) != warn) {
  382. warn = devctl & MUSB_DEVCTL_VBUS;
  383. DBG(1, "VBUS %d\n",
  384. warn >> MUSB_DEVCTL_VBUS_SHIFT);
  385. }
  386. msleep(1000);
  387. maxdelay--;
  388. } while (maxdelay > 0);
  389. /* in OTG mode, another host might be connected */
  390. if (devctl & MUSB_DEVCTL_VBUS)
  391. DBG(1, "VBUS off timeout (devctl %02x)\n", devctl);
  392. }
  393. phy_off();
  394. clk_disable(musb->clock);
  395. return 0;
  396. }