lh7a40x_udc.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. /*
  2. * linux/drivers/usb/gadget/lh7a40x_udc.h
  3. * Sharp LH7A40x on-chip full speed USB device controllers
  4. *
  5. * Copyright (C) 2004 Mikko Lahteenmaki, Nordic ID
  6. * Copyright (C) 2004 Bo Henriksen, Nordic ID
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #ifndef __LH7A40X_H_
  24. #define __LH7A40X_H_
  25. #include <linux/module.h>
  26. #include <linux/kernel.h>
  27. #include <linux/ioport.h>
  28. #include <linux/types.h>
  29. #include <linux/errno.h>
  30. #include <linux/delay.h>
  31. #include <linux/sched.h>
  32. #include <linux/slab.h>
  33. #include <linux/init.h>
  34. #include <linux/timer.h>
  35. #include <linux/list.h>
  36. #include <linux/interrupt.h>
  37. #include <linux/proc_fs.h>
  38. #include <linux/mm.h>
  39. #include <linux/device.h>
  40. #include <linux/dma-mapping.h>
  41. #include <asm/byteorder.h>
  42. #include <asm/dma.h>
  43. #include <asm/io.h>
  44. #include <asm/irq.h>
  45. #include <asm/system.h>
  46. #include <asm/unaligned.h>
  47. #include <asm/hardware.h>
  48. #include <linux/usb_ch9.h>
  49. #include <linux/usb_gadget.h>
  50. /*
  51. * Memory map
  52. */
  53. #define USB_FA 0x80000200 // function address register
  54. #define USB_PM 0x80000204 // power management register
  55. #define USB_IN_INT 0x80000208 // IN interrupt register bank (EP0-EP3)
  56. #define USB_OUT_INT 0x80000210 // OUT interrupt register bank (EP2)
  57. #define USB_INT 0x80000218 // interrupt register bank
  58. #define USB_IN_INT_EN 0x8000021C // IN interrupt enable register bank
  59. #define USB_OUT_INT_EN 0x80000224 // OUT interrupt enable register bank
  60. #define USB_INT_EN 0x8000022C // USB interrupt enable register bank
  61. #define USB_FRM_NUM1 0x80000230 // Frame number1 register
  62. #define USB_FRM_NUM2 0x80000234 // Frame number2 register
  63. #define USB_INDEX 0x80000238 // index register
  64. #define USB_IN_MAXP 0x80000240 // IN MAXP register
  65. #define USB_IN_CSR1 0x80000244 // IN CSR1 register/EP0 CSR register
  66. #define USB_EP0_CSR 0x80000244 // IN CSR1 register/EP0 CSR register
  67. #define USB_IN_CSR2 0x80000248 // IN CSR2 register
  68. #define USB_OUT_MAXP 0x8000024C // OUT MAXP register
  69. #define USB_OUT_CSR1 0x80000250 // OUT CSR1 register
  70. #define USB_OUT_CSR2 0x80000254 // OUT CSR2 register
  71. #define USB_OUT_FIFO_WC1 0x80000258 // OUT FIFO write count1 register
  72. #define USB_OUT_FIFO_WC2 0x8000025C // OUT FIFO write count2 register
  73. #define USB_RESET 0x8000044C // USB reset register
  74. #define USB_EP0_FIFO 0x80000280
  75. #define USB_EP1_FIFO 0x80000284
  76. #define USB_EP2_FIFO 0x80000288
  77. #define USB_EP3_FIFO 0x8000028c
  78. /*
  79. * USB reset register
  80. */
  81. #define USB_RESET_APB (1<<1) //resets USB APB control side WRITE
  82. #define USB_RESET_IO (1<<0) //resets USB IO side WRITE
  83. /*
  84. * USB function address register
  85. */
  86. #define USB_FA_ADDR_UPDATE (1<<7)
  87. #define USB_FA_FUNCTION_ADDR (0x7F)
  88. /*
  89. * Power Management register
  90. */
  91. #define PM_USB_DCP (1<<5)
  92. #define PM_USB_ENABLE (1<<4)
  93. #define PM_USB_RESET (1<<3)
  94. #define PM_UC_RESUME (1<<2)
  95. #define PM_SUSPEND_MODE (1<<1)
  96. #define PM_ENABLE_SUSPEND (1<<0)
  97. /*
  98. * IN interrupt register
  99. */
  100. #define USB_IN_INT_EP3 (1<<3)
  101. #define USB_IN_INT_EP1 (1<<1)
  102. #define USB_IN_INT_EP0 (1<<0)
  103. /*
  104. * OUT interrupt register
  105. */
  106. #define USB_OUT_INT_EP2 (1<<2)
  107. /*
  108. * USB interrupt register
  109. */
  110. #define USB_INT_RESET_INT (1<<2)
  111. #define USB_INT_RESUME_INT (1<<1)
  112. #define USB_INT_SUSPEND_INT (1<<0)
  113. /*
  114. * USB interrupt enable register
  115. */
  116. #define USB_INT_EN_USB_RESET_INTER (1<<2)
  117. #define USB_INT_EN_RESUME_INTER (1<<1)
  118. #define USB_INT_EN_SUSPEND_INTER (1<<0)
  119. /*
  120. * INCSR1 register
  121. */
  122. #define USB_IN_CSR1_CLR_DATA_TOGGLE (1<<6)
  123. #define USB_IN_CSR1_SENT_STALL (1<<5)
  124. #define USB_IN_CSR1_SEND_STALL (1<<4)
  125. #define USB_IN_CSR1_FIFO_FLUSH (1<<3)
  126. #define USB_IN_CSR1_FIFO_NOT_EMPTY (1<<1)
  127. #define USB_IN_CSR1_IN_PKT_RDY (1<<0)
  128. /*
  129. * INCSR2 register
  130. */
  131. #define USB_IN_CSR2_AUTO_SET (1<<7)
  132. #define USB_IN_CSR2_USB_DMA_EN (1<<4)
  133. /*
  134. * OUT CSR1 register
  135. */
  136. #define USB_OUT_CSR1_CLR_DATA_REG (1<<7)
  137. #define USB_OUT_CSR1_SENT_STALL (1<<6)
  138. #define USB_OUT_CSR1_SEND_STALL (1<<5)
  139. #define USB_OUT_CSR1_FIFO_FLUSH (1<<4)
  140. #define USB_OUT_CSR1_FIFO_FULL (1<<1)
  141. #define USB_OUT_CSR1_OUT_PKT_RDY (1<<0)
  142. /*
  143. * OUT CSR2 register
  144. */
  145. #define USB_OUT_CSR2_AUTO_CLR (1<<7)
  146. #define USB_OUT_CSR2_USB_DMA_EN (1<<4)
  147. /*
  148. * EP0 CSR
  149. */
  150. #define EP0_CLR_SETUP_END (1<<7) /* Clear "Setup Ends" Bit (w) */
  151. #define EP0_CLR_OUT (1<<6) /* Clear "Out packet ready" Bit (w) */
  152. #define EP0_SEND_STALL (1<<5) /* Send STALL Handshake (rw) */
  153. #define EP0_SETUP_END (1<<4) /* Setup Ends (r) */
  154. #define EP0_DATA_END (1<<3) /* Data end (rw) */
  155. #define EP0_SENT_STALL (1<<2) /* Sent Stall Handshake (r) */
  156. #define EP0_IN_PKT_RDY (1<<1) /* In packet ready (rw) */
  157. #define EP0_OUT_PKT_RDY (1<<0) /* Out packet ready (r) */
  158. /* general CSR */
  159. #define OUT_PKT_RDY (1<<0)
  160. #define IN_PKT_RDY (1<<0)
  161. /*
  162. * IN/OUT MAXP register
  163. */
  164. #define USB_OUT_MAXP_MAXP (0xF)
  165. #define USB_IN_MAXP_MAXP (0xF)
  166. // Max packet size
  167. //#define EP0_PACKETSIZE 0x10
  168. #define EP0_PACKETSIZE 0x8
  169. #define EP0_MAXPACKETSIZE 0x10
  170. #define UDC_MAX_ENDPOINTS 4
  171. #define WAIT_FOR_SETUP 0
  172. #define DATA_STATE_XMIT 1
  173. #define DATA_STATE_NEED_ZLP 2
  174. #define WAIT_FOR_OUT_STATUS 3
  175. #define DATA_STATE_RECV 4
  176. /* ********************************************************************************************* */
  177. /* IO
  178. */
  179. typedef enum ep_type {
  180. ep_control, ep_bulk_in, ep_bulk_out, ep_interrupt
  181. } ep_type_t;
  182. struct lh7a40x_ep {
  183. struct usb_ep ep;
  184. struct lh7a40x_udc *dev;
  185. const struct usb_endpoint_descriptor *desc;
  186. struct list_head queue;
  187. unsigned long pio_irqs;
  188. u8 stopped;
  189. u8 bEndpointAddress;
  190. u8 bmAttributes;
  191. ep_type_t ep_type;
  192. u32 fifo;
  193. u32 csr1;
  194. u32 csr2;
  195. };
  196. struct lh7a40x_request {
  197. struct usb_request req;
  198. struct list_head queue;
  199. };
  200. struct lh7a40x_udc {
  201. struct usb_gadget gadget;
  202. struct usb_gadget_driver *driver;
  203. struct device *dev;
  204. spinlock_t lock;
  205. int ep0state;
  206. struct lh7a40x_ep ep[UDC_MAX_ENDPOINTS];
  207. unsigned char usb_address;
  208. unsigned req_pending:1, req_std:1, req_config:1;
  209. };
  210. extern struct lh7a40x_udc *the_controller;
  211. #define ep_is_in(EP) (((EP)->bEndpointAddress&USB_DIR_IN)==USB_DIR_IN)
  212. #define ep_index(EP) ((EP)->bEndpointAddress&0xF)
  213. #define ep_maxpacket(EP) ((EP)->ep.maxpacket)
  214. #endif