r8a66597-udc.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /*
  2. * R8A66597 UDC
  3. *
  4. * Copyright (C) 2007-2009 Renesas Solutions Corp.
  5. *
  6. * Author : Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
  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; version 2 of the License.
  11. */
  12. #ifndef __R8A66597_H__
  13. #define __R8A66597_H__
  14. #ifdef CONFIG_HAVE_CLK
  15. #include <linux/clk.h>
  16. #endif
  17. #include <linux/usb/r8a66597.h>
  18. #define R8A66597_MAX_SAMPLING 10
  19. #define R8A66597_MAX_NUM_PIPE 8
  20. #define R8A66597_MAX_NUM_BULK 3
  21. #define R8A66597_MAX_NUM_ISOC 2
  22. #define R8A66597_MAX_NUM_INT 2
  23. #define R8A66597_BASE_PIPENUM_BULK 3
  24. #define R8A66597_BASE_PIPENUM_ISOC 1
  25. #define R8A66597_BASE_PIPENUM_INT 6
  26. #define R8A66597_BASE_BUFNUM 6
  27. #define R8A66597_MAX_BUFNUM 0x4F
  28. #define is_bulk_pipe(pipenum) \
  29. ((pipenum >= R8A66597_BASE_PIPENUM_BULK) && \
  30. (pipenum < (R8A66597_BASE_PIPENUM_BULK + R8A66597_MAX_NUM_BULK)))
  31. #define is_interrupt_pipe(pipenum) \
  32. ((pipenum >= R8A66597_BASE_PIPENUM_INT) && \
  33. (pipenum < (R8A66597_BASE_PIPENUM_INT + R8A66597_MAX_NUM_INT)))
  34. #define is_isoc_pipe(pipenum) \
  35. ((pipenum >= R8A66597_BASE_PIPENUM_ISOC) && \
  36. (pipenum < (R8A66597_BASE_PIPENUM_ISOC + R8A66597_MAX_NUM_ISOC)))
  37. #define r8a66597_is_sudmac(r8a66597) (r8a66597->pdata->sudmac)
  38. struct r8a66597_pipe_info {
  39. u16 pipe;
  40. u16 epnum;
  41. u16 maxpacket;
  42. u16 type;
  43. u16 interval;
  44. u16 dir_in;
  45. };
  46. struct r8a66597_request {
  47. struct usb_request req;
  48. struct list_head queue;
  49. };
  50. struct r8a66597_ep {
  51. struct usb_ep ep;
  52. struct r8a66597 *r8a66597;
  53. struct r8a66597_dma *dma;
  54. struct list_head queue;
  55. unsigned busy:1;
  56. unsigned wedge:1;
  57. unsigned internal_ccpl:1; /* use only control */
  58. /* this member can able to after r8a66597_enable */
  59. unsigned use_dma:1;
  60. u16 pipenum;
  61. u16 type;
  62. const struct usb_endpoint_descriptor *desc;
  63. /* register address */
  64. unsigned char fifoaddr;
  65. unsigned char fifosel;
  66. unsigned char fifoctr;
  67. unsigned char pipectr;
  68. unsigned char pipetre;
  69. unsigned char pipetrn;
  70. };
  71. struct r8a66597_dma {
  72. unsigned used:1;
  73. unsigned dir:1; /* 1 = IN(write), 0 = OUT(read) */
  74. };
  75. struct r8a66597 {
  76. spinlock_t lock;
  77. void __iomem *reg;
  78. void __iomem *sudmac_reg;
  79. #ifdef CONFIG_HAVE_CLK
  80. struct clk *clk;
  81. #endif
  82. struct r8a66597_platdata *pdata;
  83. struct usb_gadget gadget;
  84. struct usb_gadget_driver *driver;
  85. struct r8a66597_ep ep[R8A66597_MAX_NUM_PIPE];
  86. struct r8a66597_ep *pipenum2ep[R8A66597_MAX_NUM_PIPE];
  87. struct r8a66597_ep *epaddr2ep[16];
  88. struct r8a66597_dma dma;
  89. struct timer_list timer;
  90. struct usb_request *ep0_req; /* for internal request */
  91. u16 ep0_data; /* for internal request */
  92. u16 old_vbus;
  93. u16 scount;
  94. u16 old_dvsq;
  95. /* pipe config */
  96. unsigned char bulk;
  97. unsigned char interrupt;
  98. unsigned char isochronous;
  99. unsigned char num_dma;
  100. unsigned irq_sense_low:1;
  101. };
  102. #define gadget_to_r8a66597(_gadget) \
  103. container_of(_gadget, struct r8a66597, gadget)
  104. #define r8a66597_to_gadget(r8a66597) (&r8a66597->gadget)
  105. #define r8a66597_to_dev(r8a66597) (r8a66597->gadget.dev.parent)
  106. static inline u16 r8a66597_read(struct r8a66597 *r8a66597, unsigned long offset)
  107. {
  108. return ioread16(r8a66597->reg + offset);
  109. }
  110. static inline void r8a66597_read_fifo(struct r8a66597 *r8a66597,
  111. unsigned long offset,
  112. unsigned char *buf,
  113. int len)
  114. {
  115. void __iomem *fifoaddr = r8a66597->reg + offset;
  116. unsigned int data = 0;
  117. int i;
  118. if (r8a66597->pdata->on_chip) {
  119. /* 32-bit accesses for on_chip controllers */
  120. /* aligned buf case */
  121. if (len >= 4 && !((unsigned long)buf & 0x03)) {
  122. ioread32_rep(fifoaddr, buf, len / 4);
  123. buf += len & ~0x03;
  124. len &= 0x03;
  125. }
  126. /* unaligned buf case */
  127. for (i = 0; i < len; i++) {
  128. if (!(i & 0x03))
  129. data = ioread32(fifoaddr);
  130. buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
  131. }
  132. } else {
  133. /* 16-bit accesses for external controllers */
  134. /* aligned buf case */
  135. if (len >= 2 && !((unsigned long)buf & 0x01)) {
  136. ioread16_rep(fifoaddr, buf, len / 2);
  137. buf += len & ~0x01;
  138. len &= 0x01;
  139. }
  140. /* unaligned buf case */
  141. for (i = 0; i < len; i++) {
  142. if (!(i & 0x01))
  143. data = ioread16(fifoaddr);
  144. buf[i] = (data >> ((i & 0x01) * 8)) & 0xff;
  145. }
  146. }
  147. }
  148. static inline void r8a66597_write(struct r8a66597 *r8a66597, u16 val,
  149. unsigned long offset)
  150. {
  151. iowrite16(val, r8a66597->reg + offset);
  152. }
  153. static inline void r8a66597_mdfy(struct r8a66597 *r8a66597,
  154. u16 val, u16 pat, unsigned long offset)
  155. {
  156. u16 tmp;
  157. tmp = r8a66597_read(r8a66597, offset);
  158. tmp = tmp & (~pat);
  159. tmp = tmp | val;
  160. r8a66597_write(r8a66597, tmp, offset);
  161. }
  162. #define r8a66597_bclr(r8a66597, val, offset) \
  163. r8a66597_mdfy(r8a66597, 0, val, offset)
  164. #define r8a66597_bset(r8a66597, val, offset) \
  165. r8a66597_mdfy(r8a66597, val, 0, offset)
  166. static inline void r8a66597_write_fifo(struct r8a66597 *r8a66597,
  167. struct r8a66597_ep *ep,
  168. unsigned char *buf,
  169. int len)
  170. {
  171. void __iomem *fifoaddr = r8a66597->reg + ep->fifoaddr;
  172. int adj = 0;
  173. int i;
  174. if (r8a66597->pdata->on_chip) {
  175. /* 32-bit access only if buf is 32-bit aligned */
  176. if (len >= 4 && !((unsigned long)buf & 0x03)) {
  177. iowrite32_rep(fifoaddr, buf, len / 4);
  178. buf += len & ~0x03;
  179. len &= 0x03;
  180. }
  181. } else {
  182. /* 16-bit access only if buf is 16-bit aligned */
  183. if (len >= 2 && !((unsigned long)buf & 0x01)) {
  184. iowrite16_rep(fifoaddr, buf, len / 2);
  185. buf += len & ~0x01;
  186. len &= 0x01;
  187. }
  188. }
  189. /* adjust fifo address in the little endian case */
  190. if (!(r8a66597_read(r8a66597, CFIFOSEL) & BIGEND)) {
  191. if (r8a66597->pdata->on_chip)
  192. adj = 0x03; /* 32-bit wide */
  193. else
  194. adj = 0x01; /* 16-bit wide */
  195. }
  196. if (r8a66597->pdata->wr0_shorted_to_wr1)
  197. r8a66597_bclr(r8a66597, MBW_16, ep->fifosel);
  198. for (i = 0; i < len; i++)
  199. iowrite8(buf[i], fifoaddr + adj - (i & adj));
  200. if (r8a66597->pdata->wr0_shorted_to_wr1)
  201. r8a66597_bclr(r8a66597, MBW_16, ep->fifosel);
  202. }
  203. static inline u16 get_xtal_from_pdata(struct r8a66597_platdata *pdata)
  204. {
  205. u16 clock = 0;
  206. switch (pdata->xtal) {
  207. case R8A66597_PLATDATA_XTAL_12MHZ:
  208. clock = XTAL12;
  209. break;
  210. case R8A66597_PLATDATA_XTAL_24MHZ:
  211. clock = XTAL24;
  212. break;
  213. case R8A66597_PLATDATA_XTAL_48MHZ:
  214. clock = XTAL48;
  215. break;
  216. default:
  217. printk(KERN_ERR "r8a66597: platdata clock is wrong.\n");
  218. break;
  219. }
  220. return clock;
  221. }
  222. static inline u32 r8a66597_sudmac_read(struct r8a66597 *r8a66597,
  223. unsigned long offset)
  224. {
  225. return ioread32(r8a66597->sudmac_reg + offset);
  226. }
  227. static inline void r8a66597_sudmac_write(struct r8a66597 *r8a66597, u32 val,
  228. unsigned long offset)
  229. {
  230. iowrite32(val, r8a66597->sudmac_reg + offset);
  231. }
  232. #define get_pipectr_addr(pipenum) (PIPE1CTR + (pipenum - 1) * 2)
  233. #define get_pipetre_addr(pipenum) (PIPE1TRE + (pipenum - 1) * 4)
  234. #define get_pipetrn_addr(pipenum) (PIPE1TRN + (pipenum - 1) * 4)
  235. #define enable_irq_ready(r8a66597, pipenum) \
  236. enable_pipe_irq(r8a66597, pipenum, BRDYENB)
  237. #define disable_irq_ready(r8a66597, pipenum) \
  238. disable_pipe_irq(r8a66597, pipenum, BRDYENB)
  239. #define enable_irq_empty(r8a66597, pipenum) \
  240. enable_pipe_irq(r8a66597, pipenum, BEMPENB)
  241. #define disable_irq_empty(r8a66597, pipenum) \
  242. disable_pipe_irq(r8a66597, pipenum, BEMPENB)
  243. #define enable_irq_nrdy(r8a66597, pipenum) \
  244. enable_pipe_irq(r8a66597, pipenum, NRDYENB)
  245. #define disable_irq_nrdy(r8a66597, pipenum) \
  246. disable_pipe_irq(r8a66597, pipenum, NRDYENB)
  247. #endif /* __R8A66597_H__ */