davinci.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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 <asm/arch/hardware.h>
  33. #include <asm/arch/memory.h>
  34. #include <asm/arch/gpio.h>
  35. #include <asm/mach-types.h>
  36. #include "musb_core.h"
  37. #ifdef CONFIG_MACH_DAVINCI_EVM
  38. #include <asm/arch/i2c-client.h>
  39. #endif
  40. #include "davinci.h"
  41. #include "cppi_dma.h"
  42. /* REVISIT (PM) we should be able to keep the PHY in low power mode most
  43. * of the time (24 MHZ oscillator and PLL off, etc) by setting POWER.D0
  44. * and, when in host mode, autosuspending idle root ports... PHYPLLON
  45. * (overriding SUSPENDM?) then likely needs to stay off.
  46. */
  47. static inline void phy_on(void)
  48. {
  49. /* start the on-chip PHY and its PLL */
  50. __raw_writel(USBPHY_SESNDEN | USBPHY_VBDTCTEN | USBPHY_PHYPLLON,
  51. (void __force __iomem *) IO_ADDRESS(USBPHY_CTL_PADDR));
  52. while ((__raw_readl((void __force __iomem *)
  53. IO_ADDRESS(USBPHY_CTL_PADDR))
  54. & USBPHY_PHYCLKGD) == 0)
  55. cpu_relax();
  56. }
  57. static inline void phy_off(void)
  58. {
  59. /* powerdown the on-chip PHY and its oscillator */
  60. __raw_writel(USBPHY_OSCPDWN | USBPHY_PHYPDWN, (void __force __iomem *)
  61. IO_ADDRESS(USBPHY_CTL_PADDR));
  62. }
  63. static int dma_off = 1;
  64. void musb_platform_enable(struct musb *musb)
  65. {
  66. u32 tmp, old, val;
  67. /* workaround: setup irqs through both register sets */
  68. tmp = (musb->epmask & DAVINCI_USB_TX_ENDPTS_MASK)
  69. << DAVINCI_USB_TXINT_SHIFT;
  70. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  71. old = tmp;
  72. tmp = (musb->epmask & (0xfffe & DAVINCI_USB_RX_ENDPTS_MASK))
  73. << DAVINCI_USB_RXINT_SHIFT;
  74. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  75. tmp |= old;
  76. val = ~MUSB_INTR_SOF;
  77. tmp |= ((val & 0x01ff) << DAVINCI_USB_USBINT_SHIFT);
  78. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_SET_REG, tmp);
  79. if (is_dma_capable() && !dma_off)
  80. printk(KERN_WARNING "%s %s: dma not reactivated\n",
  81. __FILE__, __func__);
  82. else
  83. dma_off = 0;
  84. /* force a DRVVBUS irq so we can start polling for ID change */
  85. if (is_otg_enabled(musb))
  86. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_SET_REG,
  87. DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT);
  88. }
  89. /*
  90. * Disable the HDRC and flush interrupts
  91. */
  92. void musb_platform_disable(struct musb *musb)
  93. {
  94. /* because we don't set CTRLR.UINT, "important" to:
  95. * - not read/write INTRUSB/INTRUSBE
  96. * - (except during initial setup, as workaround)
  97. * - use INTSETR/INTCLRR instead
  98. */
  99. musb_writel(musb->ctrl_base, DAVINCI_USB_INT_MASK_CLR_REG,
  100. DAVINCI_USB_USBINT_MASK
  101. | DAVINCI_USB_TXINT_MASK
  102. | DAVINCI_USB_RXINT_MASK);
  103. musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
  104. musb_writel(musb->ctrl_base, DAVINCI_USB_EOI_REG, 0);
  105. if (is_dma_capable() && !dma_off)
  106. WARNING("dma still active\n");
  107. }
  108. /* REVISIT it's not clear whether DaVinci can support full OTG. */
  109. static int vbus_state = -1;
  110. #ifdef CONFIG_USB_MUSB_HDRC_HCD
  111. #define portstate(stmt) stmt
  112. #else
  113. #define portstate(stmt)
  114. #endif
  115. /* VBUS SWITCHING IS BOARD-SPECIFIC */
  116. #ifdef CONFIG_MACH_DAVINCI_EVM
  117. #ifndef CONFIG_MACH_DAVINCI_EVM_OTG
  118. /* I2C operations are always synchronous, and require a task context.
  119. * With unloaded systems, using the shared workqueue seems to suffice
  120. * to satisfy the 100msec A_WAIT_VRISE timeout...
  121. */
  122. static void evm_deferred_drvvbus(struct work_struct *ignored)
  123. {
  124. davinci_i2c_expander_op(0x3a, USB_DRVVBUS, vbus_state);
  125. vbus_state = !vbus_state;
  126. }
  127. static DECLARE_WORK(evm_vbus_work, evm_deferred_drvvbus);
  128. #endif /* modified board */
  129. #endif /* EVM */
  130. static void davinci_source_power(struct musb *musb, int is_on, int immediate)
  131. {
  132. if (is_on)
  133. is_on = 1;
  134. if (vbus_state == is_on)
  135. return;
  136. vbus_state = !is_on; /* 0/1 vs "-1 == unknown/init" */
  137. #ifdef CONFIG_MACH_DAVINCI_EVM
  138. if (machine_is_davinci_evm()) {
  139. #ifdef CONFIG_MACH_DAVINCI_EVM_OTG
  140. /* modified EVM board switching VBUS with GPIO(6) not I2C
  141. * NOTE: PINMUX0.RGB888 (bit23) must be clear
  142. */
  143. if (is_on)
  144. gpio_set(GPIO(6));
  145. else
  146. gpio_clear(GPIO(6));
  147. immediate = 1;
  148. #else
  149. if (immediate)
  150. davinci_i2c_expander_op(0x3a, USB_DRVVBUS, !is_on);
  151. else
  152. schedule_work(&evm_vbus_work);
  153. #endif
  154. }
  155. #endif
  156. if (immediate)
  157. vbus_state = is_on;
  158. }
  159. static void davinci_set_vbus(struct musb *musb, int is_on)
  160. {
  161. WARN_ON(is_on && is_peripheral_active(musb));
  162. davinci_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. DBG(7, "poll devctl %02x (%s)\n", devctl, otg_state_string(musb));
  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_interrupt(int irq, void *__hci)
  221. {
  222. unsigned long flags;
  223. irqreturn_t retval = IRQ_NONE;
  224. struct musb *musb = __hci;
  225. void __iomem *tibase = musb->ctrl_base;
  226. u32 tmp;
  227. spin_lock_irqsave(&musb->lock, flags);
  228. /* NOTE: DaVinci shadows the Mentor IRQs. Don't manage them through
  229. * the Mentor registers (except for setup), use the TI ones and EOI.
  230. *
  231. * Docs describe irq "vector" registers asociated with the CPPI and
  232. * USB EOI registers. These hold a bitmask corresponding to the
  233. * current IRQ, not an irq handler address. Would using those bits
  234. * resolve some of the races observed in this dispatch code??
  235. */
  236. /* CPPI interrupts share the same IRQ line, but have their own
  237. * mask, state, "vector", and EOI registers.
  238. */
  239. if (is_cppi_enabled()) {
  240. u32 cppi_tx = musb_readl(tibase, DAVINCI_TXCPPI_MASKED_REG);
  241. u32 cppi_rx = musb_readl(tibase, DAVINCI_RXCPPI_MASKED_REG);
  242. if (cppi_tx || cppi_rx) {
  243. DBG(4, "CPPI IRQ t%x r%x\n", cppi_tx, cppi_rx);
  244. cppi_completion(musb, cppi_rx, cppi_tx);
  245. retval = IRQ_HANDLED;
  246. }
  247. }
  248. /* ack and handle non-CPPI interrupts */
  249. tmp = musb_readl(tibase, DAVINCI_USB_INT_SRC_MASKED_REG);
  250. musb_writel(tibase, DAVINCI_USB_INT_SRC_CLR_REG, tmp);
  251. DBG(4, "IRQ %08x\n", tmp);
  252. musb->int_rx = (tmp & DAVINCI_USB_RXINT_MASK)
  253. >> DAVINCI_USB_RXINT_SHIFT;
  254. musb->int_tx = (tmp & DAVINCI_USB_TXINT_MASK)
  255. >> DAVINCI_USB_TXINT_SHIFT;
  256. musb->int_usb = (tmp & DAVINCI_USB_USBINT_MASK)
  257. >> DAVINCI_USB_USBINT_SHIFT;
  258. /* DRVVBUS irqs are the only proxy we have (a very poor one!) for
  259. * DaVinci's missing ID change IRQ. We need an ID change IRQ to
  260. * switch appropriately between halves of the OTG state machine.
  261. * Managing DEVCTL.SESSION per Mentor docs requires we know its
  262. * value, but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
  263. * Also, DRVVBUS pulses for SRP (but not at 5V) ...
  264. */
  265. if (tmp & (DAVINCI_INTR_DRVVBUS << DAVINCI_USB_USBINT_SHIFT)) {
  266. int drvvbus = musb_readl(tibase, DAVINCI_USB_STAT_REG);
  267. void __iomem *mregs = musb->mregs;
  268. u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
  269. int err = musb->int_usb & MUSB_INTR_VBUSERROR;
  270. err = is_host_enabled(musb)
  271. && (musb->int_usb & MUSB_INTR_VBUSERROR);
  272. if (err) {
  273. /* The Mentor core doesn't debounce VBUS as needed
  274. * to cope with device connect current spikes. This
  275. * means it's not uncommon for bus-powered devices
  276. * to get VBUS errors during enumeration.
  277. *
  278. * This is a workaround, but newer RTL from Mentor
  279. * seems to allow a better one: "re"starting sessions
  280. * without waiting (on EVM, a **long** time) for VBUS
  281. * to stop registering in devctl.
  282. */
  283. musb->int_usb &= ~MUSB_INTR_VBUSERROR;
  284. musb->xceiv.state = OTG_STATE_A_WAIT_VFALL;
  285. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  286. WARNING("VBUS error workaround (delay coming)\n");
  287. } else if (is_host_enabled(musb) && drvvbus) {
  288. musb->is_active = 1;
  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. davinci_source_power(musb, drvvbus, 0);
  303. DBG(2, "VBUS %s (%s)%s, devctl %02x\n",
  304. drvvbus ? "on" : "off",
  305. otg_state_string(musb),
  306. err ? " ERROR" : "",
  307. devctl);
  308. retval = IRQ_HANDLED;
  309. }
  310. if (musb->int_tx || musb->int_rx || musb->int_usb)
  311. retval |= musb_interrupt(musb);
  312. /* irq stays asserted until EOI is written */
  313. musb_writel(tibase, DAVINCI_USB_EOI_REG, 0);
  314. /* poll for ID change */
  315. if (is_otg_enabled(musb)
  316. && musb->xceiv.state == OTG_STATE_B_IDLE)
  317. mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
  318. spin_unlock_irqrestore(&musb->lock, flags);
  319. /* REVISIT we sometimes get unhandled IRQs
  320. * (e.g. ep0). not clear why...
  321. */
  322. if (retval != IRQ_HANDLED)
  323. DBG(5, "unhandled? %08x\n", tmp);
  324. return IRQ_HANDLED;
  325. }
  326. int __init musb_platform_init(struct musb *musb)
  327. {
  328. void __iomem *tibase = musb->ctrl_base;
  329. u32 revision;
  330. musb->mregs += DAVINCI_BASE_OFFSET;
  331. #if 0
  332. /* REVISIT there's something odd about clocking, this
  333. * didn't appear do the job ...
  334. */
  335. musb->clock = clk_get(pDevice, "usb");
  336. if (IS_ERR(musb->clock))
  337. return PTR_ERR(musb->clock);
  338. status = clk_enable(musb->clock);
  339. if (status < 0)
  340. return -ENODEV;
  341. #endif
  342. /* returns zero if e.g. not clocked */
  343. revision = musb_readl(tibase, DAVINCI_USB_VERSION_REG);
  344. if (revision == 0)
  345. return -ENODEV;
  346. if (is_host_enabled(musb))
  347. setup_timer(&otg_workaround, otg_timer, (unsigned long) musb);
  348. musb->board_set_vbus = davinci_set_vbus;
  349. davinci_source_power(musb, 0, 1);
  350. /* reset the controller */
  351. musb_writel(tibase, DAVINCI_USB_CTRL_REG, 0x1);
  352. /* start the on-chip PHY and its PLL */
  353. phy_on();
  354. msleep(5);
  355. /* NOTE: irqs are in mixed mode, not bypass to pure-musb */
  356. pr_debug("DaVinci OTG revision %08x phy %03x control %02x\n",
  357. revision, __raw_readl((void __force __iomem *)
  358. IO_ADDRESS(USBPHY_CTL_PADDR)),
  359. musb_readb(tibase, DAVINCI_USB_CTRL_REG));
  360. musb->isr = davinci_interrupt;
  361. return 0;
  362. }
  363. int musb_platform_exit(struct musb *musb)
  364. {
  365. if (is_host_enabled(musb))
  366. del_timer_sync(&otg_workaround);
  367. davinci_source_power(musb, 0 /*off*/, 1);
  368. /* delay, to avoid problems with module reload */
  369. if (is_host_enabled(musb) && musb->xceiv.default_a) {
  370. int maxdelay = 30;
  371. u8 devctl, warn = 0;
  372. /* if there's no peripheral connected, this can take a
  373. * long time to fall, especially on EVM with huge C133.
  374. */
  375. do {
  376. devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
  377. if (!(devctl & MUSB_DEVCTL_VBUS))
  378. break;
  379. if ((devctl & MUSB_DEVCTL_VBUS) != warn) {
  380. warn = devctl & MUSB_DEVCTL_VBUS;
  381. DBG(1, "VBUS %d\n",
  382. warn >> MUSB_DEVCTL_VBUS_SHIFT);
  383. }
  384. msleep(1000);
  385. maxdelay--;
  386. } while (maxdelay > 0);
  387. /* in OTG mode, another host might be connected */
  388. if (devctl & MUSB_DEVCTL_VBUS)
  389. DBG(1, "VBUS off timeout (devctl %02x)\n", devctl);
  390. }
  391. phy_off();
  392. return 0;
  393. }