usbdev.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:37k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BRIEF MODULE DESCRIPTION
  3.  * Au1000 USB Device-Side (device layer)
  4.  *
  5.  * Copyright 2001-2002 MontaVista Software Inc.
  6.  * Author: MontaVista Software, Inc.
  7.  * stevel@mvista.com or source@mvista.com
  8.  *
  9.  *  This program is free software; you can redistribute  it and/or modify it
  10.  *  under  the terms of  the GNU General  Public License as published by the
  11.  *  Free Software Foundation;  either version 2 of the License, or (at your
  12.  *  option) any later version.
  13.  *
  14.  *  THIS  SOFTWARE  IS PROVIDED   ``AS IS'' AND   ANY EXPRESS OR IMPLIED
  15.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  16.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  17.  *  NO EVENT  SHALL   THE AUTHOR  BE  LIABLE FOR ANY   DIRECT, INDIRECT,
  18.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS OR SERVICES; LOSS OF
  20.  *  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  21.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  22.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24.  *
  25.  *  You should have received a copy of the  GNU General Public License along
  26.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  27.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  28.  */
  29. #include <linux/config.h>
  30. #include <linux/kernel.h>
  31. #include <linux/ioport.h>
  32. #include <linux/sched.h>
  33. #include <linux/signal.h>
  34. #include <linux/errno.h>
  35. #include <linux/poll.h>
  36. #include <linux/init.h>
  37. #include <linux/slab.h>
  38. #include <linux/fcntl.h>
  39. #include <linux/module.h>
  40. #include <linux/spinlock.h>
  41. #include <linux/list.h>
  42. #include <linux/smp_lock.h>
  43. #define DEBUG
  44. #include <linux/usb.h>
  45. #include <asm/io.h>
  46. #include <asm/uaccess.h>
  47. #include <asm/irq.h>
  48. #include <asm/mipsregs.h>
  49. #include <asm/au1000.h>
  50. #include <asm/au1000_dma.h>
  51. #include <asm/au1000_usbdev.h>
  52. #ifdef DEBUG
  53. #undef VDEBUG
  54. #ifdef VDEBUG
  55. #define vdbg(fmt, arg...) printk(KERN_DEBUG __FILE__ ": " fmt "n" , ## arg)
  56. #else
  57. #define vdbg(fmt, arg...) do {} while (0)
  58. #endif
  59. #else
  60. #define vdbg(fmt, arg...) do {} while (0)
  61. #endif
  62. #define MAX(a,b) (((a)>(b))?(a):(b))
  63. #define ALLOC_FLAGS (in_interrupt () ? GFP_ATOMIC : GFP_KERNEL)
  64. #define EP_FIFO_DEPTH 8
  65. typedef enum {
  66. SETUP_STAGE = 0,
  67. DATA_STAGE,
  68. STATUS_STAGE
  69. } ep0_stage_t;
  70. typedef struct {
  71. int read_fifo;
  72. int write_fifo;
  73. int ctrl_stat;
  74. int read_fifo_status;
  75. int write_fifo_status;
  76. } endpoint_reg_t;
  77. typedef struct {
  78. usbdev_pkt_t *head;
  79. usbdev_pkt_t *tail;
  80. int count;
  81. } pkt_list_t;
  82. typedef struct {
  83. int active;
  84. struct usb_endpoint_descriptor *desc;
  85. endpoint_reg_t *reg;
  86. /* Only one of these are used, unless this is the control ep */
  87. pkt_list_t inlist;
  88. pkt_list_t outlist;
  89. unsigned int indma, outdma; /* DMA channel numbers for IN, OUT */
  90. /* following are extracted from endpoint descriptor for easy access */
  91. int max_pkt_size;
  92. int type;
  93. int direction;
  94. /* WE assign endpoint addresses! */
  95. int address;
  96. spinlock_t lock;
  97. } endpoint_t;
  98. static struct usb_dev {
  99. endpoint_t ep[6];
  100. ep0_stage_t ep0_stage;
  101. struct usb_device_descriptor *   dev_desc;
  102. struct usb_interface_descriptor* if_desc;
  103. struct usb_config_descriptor *   conf_desc;
  104. u8 *                             full_conf_desc;
  105. struct usb_string_descriptor *   str_desc[6];
  106. /* callback to function layer */
  107. void (*func_cb)(usbdev_cb_type_t type, unsigned long arg,
  108. void *cb_data);
  109. void* cb_data;
  110. usbdev_state_t state; // device state
  111. int suspended; // suspended flag
  112. int address; // device address
  113. int interface;
  114. int num_ep;
  115. u8 alternate_setting;
  116. u8 configuration; // configuration value
  117. int remote_wakeup_en;
  118. } usbdev;
  119. static endpoint_reg_t ep_reg[] = {
  120. // FIFO's 0 and 1 are EP0 default control
  121. {USBD_EP0RD, USBD_EP0WR, USBD_EP0CS, USBD_EP0RDSTAT, USBD_EP0WRSTAT },
  122. {0},
  123. // FIFO 2 is EP2, IN
  124. { -1, USBD_EP2WR, USBD_EP2CS, -1, USBD_EP2WRSTAT },
  125. // FIFO 3 is EP3, IN
  126. {    -1,     USBD_EP3WR, USBD_EP3CS,     -1,         USBD_EP3WRSTAT },
  127. // FIFO 4 is EP4, OUT
  128. {USBD_EP4RD,     -1,     USBD_EP4CS, USBD_EP4RDSTAT,     -1         },
  129. // FIFO 5 is EP5, OUT
  130. {USBD_EP5RD,     -1,     USBD_EP5CS, USBD_EP5RDSTAT,     -1         }
  131. };
  132. static struct {
  133. unsigned int id;
  134. const char *str;
  135. } ep_dma_id[] = {
  136. { DMA_ID_USBDEV_EP0_TX, "USBDev EP0 IN" },
  137. { DMA_ID_USBDEV_EP0_RX, "USBDev EP0 OUT" },
  138. { DMA_ID_USBDEV_EP2_TX, "USBDev EP2 IN" },
  139. { DMA_ID_USBDEV_EP3_TX, "USBDev EP3 IN" },
  140. { DMA_ID_USBDEV_EP4_RX, "USBDev EP4 OUT" },
  141. { DMA_ID_USBDEV_EP5_RX, "USBDev EP5 OUT" }
  142. };
  143. #define DIR_OUT 0
  144. #define DIR_IN  (1<<3)
  145. #define CONTROL_EP USB_ENDPOINT_XFER_CONTROL
  146. #define BULK_EP    USB_ENDPOINT_XFER_BULK
  147. static inline endpoint_t *
  148. epaddr_to_ep(struct usb_dev* dev, int ep_addr)
  149. {
  150. if (ep_addr >= 0 && ep_addr < 2)
  151. return &dev->ep[0];
  152. if (ep_addr < 6)
  153. return &dev->ep[ep_addr];
  154. return NULL;
  155. }
  156. static const char* std_req_name[] = {
  157. "GET_STATUS",
  158. "CLEAR_FEATURE",
  159. "RESERVED",
  160. "SET_FEATURE",
  161. "RESERVED",
  162. "SET_ADDRESS",
  163. "GET_DESCRIPTOR",
  164. "SET_DESCRIPTOR",
  165. "GET_CONFIGURATION",
  166. "SET_CONFIGURATION",
  167. "GET_INTERFACE",
  168. "SET_INTERFACE",
  169. "SYNCH_FRAME"
  170. };
  171. static inline const char*
  172. get_std_req_name(int req)
  173. {
  174. return (req >= 0 && req <= 12) ? std_req_name[req] : "UNKNOWN";
  175. }
  176. #if 0
  177. static void
  178. dump_setup(devrequest* s)
  179. {
  180. dbg(__FUNCTION__ ": requesttype=%d", s->requesttype);
  181. dbg(__FUNCTION__ ": request=%d %s", s->request,
  182.     get_std_req_name(s->request));
  183. dbg(__FUNCTION__ ": value=0x%04x", s->wValue);
  184. dbg(__FUNCTION__ ": index=%d", s->index);
  185. dbg(__FUNCTION__ ": length=%d", s->length);
  186. }
  187. #endif
  188. static inline usbdev_pkt_t *
  189. alloc_packet(endpoint_t * ep, int data_size, void* data)
  190. {
  191. usbdev_pkt_t* pkt =
  192. (usbdev_pkt_t *)kmalloc(sizeof(usbdev_pkt_t) + data_size,
  193. ALLOC_FLAGS);
  194. if (!pkt)
  195. return NULL;
  196. pkt->ep_addr = ep->address;
  197. pkt->size = data_size;
  198. pkt->status = 0;
  199. pkt->next = NULL;
  200. if (data)
  201. memcpy(pkt->payload, data, data_size);
  202. return pkt;
  203. }
  204. /*
  205.  * Link a packet to the tail of the enpoint's packet list.
  206.  * EP spinlock must be held when calling.
  207.  */
  208. static void
  209. link_tail(endpoint_t * ep, pkt_list_t * list, usbdev_pkt_t * pkt)
  210. {
  211. if (!list->tail) {
  212. list->head = list->tail = pkt;
  213. list->count = 1;
  214. } else {
  215. list->tail->next = pkt;
  216. list->tail = pkt;
  217. list->count++;
  218. }
  219. }
  220. /*
  221.  * Unlink and return a packet from the head of the given packet
  222.  * list. It is the responsibility of the caller to free the packet.
  223.  * EP spinlock must be held when calling.
  224.  */
  225. static usbdev_pkt_t *
  226. unlink_head(pkt_list_t * list)
  227. {
  228. usbdev_pkt_t *pkt;
  229. pkt = list->head;
  230. if (!pkt || !list->count) {
  231. return NULL;
  232. }
  233. list->head = pkt->next;
  234. if (!list->head) {
  235. list->head = list->tail = NULL;
  236. list->count = 0;
  237. } else
  238. list->count--;
  239. return pkt;
  240. }
  241. /*
  242.  * Create and attach a new packet to the tail of the enpoint's
  243.  * packet list. EP spinlock must be held when calling.
  244.  */
  245. static usbdev_pkt_t *
  246. add_packet(endpoint_t * ep, pkt_list_t * list, int size)
  247. {
  248. usbdev_pkt_t *pkt = alloc_packet(ep, size, NULL);
  249. if (!pkt)
  250. return NULL;
  251. link_tail(ep, list, pkt);
  252. return pkt;
  253. }
  254. /*
  255.  * Unlink and free a packet from the head of the enpoint's
  256.  * packet list. EP spinlock must be held when calling.
  257.  */
  258. static inline void
  259. free_packet(pkt_list_t * list)
  260. {
  261. kfree(unlink_head(list));
  262. }
  263. /* EP spinlock must be held when calling. */
  264. static inline void
  265. flush_pkt_list(pkt_list_t * list)
  266. {
  267. while (list->count)
  268. free_packet(list);
  269. }
  270. /* EP spinlock must be held when calling */
  271. static inline void
  272. flush_write_fifo(endpoint_t * ep)
  273. {
  274. if (ep->reg->write_fifo_status >= 0) {
  275. au_writel(USBDEV_FSTAT_FLUSH | USBDEV_FSTAT_UF |
  276.   USBDEV_FSTAT_OF,
  277.   ep->reg->write_fifo_status);
  278. //udelay(100);
  279. //au_writel(USBDEV_FSTAT_UF | USBDEV_FSTAT_OF,
  280. //   ep->reg->write_fifo_status);
  281. }
  282. }
  283. /* EP spinlock must be held when calling */
  284. static inline void
  285. flush_read_fifo(endpoint_t * ep)
  286. {
  287. if (ep->reg->read_fifo_status >= 0) {
  288. au_writel(USBDEV_FSTAT_FLUSH | USBDEV_FSTAT_UF |
  289.   USBDEV_FSTAT_OF,
  290.   ep->reg->read_fifo_status);
  291. //udelay(100);
  292. //au_writel(USBDEV_FSTAT_UF | USBDEV_FSTAT_OF,
  293. //   ep->reg->read_fifo_status);
  294. }
  295. }
  296. /* EP spinlock must be held when calling. */
  297. static void
  298. endpoint_flush(endpoint_t * ep)
  299. {
  300. // First, flush all packets
  301. flush_pkt_list(&ep->inlist);
  302. flush_pkt_list(&ep->outlist);
  303. // Now flush the endpoint's h/w FIFO(s)
  304. flush_write_fifo(ep);
  305. flush_read_fifo(ep);
  306. }
  307. /* EP spinlock must be held when calling. */
  308. static void
  309. endpoint_stall(endpoint_t * ep)
  310. {
  311. u32 cs;
  312. warn(__FUNCTION__);
  313. cs = au_readl(ep->reg->ctrl_stat) | USBDEV_CS_STALL;
  314. au_writel(cs, ep->reg->ctrl_stat);
  315. }
  316. /* EP spinlock must be held when calling. */
  317. static void
  318. endpoint_unstall(endpoint_t * ep)
  319. {
  320. u32 cs;
  321. warn(__FUNCTION__);
  322. cs = au_readl(ep->reg->ctrl_stat) & ~USBDEV_CS_STALL;
  323. au_writel(cs, ep->reg->ctrl_stat);
  324. }
  325. static void
  326. endpoint_reset_datatoggle(endpoint_t * ep)
  327. {
  328. // FIXME: is this possible?
  329. }
  330. /* EP spinlock must be held when calling. */
  331. static int
  332. endpoint_fifo_read(endpoint_t * ep)
  333. {
  334. int read_count = 0;
  335. u8 *bufptr;
  336. usbdev_pkt_t *pkt = ep->outlist.tail;
  337. if (!pkt)
  338. return -EINVAL;
  339. bufptr = &pkt->payload[pkt->size];
  340. while (au_readl(ep->reg->read_fifo_status) & USBDEV_FSTAT_FCNT_MASK) {
  341. *bufptr++ = au_readl(ep->reg->read_fifo) & 0xff;
  342. read_count++;
  343. pkt->size++;
  344. }
  345. return read_count;
  346. }
  347. #if 0
  348. /* EP spinlock must be held when calling. */
  349. static int
  350. endpoint_fifo_write(endpoint_t * ep, int index)
  351. {
  352. int write_count = 0;
  353. u8 *bufptr;
  354. usbdev_pkt_t *pkt = ep->inlist.head;
  355. if (!pkt)
  356. return -EINVAL;
  357. bufptr = &pkt->payload[index];
  358. while ((au_readl(ep->reg->write_fifo_status) &
  359. USBDEV_FSTAT_FCNT_MASK) < EP_FIFO_DEPTH) {
  360. if (bufptr < pkt->payload + pkt->size) {
  361. au_writel(*bufptr++, ep->reg->write_fifo);
  362. write_count++;
  363. } else {
  364. break;
  365. }
  366. }
  367. return write_count;
  368. }
  369. #endif
  370. /*
  371.  * This routine is called to restart transmission of a packet.
  372.  * The endpoint's TSIZE must be set to the new packet's size,
  373.  * and DMA to the write FIFO needs to be restarted.
  374.  * EP spinlock must be held when calling.
  375.  */
  376. static void
  377. kickstart_send_packet(endpoint_t * ep)
  378. {
  379. u32 cs;
  380. usbdev_pkt_t *pkt = ep->inlist.head;
  381. vdbg(__FUNCTION__ ": ep%d, pkt=%p", ep->address, pkt);
  382. if (!pkt) {
  383. err(__FUNCTION__ ": head=NULL! list->count=%d",
  384.     ep->inlist.count);
  385. return;
  386. }
  387. dma_cache_wback_inv((unsigned long)pkt->payload, pkt->size);
  388. /*
  389.  * make sure FIFO is empty
  390.  */
  391. flush_write_fifo(ep);
  392. cs = au_readl(ep->reg->ctrl_stat) & USBDEV_CS_STALL;
  393. cs |= (pkt->size << USBDEV_CS_TSIZE_BIT);
  394. au_writel(cs, ep->reg->ctrl_stat);
  395. if (get_dma_active_buffer(ep->indma) == 1) {
  396. set_dma_count1(ep->indma, pkt->size);
  397. set_dma_addr1(ep->indma, virt_to_phys(pkt->payload));
  398. enable_dma_buffer1(ep->indma); // reenable
  399. } else {
  400. set_dma_count0(ep->indma, pkt->size);
  401. set_dma_addr0(ep->indma, virt_to_phys(pkt->payload));
  402. enable_dma_buffer0(ep->indma); // reenable
  403. }
  404. if (dma_halted(ep->indma))
  405. start_dma(ep->indma);
  406. }
  407. /*
  408.  * This routine is called when a packet in the inlist has been
  409.  * completed. Frees the completed packet and starts sending the
  410.  * next. EP spinlock must be held when calling.
  411.  */
  412. static usbdev_pkt_t *
  413. send_packet_complete(endpoint_t * ep)
  414. {
  415. usbdev_pkt_t *pkt = unlink_head(&ep->inlist);
  416. if (pkt) {
  417. pkt->status =
  418. (au_readl(ep->reg->ctrl_stat) & USBDEV_CS_NAK) ?
  419. PKT_STATUS_NAK : PKT_STATUS_ACK;
  420. vdbg(__FUNCTION__ ": ep%d, %s pkt=%p, list count=%d",
  421.      ep->address, (pkt->status & PKT_STATUS_NAK) ?
  422.      "NAK" : "ACK", pkt, ep->inlist.count);
  423. }
  424. /*
  425.  * The write fifo should already be drained if things are
  426.  * working right, but flush it anyway just in case.
  427.  */
  428. flush_write_fifo(ep);
  429. // begin transmitting next packet in the inlist
  430. if (ep->inlist.count) {
  431. kickstart_send_packet(ep);
  432. }
  433. return pkt;
  434. }
  435. /*
  436.  * Add a new packet to the tail of the given ep's packet
  437.  * inlist. The transmit complete interrupt frees packets from
  438.  * the head of this list. EP spinlock must be held when calling.
  439.  */
  440. static int
  441. send_packet(struct usb_dev* dev, usbdev_pkt_t *pkt, int async)
  442. {
  443. pkt_list_t *list;
  444. endpoint_t* ep;
  445. if (!pkt || !(ep = epaddr_to_ep(dev, pkt->ep_addr)))
  446. return -EINVAL;
  447. if (!pkt->size)
  448. return 0;
  449. list = &ep->inlist;
  450. if (!async && list->count) {
  451. halt_dma(ep->indma);
  452. flush_pkt_list(list);
  453. }
  454. link_tail(ep, list, pkt);
  455. vdbg(__FUNCTION__ ": ep%d, pkt=%p, size=%d, list count=%d",
  456.      ep->address, pkt, pkt->size, list->count);
  457. if (list->count == 1) {
  458. /*
  459.  * if the packet count is one, it means the list was empty,
  460.  * and no more data will go out this ep until we kick-start
  461.  * it again.
  462.  */
  463. kickstart_send_packet(ep);
  464. }
  465. return pkt->size;
  466. }
  467. /*
  468.  * This routine is called to restart reception of a packet.
  469.  * EP spinlock must be held when calling.
  470.  */
  471. static void
  472. kickstart_receive_packet(endpoint_t * ep)
  473. {
  474. usbdev_pkt_t *pkt;
  475. // get and link a new packet for next reception
  476. if (!(pkt = add_packet(ep, &ep->outlist, ep->max_pkt_size))) {
  477. err(__FUNCTION__ ": could not alloc new packet");
  478. return;
  479. }
  480. if (get_dma_active_buffer(ep->outdma) == 1) {
  481. clear_dma_done1(ep->outdma);
  482. set_dma_count1(ep->outdma, ep->max_pkt_size);
  483. set_dma_count0(ep->outdma, 0);
  484. set_dma_addr1(ep->outdma, virt_to_phys(pkt->payload));
  485. enable_dma_buffer1(ep->outdma); // reenable
  486. } else {
  487. clear_dma_done0(ep->outdma);
  488. set_dma_count0(ep->outdma, ep->max_pkt_size);
  489. set_dma_count1(ep->outdma, 0);
  490. set_dma_addr0(ep->outdma, virt_to_phys(pkt->payload));
  491. enable_dma_buffer0(ep->outdma); // reenable
  492. }
  493. if (dma_halted(ep->outdma))
  494. start_dma(ep->outdma);
  495. }
  496. /*
  497.  * This routine is called when a packet in the outlist has been
  498.  * completed (received) and we need to prepare for a new packet
  499.  * to be received. Halts DMA and computes the packet size from the
  500.  * remaining DMA counter. Then prepares a new packet for reception
  501.  * and restarts DMA. FIXME: what if another packet comes in
  502.  * on top of the completed packet? Counter would be wrong.
  503.  * EP spinlock must be held when calling.
  504.  */
  505. static usbdev_pkt_t *
  506. receive_packet_complete(endpoint_t * ep)
  507. {
  508. usbdev_pkt_t *pkt = ep->outlist.tail;
  509. u32 cs;
  510. halt_dma(ep->outdma);
  511. cs = au_readl(ep->reg->ctrl_stat);
  512. if (!pkt)
  513. return NULL;
  514. pkt->size = ep->max_pkt_size - get_dma_residue(ep->outdma);
  515. if (pkt->size)
  516. dma_cache_inv((unsigned long)pkt->payload, pkt->size);
  517. /*
  518.  * need to pull out any remaining bytes in the FIFO.
  519.  */
  520. endpoint_fifo_read(ep);
  521. /*
  522.  * should be drained now, but flush anyway just in case.
  523.  */
  524. flush_read_fifo(ep);
  525. pkt->status = (cs & USBDEV_CS_NAK) ? PKT_STATUS_NAK : PKT_STATUS_ACK;
  526. if (ep->address == 0 && (cs & USBDEV_CS_SU))
  527. pkt->status |= PKT_STATUS_SU;
  528. vdbg(__FUNCTION__ ": ep%d, %s pkt=%p, size=%d",
  529.      ep->address, (pkt->status & PKT_STATUS_NAK) ?
  530.      "NAK" : "ACK", pkt, pkt->size);
  531. kickstart_receive_packet(ep);
  532. return pkt;
  533. }
  534. /*
  535.  ****************************************************************************
  536.  * Here starts the standard device request handlers. They are
  537.  * all called by do_setup() via a table of function pointers.
  538.  ****************************************************************************
  539.  */
  540. static ep0_stage_t
  541. do_get_status(struct usb_dev* dev, devrequest* setup)
  542. {
  543. switch (setup->requesttype) {
  544. case 0x80: // Device
  545. // FIXME: send device status
  546. break;
  547. case 0x81: // Interface
  548. // FIXME: send interface status
  549. break;
  550. case 0x82: // End Point
  551. // FIXME: send endpoint status
  552. break;
  553. default:
  554. // Invalid Command
  555. endpoint_stall(&dev->ep[0]); // Stall End Point 0
  556. break;
  557. }
  558. return STATUS_STAGE;
  559. }
  560. static ep0_stage_t
  561. do_clear_feature(struct usb_dev* dev, devrequest* setup)
  562. {
  563. switch (setup->requesttype) {
  564. case 0x00: // Device
  565. if ((le16_to_cpu(setup->wValue) & 0xff) == 1)
  566. dev->remote_wakeup_en = 0;
  567. else
  568. endpoint_stall(&dev->ep[0]);
  569. break;
  570. case 0x02: // End Point
  571. if ((le16_to_cpu(setup->wValue) & 0xff) == 0) {
  572. endpoint_t *ep =
  573. epaddr_to_ep(dev,
  574.      le16_to_cpu(setup->index) & 0xff);
  575. endpoint_unstall(ep);
  576. endpoint_reset_datatoggle(ep);
  577. } else
  578. endpoint_stall(&dev->ep[0]);
  579. break;
  580. }
  581. return SETUP_STAGE;
  582. }
  583. static ep0_stage_t
  584. do_reserved(struct usb_dev* dev, devrequest* setup)
  585. {
  586. // Invalid request, stall End Point 0
  587. endpoint_stall(&dev->ep[0]);
  588. return SETUP_STAGE;
  589. }
  590. static ep0_stage_t
  591. do_set_feature(struct usb_dev* dev, devrequest* setup)
  592. {
  593. switch (setup->requesttype) {
  594. case 0x00: // Device
  595. if ((le16_to_cpu(setup->wValue) & 0xff) == 1)
  596. dev->remote_wakeup_en = 1;
  597. else
  598. endpoint_stall(&dev->ep[0]);
  599. break;
  600. case 0x02: // End Point
  601. if ((le16_to_cpu(setup->vwValue) & 0xff) == 0) {
  602. endpoint_t *ep =
  603. epaddr_to_ep(dev,
  604.      le16_to_cpu(setup->index) & 0xff);
  605. endpoint_stall(ep);
  606. } else
  607. endpoint_stall(&dev->ep[0]);
  608. break;
  609. }
  610. return SETUP_STAGE;
  611. }
  612. static ep0_stage_t
  613. do_set_address(struct usb_dev* dev, devrequest* setup)
  614. {
  615. int new_state = dev->state;
  616. int new_addr = le16_to_cpu(setup->wValue);
  617. dbg(__FUNCTION__ ": our address=%d", new_addr);
  618. if (new_addr > 127) {
  619. // usb spec doesn't tell us what to do, so just go to
  620. // default state
  621. new_state = DEFAULT;
  622. dev->address = 0;
  623. } else if (dev->address != new_addr) {
  624. dev->address = new_addr;
  625. new_state = ADDRESS;
  626. }
  627. if (dev->state != new_state) {
  628. dev->state = new_state;
  629. /* inform function layer of usbdev state change */
  630. dev->func_cb(CB_NEW_STATE, dev->state, dev->cb_data);
  631. }
  632. return SETUP_STAGE;
  633. }
  634. static ep0_stage_t
  635. do_get_descriptor(struct usb_dev* dev, devrequest* setup)
  636. {
  637. int strnum, desc_len = le16_to_cpu(setup->length);
  638. switch (le16_to_cpu(setup->wValue) >> 8) {
  639. case USB_DT_DEVICE:
  640. // send device descriptor!
  641. desc_len = desc_len > dev->dev_desc->bLength ?
  642. dev->dev_desc->bLength : desc_len;
  643. dbg("sending device desc, size=%d", desc_len);
  644. send_packet(dev, alloc_packet(&dev->ep[0], desc_len,
  645.       dev->dev_desc), 0);
  646. break;
  647. case USB_DT_CONFIG:
  648. // If the config descr index in low-byte of
  649. // setup->wValue is valid, send config descr,
  650. // otherwise stall ep0.
  651. if ((le16_to_cpu(setup->wValue) & 0xff) == 0) {
  652. // send config descriptor!
  653. if (desc_len <= USB_DT_CONFIG_SIZE) {
  654. dbg("sending partial config desc, size=%d",
  655.      desc_len);
  656. send_packet(dev,
  657.     alloc_packet(&dev->ep[0],
  658.  desc_len,
  659.  dev->conf_desc),
  660.     0);
  661. } else {
  662. int len = dev->conf_desc->wTotalLength;
  663. dbg("sending whole config desc,"
  664.     " size=%d, our size=%d", desc_len, len);
  665. desc_len = desc_len > len ? len : desc_len;
  666. send_packet(dev,
  667.     alloc_packet(&dev->ep[0],
  668.  desc_len,
  669.  dev->full_conf_desc),
  670.     0);
  671. }
  672. } else
  673. endpoint_stall(&dev->ep[0]);
  674. break;
  675. case USB_DT_STRING:
  676. // If the string descr index in low-byte of setup->wValue
  677. // is valid, send string descr, otherwise stall ep0.
  678. strnum = le16_to_cpu(setup->wValue) & 0xff;
  679. if (strnum >= 0 && strnum < 6) {
  680. struct usb_string_descriptor *desc =
  681. dev->str_desc[strnum];
  682. desc_len = desc_len > desc->bLength ?
  683. desc->bLength : desc_len;
  684. dbg("sending string desc %d", strnum);
  685. send_packet(dev,
  686.     alloc_packet(&dev->ep[0], desc_len,
  687.  desc), 0);
  688. } else
  689. endpoint_stall(&dev->ep[0]);
  690. break;
  691. default:
  692. // Invalid request
  693. err("invalid get desc=%d, stalled",
  694.     le16_to_cpu(setup->wValue) >> 8);
  695. endpoint_stall(&dev->ep[0]); // Stall endpoint 0
  696. break;
  697. }
  698. return STATUS_STAGE;
  699. }
  700. static ep0_stage_t
  701. do_set_descriptor(struct usb_dev* dev, devrequest* setup)
  702. {
  703. // TODO: implement
  704. // there will be an OUT data stage (the descriptor to set)
  705. return DATA_STAGE;
  706. }
  707. static ep0_stage_t
  708. do_get_configuration(struct usb_dev* dev, devrequest* setup)
  709. {
  710. // send dev->configuration
  711. dbg("sending config");
  712. send_packet(dev, alloc_packet(&dev->ep[0], 1, &dev->configuration),
  713.     0);
  714. return STATUS_STAGE;
  715. }
  716. static ep0_stage_t
  717. do_set_configuration(struct usb_dev* dev, devrequest* setup)
  718. {
  719. // set active config to low-byte of setup->wValue
  720. dev->configuration = le16_to_cpu(setup->wValue) & 0xff;
  721. dbg("set config, config=%d", dev->configuration);
  722. if (!dev->configuration && dev->state > DEFAULT) {
  723. dev->state = ADDRESS;
  724. /* inform function layer of usbdev state change */
  725. dev->func_cb(CB_NEW_STATE, dev->state, dev->cb_data);
  726. } else if (dev->configuration == 1) {
  727. dev->state = CONFIGURED;
  728. /* inform function layer of usbdev state change */
  729. dev->func_cb(CB_NEW_STATE, dev->state, dev->cb_data);
  730. } else {
  731. // FIXME: "respond with request error" - how?
  732. }
  733. return SETUP_STAGE;
  734. }
  735. static ep0_stage_t
  736. do_get_interface(struct usb_dev* dev, devrequest* setup)
  737. {
  738. // interface must be zero.
  739. if ((le16_to_cpu(setup->index) & 0xff) || dev->state == ADDRESS) {
  740. // FIXME: respond with "request error". how?
  741. } else if (dev->state == CONFIGURED) {
  742. // send dev->alternate_setting
  743. dbg("sending alt setting");
  744. send_packet(dev, alloc_packet(&dev->ep[0], 1,
  745.       &dev->alternate_setting), 0);
  746. }
  747. return STATUS_STAGE;
  748. }
  749. static ep0_stage_t
  750. do_set_interface(struct usb_dev* dev, devrequest* setup)
  751. {
  752. if (dev->state == ADDRESS) {
  753. // FIXME: respond with "request error". how?
  754. } else if (dev->state == CONFIGURED) {
  755. dev->interface = le16_to_cpu(setup->index) & 0xff;
  756. dev->alternate_setting =
  757.     le16_to_cpu(setup->wValue) & 0xff;
  758. // interface and alternate_setting must be zero
  759. if (dev->interface || dev->alternate_setting) {
  760. // FIXME: respond with "request error". how?
  761. }
  762. }
  763. return SETUP_STAGE;
  764. }
  765. static ep0_stage_t
  766. do_synch_frame(struct usb_dev* dev, devrequest* setup)
  767. {
  768. // TODO
  769. return SETUP_STAGE;
  770. }
  771. typedef ep0_stage_t (*req_method_t)(struct usb_dev* dev,
  772.     devrequest* setup);
  773. /* Table of the standard device request handlers */
  774. static const req_method_t req_method[] = {
  775. do_get_status,
  776. do_clear_feature,
  777. do_reserved,
  778. do_set_feature,
  779. do_reserved,
  780. do_set_address,
  781. do_get_descriptor,
  782. do_set_descriptor,
  783. do_get_configuration,
  784. do_set_configuration,
  785. do_get_interface,
  786. do_set_interface,
  787. do_synch_frame
  788. };
  789. // SETUP packet request dispatcher
  790. static void
  791. do_setup (struct usb_dev* dev, devrequest* setup)
  792. {
  793. req_method_t m;
  794. dbg(__FUNCTION__ ": req %d %s", setup->request,
  795.     get_std_req_name(setup->request));
  796. if ((setup->requesttype & USB_TYPE_MASK) != USB_TYPE_STANDARD ||
  797.     (setup->requesttype & USB_RECIP_MASK) != USB_RECIP_DEVICE) {
  798. err(__FUNCTION__ ": invalid requesttype 0x%02x",
  799.     setup->requesttype);
  800. return;
  801. }
  802. if ((setup->requesttype & 0x80) == USB_DIR_OUT && setup->length)
  803. dbg(__FUNCTION__ ": OUT phase! length=%d", setup->length);
  804. if (setup->request < sizeof(req_method)/sizeof(req_method_t))
  805. m = req_method[setup->request];
  806. else
  807. m = do_reserved;
  808. dev->ep0_stage = (*m)(dev, setup);
  809. }
  810. /*
  811.  * A SETUP, DATA0, or DATA1 packet has been received
  812.  * on the default control endpoint's fifo.
  813.  */
  814. static void
  815. process_ep0_receive (struct usb_dev* dev)
  816. {
  817. endpoint_t *ep0 = &dev->ep[0];
  818. usbdev_pkt_t *pkt;
  819. spin_lock(&ep0->lock);
  820. // complete packet and prepare a new packet
  821. pkt = receive_packet_complete(ep0);
  822. if (!pkt) {
  823. // FIXME: should  put a warn/err here.
  824. spin_unlock(&ep0->lock);
  825. return;
  826. }
  827. // unlink immediately from endpoint.
  828. unlink_head(&ep0->outlist);
  829. // override current stage if h/w says it's a setup packet
  830. if (pkt->status & PKT_STATUS_SU)
  831. dev->ep0_stage = SETUP_STAGE;
  832. switch (dev->ep0_stage) {
  833. case SETUP_STAGE:
  834. vdbg("SU bit is %s in setup stage",
  835.      (pkt->status & PKT_STATUS_SU) ? "set" : "not set");
  836. if (pkt->size == sizeof(devrequest)) {
  837. #ifdef VDEBUG
  838. if (pkt->status & PKT_STATUS_ACK)
  839. vdbg("received SETUP");
  840. else
  841. vdbg("received NAK SETUP");
  842. #endif
  843. do_setup(dev, (devrequest*)pkt->payload);
  844. } else
  845. err(__FUNCTION__ ": wrong size SETUP received");
  846. break;
  847. case DATA_STAGE:
  848. /*
  849.  * this setup has an OUT data stage. Of the standard
  850.  * device requests, only set_descriptor has this stage,
  851.  * so this packet is that descriptor. TODO: drop it for
  852.  * now, set_descriptor not implemented.
  853.  *
  854.  * Need to place a byte in the write FIFO here, to prepare
  855.  * to send a zero-length DATA ack packet to the host in the
  856.  * STATUS stage.
  857.  */
  858. au_writel(0, ep0->reg->write_fifo);
  859. dbg("received OUT stage DATAx on EP0, size=%d", pkt->size);
  860. dev->ep0_stage = SETUP_STAGE;
  861. break;
  862. case STATUS_STAGE:
  863. // this setup had an IN data stage, and host is ACK'ing
  864. // the packet we sent during that stage.
  865. if (pkt->size != 0)
  866. warn("received non-zero ACK on EP0??");
  867. #ifdef VDEBUG
  868. else
  869. vdbg("received ACK on EP0");
  870. #endif
  871. dev->ep0_stage = SETUP_STAGE;
  872. break;
  873. }
  874. spin_unlock(&ep0->lock);
  875. // we're done processing the packet, free it
  876. kfree(pkt);
  877. }
  878. /*
  879.  * A DATA0/1 packet has been received on one of the OUT endpoints (4 or 5)
  880.  */
  881. static void
  882. process_ep_receive (struct usb_dev* dev, endpoint_t *ep)
  883. {
  884. usbdev_pkt_t *pkt;
  885. spin_lock(&ep->lock);
  886. pkt = receive_packet_complete(ep);
  887. spin_unlock(&ep->lock);
  888. dev->func_cb(CB_PKT_COMPLETE, (unsigned long)pkt, dev->cb_data);
  889. }
  890. /* This ISR handles the receive complete and suspend events */
  891. static void
  892. req_sus_intr (int irq, void *dev_id, struct pt_regs *regs)
  893. {
  894. struct usb_dev *dev = (struct usb_dev *) dev_id;
  895. u32 status;
  896. status = au_readl(USBD_INTSTAT);
  897. au_writel(status, USBD_INTSTAT); // ack'em
  898. if (status & (1<<0))
  899. process_ep0_receive(dev);
  900. if (status & (1<<4))
  901. process_ep_receive(dev, &dev->ep[4]);
  902. if (status & (1<<5))
  903. process_ep_receive(dev, &dev->ep[5]);
  904. }
  905. /* This ISR handles the DMA done events on EP0 */
  906. static void
  907. dma_done_ep0_intr(int irq, void *dev_id, struct pt_regs *regs)
  908. {
  909. struct usb_dev *dev = (struct usb_dev *) dev_id;
  910. usbdev_pkt_t* pkt;
  911. endpoint_t *ep0 = &dev->ep[0];
  912. u32 cs0, buff_done;
  913. spin_lock(&ep0->lock);
  914. cs0 = au_readl(ep0->reg->ctrl_stat);
  915. // first check packet transmit done
  916. if ((buff_done = get_dma_buffer_done(ep0->indma)) != 0) {
  917. // transmitted a DATAx packet during DATA stage
  918. // on control endpoint 0
  919. // clear DMA done bit
  920. if (buff_done & DMA_D0)
  921. clear_dma_done0(ep0->indma);
  922. if (buff_done & DMA_D1)
  923. clear_dma_done1(ep0->indma);
  924. pkt = send_packet_complete(ep0);
  925. if (pkt)
  926. kfree(pkt);
  927. }
  928. /*
  929.  * Now check packet receive done. Shouldn't get these,
  930.  * the receive packet complete intr should happen
  931.  * before the DMA done intr occurs.
  932.  */
  933. if ((buff_done = get_dma_buffer_done(ep0->outdma)) != 0) {
  934. // clear DMA done bit
  935. if (buff_done & DMA_D0)
  936. clear_dma_done0(ep0->outdma);
  937. if (buff_done & DMA_D1)
  938. clear_dma_done1(ep0->outdma);
  939. //process_ep0_receive(dev);
  940. }
  941. spin_unlock(&ep0->lock);
  942. }
  943. /* This ISR handles the DMA done events on endpoints 2,3,4,5 */
  944. static void
  945. dma_done_ep_intr(int irq, void *dev_id, struct pt_regs *regs)
  946. {
  947. struct usb_dev *dev = (struct usb_dev *) dev_id;
  948. int i;
  949. for (i = 2; i < 6; i++) {
  950. u32 buff_done;
  951. usbdev_pkt_t* pkt;
  952. endpoint_t *ep = &dev->ep[i];
  953. if (!ep->active) continue;
  954. spin_lock(&ep->lock);
  955. if (ep->direction == USB_DIR_IN) {
  956. buff_done = get_dma_buffer_done(ep->indma);
  957. if (buff_done != 0) {
  958. // transmitted a DATAx pkt on the IN ep
  959. // clear DMA done bit
  960. if (buff_done & DMA_D0)
  961. clear_dma_done0(ep->indma);
  962. if (buff_done & DMA_D1)
  963. clear_dma_done1(ep->indma);
  964. pkt = send_packet_complete(ep);
  965. spin_unlock(&ep->lock);
  966. dev->func_cb(CB_PKT_COMPLETE,
  967.      (unsigned long)pkt,
  968.      dev->cb_data);
  969. spin_lock(&ep->lock);
  970. }
  971. } else {
  972. /*
  973.  * Check packet receive done (OUT ep). Shouldn't get
  974.  * these, the rx packet complete intr should happen
  975.  * before the DMA done intr occurs.
  976.  */
  977. buff_done = get_dma_buffer_done(ep->outdma);
  978. if (buff_done != 0) {
  979. // received a DATAx pkt on the OUT ep
  980. // clear DMA done bit
  981. if (buff_done & DMA_D0)
  982. clear_dma_done0(ep->outdma);
  983. if (buff_done & DMA_D1)
  984. clear_dma_done1(ep->outdma);
  985. //process_ep_receive(dev, ep);
  986. }
  987. }
  988. spin_unlock(&ep->lock);
  989. }
  990. }
  991. /***************************************************************************
  992.  * Here begins the external interface functions
  993.  ***************************************************************************
  994.  */
  995. /*
  996.  * allocate a new packet
  997.  */
  998. int
  999. usbdev_alloc_packet(int ep_addr, int data_size, usbdev_pkt_t** pkt)
  1000. {
  1001. endpoint_t * ep = epaddr_to_ep(&usbdev, ep_addr);
  1002. usbdev_pkt_t* lpkt = NULL;
  1003. if (!ep || !ep->active || ep->address < 2)
  1004. return -ENODEV;
  1005. if (data_size > ep->max_pkt_size)
  1006. return -EINVAL;
  1007. lpkt = *pkt = alloc_packet(ep, data_size, NULL);
  1008. if (!lpkt)
  1009. return -ENOMEM;
  1010. return 0;
  1011. }
  1012. /*
  1013.  * packet send
  1014.  */
  1015. int
  1016. usbdev_send_packet(int ep_addr, usbdev_pkt_t * pkt)
  1017. {
  1018. unsigned long flags;
  1019. int count;
  1020. endpoint_t * ep;
  1021. if (!pkt || !(ep = epaddr_to_ep(&usbdev, pkt->ep_addr)) ||
  1022.     !ep->active || ep->address < 2)
  1023. return -ENODEV;
  1024. if (ep->direction != USB_DIR_IN)
  1025. return -EINVAL;
  1026. spin_lock_irqsave(&ep->lock, flags);
  1027. count = send_packet(&usbdev, pkt, 1);
  1028. spin_unlock_irqrestore(&ep->lock, flags);
  1029. return count;
  1030. }
  1031. /*
  1032.  * packet receive
  1033.  */
  1034. int
  1035. usbdev_receive_packet(int ep_addr, usbdev_pkt_t** pkt)
  1036. {
  1037. unsigned long flags;
  1038. usbdev_pkt_t* lpkt = NULL;
  1039. endpoint_t *ep = epaddr_to_ep(&usbdev, ep_addr);
  1040. if (!ep || !ep->active || ep->address < 2)
  1041. return -ENODEV;
  1042. if (ep->direction != USB_DIR_OUT)
  1043. return -EINVAL;
  1044. spin_lock_irqsave(&ep->lock, flags);
  1045. if (ep->outlist.count > 1)
  1046. lpkt = unlink_head(&ep->outlist);
  1047. spin_unlock_irqrestore(&ep->lock, flags);
  1048. if (!lpkt) {
  1049. /* no packet available */
  1050. *pkt = NULL;
  1051. return -ENODATA;
  1052. }
  1053. *pkt = lpkt;
  1054. return lpkt->size;
  1055. }
  1056. /*
  1057.  * return total queued byte count on the endpoint.
  1058.  */
  1059. int
  1060. usbdev_get_byte_count(int ep_addr)
  1061. {
  1062.         unsigned long flags;
  1063.         pkt_list_t *list;
  1064.         usbdev_pkt_t *scan;
  1065.         int count = 0;
  1066. endpoint_t * ep = epaddr_to_ep(&usbdev, ep_addr);
  1067. if (!ep || !ep->active || ep->address < 2)
  1068. return -ENODEV;
  1069. if (ep->direction == USB_DIR_IN) {
  1070. list = &ep->inlist;
  1071. spin_lock_irqsave(&ep->lock, flags);
  1072. for (scan = list->head; scan; scan = scan->next)
  1073. count += scan->size;
  1074. spin_unlock_irqrestore(&ep->lock, flags);
  1075. } else {
  1076. list = &ep->outlist;
  1077. spin_lock_irqsave(&ep->lock, flags);
  1078. if (list->count > 1) {
  1079. for (scan = list->head; scan != list->tail;
  1080.      scan = scan->next)
  1081. count += scan->size;
  1082. }
  1083. spin_unlock_irqrestore(&ep->lock, flags);
  1084. }
  1085. return count;
  1086. }
  1087. void
  1088. usbdev_exit(void)
  1089. {
  1090. endpoint_t *ep;
  1091. int i;
  1092. au_writel(0, USBD_INTEN); // disable usb dev ints
  1093. au_writel(0, USBD_ENABLE); // disable usb dev
  1094. free_irq(AU1000_USB_DEV_REQ_INT, &usbdev);
  1095. free_irq(AU1000_USB_DEV_SUS_INT, &usbdev);
  1096. // free all control endpoint resources
  1097. ep = &usbdev.ep[0];
  1098. free_au1000_dma(ep->indma);
  1099. free_au1000_dma(ep->outdma);
  1100. endpoint_flush(ep);
  1101. // free ep resources
  1102. for (i = 2; i < 6; i++) {
  1103. ep = &usbdev.ep[i];
  1104. if (!ep->active) continue;
  1105. if (ep->direction == USB_DIR_IN) {
  1106. free_au1000_dma(ep->indma);
  1107. } else {
  1108. free_au1000_dma(ep->outdma);
  1109. }
  1110. endpoint_flush(ep);
  1111. }
  1112. if (usbdev.full_conf_desc)
  1113. kfree(usbdev.full_conf_desc);
  1114. }
  1115. int
  1116. usbdev_init(struct usb_device_descriptor* dev_desc,
  1117.     struct usb_config_descriptor* config_desc,
  1118.     struct usb_interface_descriptor* if_desc,
  1119.     struct usb_endpoint_descriptor* ep_desc,
  1120.     struct usb_string_descriptor* str_desc[],
  1121.     void (*cb)(usbdev_cb_type_t, unsigned long, void *),
  1122.     void* cb_data)
  1123. {
  1124. endpoint_t *ep0;
  1125. int i, ret=0;
  1126. u8* fcd;
  1127. if (dev_desc->bNumConfigurations > 1 ||
  1128.     config_desc->bNumInterfaces > 1 ||
  1129.     if_desc->bNumEndpoints > 4) {
  1130. err("Only one config, one i/f, and no more "
  1131.     "than 4 ep's allowed");
  1132. ret = -EINVAL;
  1133. goto out;
  1134. }
  1135. if (!cb) {
  1136. err("Function-layer callback required");
  1137. ret = -EINVAL;
  1138. goto out;
  1139. }
  1140. if (dev_desc->bMaxPacketSize0 != USBDEV_EP0_MAX_PACKET_SIZE) {
  1141. warn("EP0 Max Packet size must be %d",
  1142.      USBDEV_EP0_MAX_PACKET_SIZE);
  1143. dev_desc->bMaxPacketSize0 = USBDEV_EP0_MAX_PACKET_SIZE;
  1144. }
  1145. memset(&usbdev, 0, sizeof(struct usb_dev));
  1146. usbdev.state = DEFAULT;
  1147. usbdev.dev_desc = dev_desc;
  1148. usbdev.if_desc = if_desc;
  1149. usbdev.conf_desc = config_desc;
  1150. for (i=0; i<6; i++)
  1151. usbdev.str_desc[i] = str_desc[i];
  1152. usbdev.func_cb = cb;
  1153. usbdev.cb_data = cb_data;
  1154. /* Initialize default control endpoint */
  1155. ep0 = &usbdev.ep[0];
  1156. ep0->active = 1;
  1157. ep0->type = CONTROL_EP;
  1158. ep0->max_pkt_size = USBDEV_EP0_MAX_PACKET_SIZE;
  1159. spin_lock_init(&ep0->lock);
  1160. ep0->desc = NULL; // ep0 has no descriptor
  1161. ep0->address = 0;
  1162. ep0->direction = 0;
  1163. ep0->reg = &ep_reg[0];
  1164. /* Initialize the other requested endpoints */
  1165. for (i = 0; i < if_desc->bNumEndpoints; i++) {
  1166. struct usb_endpoint_descriptor* epd = &ep_desc[i];
  1167. endpoint_t *ep;
  1168. if ((epd->bEndpointAddress & 0x80) == USB_DIR_IN) {
  1169. ep = &usbdev.ep[2];
  1170. ep->address = 2;
  1171. if (ep->active) {
  1172. ep = &usbdev.ep[3];
  1173. ep->address = 3;
  1174. if (ep->active) {
  1175. err("too many IN ep's requested");
  1176. ret = -ENODEV;
  1177. goto out;
  1178. }
  1179. }
  1180. } else {
  1181. ep = &usbdev.ep[4];
  1182. ep->address = 4;
  1183. if (ep->active) {
  1184. ep = &usbdev.ep[5];
  1185. ep->address = 5;
  1186. if (ep->active) {
  1187. err("too many OUT ep's requested");
  1188. ret = -ENODEV;
  1189. goto out;
  1190. }
  1191. }
  1192. }
  1193. ep->active = 1;
  1194. epd->bEndpointAddress &= ~0x0f;
  1195. epd->bEndpointAddress |= (u8)ep->address;
  1196. ep->direction = epd->bEndpointAddress & 0x80;
  1197. ep->type = epd->bmAttributes & 0x03;
  1198. ep->max_pkt_size = epd->wMaxPacketSize;
  1199. spin_lock_init(&ep->lock);
  1200. ep->desc = epd;
  1201. ep->reg = &ep_reg[ep->address];
  1202. }
  1203. /*
  1204.  * initialize the full config descriptor
  1205.  */
  1206. usbdev.full_conf_desc = fcd = kmalloc(config_desc->wTotalLength,
  1207.       ALLOC_FLAGS);
  1208. if (!fcd) {
  1209. err("failed to alloc full config descriptor");
  1210. ret = -ENOMEM;
  1211. goto out;
  1212. }
  1213. memcpy(fcd, config_desc, USB_DT_CONFIG_SIZE);
  1214. fcd += USB_DT_CONFIG_SIZE;
  1215. memcpy(fcd, if_desc, USB_DT_INTERFACE_SIZE);
  1216. fcd += USB_DT_INTERFACE_SIZE;
  1217. for (i = 0; i < if_desc->bNumEndpoints; i++) {
  1218. memcpy(fcd, &ep_desc[i], USB_DT_ENDPOINT_SIZE);
  1219. fcd += USB_DT_ENDPOINT_SIZE;
  1220. }
  1221. /* Now we're ready to enable the controller */
  1222. au_writel(0x0002, USBD_ENABLE);
  1223. udelay(100);
  1224. au_writel(0x0003, USBD_ENABLE);
  1225. udelay(100);
  1226. /* build and send config table based on ep descriptors */
  1227. for (i = 0; i < 6; i++) {
  1228. endpoint_t *ep;
  1229. if (i == 1)
  1230. continue; // skip dummy ep
  1231. ep = &usbdev.ep[i];
  1232. if (ep->active) {
  1233. au_writel((ep->address << 4) | 0x04, USBD_CONFIG);
  1234. au_writel(((ep->max_pkt_size & 0x380) >> 7) |
  1235.   (ep->direction >> 4) | (ep->type << 4),
  1236.   USBD_CONFIG);
  1237. au_writel((ep->max_pkt_size & 0x7f) << 1, USBD_CONFIG);
  1238. au_writel(0x00, USBD_CONFIG);
  1239. au_writel(ep->address, USBD_CONFIG);
  1240. } else {
  1241. u8 dir = (i==2 || i==3) ? DIR_IN : DIR_OUT;
  1242. au_writel((i << 4) | 0x04, USBD_CONFIG);
  1243. au_writel(((16 & 0x380) >> 7) | dir |
  1244.   (BULK_EP << 4), USBD_CONFIG);
  1245. au_writel((16 & 0x7f) << 1, USBD_CONFIG);
  1246. au_writel(0x00, USBD_CONFIG);
  1247. au_writel(i, USBD_CONFIG);
  1248. }
  1249. }
  1250. /*
  1251.  * Enable Receive FIFO Complete interrupts only. Transmit
  1252.  * complete is being handled by the DMA done interrupts.
  1253.  */
  1254. au_writel(0x31, USBD_INTEN);
  1255. /*
  1256.  * Controller is now enabled, request DMA and IRQ
  1257.  * resources.
  1258.  */
  1259. /* request the USB device transfer complete interrupt */
  1260. if (request_irq(AU1000_USB_DEV_REQ_INT, req_sus_intr, SA_INTERRUPT,
  1261. "USBdev req", &usbdev)) {
  1262. err("Can't get device request intr");
  1263. ret = -ENXIO;
  1264. goto out;
  1265. }
  1266. /* request the USB device suspend interrupt */
  1267. if (request_irq(AU1000_USB_DEV_SUS_INT, req_sus_intr, SA_INTERRUPT,
  1268. "USBdev sus", &usbdev)) {
  1269. err("Can't get device suspend intr");
  1270. ret = -ENXIO;
  1271. goto out;
  1272. }
  1273. /* Request EP0 DMA and IRQ */
  1274. if ((ep0->indma = request_au1000_dma(ep_dma_id[0].id,
  1275.      ep_dma_id[0].str,
  1276.      dma_done_ep0_intr,
  1277.      SA_INTERRUPT,
  1278.      &usbdev)) < 0) {
  1279. err("Can't get %s DMA", ep_dma_id[0].str);
  1280. ret = -ENXIO;
  1281. goto out;
  1282. }
  1283. if ((ep0->outdma = request_au1000_dma(ep_dma_id[1].id,
  1284.       ep_dma_id[1].str,
  1285.       NULL, 0, NULL)) < 0) {
  1286. err("Can't get %s DMA", ep_dma_id[1].str);
  1287. ret = -ENXIO;
  1288. goto out;
  1289. }
  1290. // Flush the ep0 buffers and FIFOs
  1291. endpoint_flush(ep0);
  1292. // start packet reception on ep0
  1293. kickstart_receive_packet(ep0);
  1294. /* Request DMA and IRQ for the other endpoints */
  1295. for (i = 2; i < 6; i++) {
  1296. endpoint_t *ep = &usbdev.ep[i];
  1297. if (!ep->active)
  1298. continue;
  1299. // Flush the endpoint buffers and FIFOs
  1300. endpoint_flush(ep);
  1301. if (ep->direction == USB_DIR_IN) {
  1302. ep->indma =
  1303. request_au1000_dma(ep_dma_id[ep->address].id,
  1304.    ep_dma_id[ep->address].str,
  1305.    dma_done_ep_intr,
  1306.    SA_INTERRUPT,
  1307.    &usbdev);
  1308. if (ep->indma < 0) {
  1309. err("Can't get %s DMA",
  1310.     ep_dma_id[ep->address].str);
  1311. ret = -ENXIO;
  1312. goto out;
  1313. }
  1314. } else {
  1315. ep->outdma =
  1316. request_au1000_dma(ep_dma_id[ep->address].id,
  1317.    ep_dma_id[ep->address].str,
  1318.    NULL, 0, NULL);
  1319. if (ep->outdma < 0) {
  1320. err("Can't get %s DMA",
  1321.     ep_dma_id[ep->address].str);
  1322. ret = -ENXIO;
  1323. goto out;
  1324. }
  1325. // start packet reception on OUT endpoint
  1326. kickstart_receive_packet(ep);
  1327. }
  1328. }
  1329.  out:
  1330. if (ret)
  1331. usbdev_exit();
  1332. return ret;
  1333. }
  1334. EXPORT_SYMBOL(usbdev_init);
  1335. EXPORT_SYMBOL(usbdev_exit);
  1336. EXPORT_SYMBOL(usbdev_alloc_packet);
  1337. EXPORT_SYMBOL(usbdev_receive_packet);
  1338. EXPORT_SYMBOL(usbdev_send_packet);
  1339. EXPORT_SYMBOL(usbdev_get_byte_count);