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