4 * Copyright (C) 2007-2009 Renesas Solutions Corp.
6 * Author : Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
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.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef __R8A66597_H__
24 #define __R8A66597_H__
26 #ifdef CONFIG_HAVE_CLK
27 #include <linux/clk.h>
30 #include <linux/usb/r8a66597.h>
32 #define R8A66597_MAX_SAMPLING 10
34 #define R8A66597_MAX_NUM_PIPE 8
35 #define R8A66597_MAX_NUM_BULK 3
36 #define R8A66597_MAX_NUM_ISOC 2
37 #define R8A66597_MAX_NUM_INT 2
39 #define R8A66597_BASE_PIPENUM_BULK 3
40 #define R8A66597_BASE_PIPENUM_ISOC 1
41 #define R8A66597_BASE_PIPENUM_INT 6
43 #define R8A66597_BASE_BUFNUM 6
44 #define R8A66597_MAX_BUFNUM 0x4F
46 #define is_bulk_pipe(pipenum) \
47 ((pipenum >= R8A66597_BASE_PIPENUM_BULK) && \
48 (pipenum < (R8A66597_BASE_PIPENUM_BULK + R8A66597_MAX_NUM_BULK)))
49 #define is_interrupt_pipe(pipenum) \
50 ((pipenum >= R8A66597_BASE_PIPENUM_INT) && \
51 (pipenum < (R8A66597_BASE_PIPENUM_INT + R8A66597_MAX_NUM_INT)))
52 #define is_isoc_pipe(pipenum) \
53 ((pipenum >= R8A66597_BASE_PIPENUM_ISOC) && \
54 (pipenum < (R8A66597_BASE_PIPENUM_ISOC + R8A66597_MAX_NUM_ISOC)))
56 struct r8a66597_pipe_info
{
65 struct r8a66597_request
{
66 struct usb_request req
;
67 struct list_head queue
;
72 struct r8a66597
*r8a66597
;
74 struct list_head queue
;
77 unsigned internal_ccpl
:1; /* use only control */
79 /* this member can able to after r8a66597_enable */
83 const struct usb_endpoint_descriptor
*desc
;
84 /* register address */
85 unsigned char fifoaddr
;
86 unsigned char fifosel
;
87 unsigned char fifoctr
;
88 unsigned char fifotrn
;
89 unsigned char pipectr
;
96 #ifdef CONFIG_HAVE_CLK
99 struct r8a66597_platdata
*pdata
;
101 struct usb_gadget gadget
;
102 struct usb_gadget_driver
*driver
;
104 struct r8a66597_ep ep
[R8A66597_MAX_NUM_PIPE
];
105 struct r8a66597_ep
*pipenum2ep
[R8A66597_MAX_NUM_PIPE
];
106 struct r8a66597_ep
*epaddr2ep
[16];
108 struct timer_list timer
;
109 struct usb_request
*ep0_req
; /* for internal request */
110 u16 ep0_data
; /* for internal request */
117 unsigned char interrupt
;
118 unsigned char isochronous
;
119 unsigned char num_dma
;
121 unsigned irq_sense_low
:1;
124 #define gadget_to_r8a66597(_gadget) \
125 container_of(_gadget, struct r8a66597, gadget)
126 #define r8a66597_to_gadget(r8a66597) (&r8a66597->gadget)
128 static inline u16
r8a66597_read(struct r8a66597
*r8a66597
, unsigned long offset
)
130 return ioread16(r8a66597
->reg
+ offset
);
133 static inline void r8a66597_read_fifo(struct r8a66597
*r8a66597
,
134 unsigned long offset
,
138 void __iomem
*fifoaddr
= r8a66597
->reg
+ offset
;
139 unsigned int data
= 0;
142 if (r8a66597
->pdata
->on_chip
) {
143 /* 32-bit accesses for on_chip controllers */
145 /* aligned buf case */
146 if (len
>= 4 && !((unsigned long)buf
& 0x03)) {
147 ioread32_rep(fifoaddr
, buf
, len
/ 4);
152 /* unaligned buf case */
153 for (i
= 0; i
< len
; i
++) {
155 data
= ioread32(fifoaddr
);
157 buf
[i
] = (data
>> ((i
& 0x03) * 8)) & 0xff;
160 /* 16-bit accesses for external controllers */
162 /* aligned buf case */
163 if (len
>= 2 && !((unsigned long)buf
& 0x01)) {
164 ioread16_rep(fifoaddr
, buf
, len
/ 2);
169 /* unaligned buf case */
170 for (i
= 0; i
< len
; i
++) {
172 data
= ioread16(fifoaddr
);
174 buf
[i
] = (data
>> ((i
& 0x01) * 8)) & 0xff;
179 static inline void r8a66597_write(struct r8a66597
*r8a66597
, u16 val
,
180 unsigned long offset
)
182 iowrite16(val
, r8a66597
->reg
+ offset
);
185 static inline void r8a66597_write_fifo(struct r8a66597
*r8a66597
,
186 unsigned long offset
,
190 void __iomem
*fifoaddr
= r8a66597
->reg
+ offset
;
194 if (r8a66597
->pdata
->on_chip
) {
195 /* 32-bit access only if buf is 32-bit aligned */
196 if (len
>= 4 && !((unsigned long)buf
& 0x03)) {
197 iowrite32_rep(fifoaddr
, buf
, len
/ 4);
202 /* 16-bit access only if buf is 16-bit aligned */
203 if (len
>= 2 && !((unsigned long)buf
& 0x01)) {
204 iowrite16_rep(fifoaddr
, buf
, len
/ 2);
210 /* adjust fifo address in the little endian case */
211 if (!(r8a66597_read(r8a66597
, CFIFOSEL
) & BIGEND
)) {
212 if (r8a66597
->pdata
->on_chip
)
213 adj
= 0x03; /* 32-bit wide */
215 adj
= 0x01; /* 16-bit wide */
218 for (i
= 0; i
< len
; i
++)
219 iowrite8(buf
[i
], fifoaddr
+ adj
- (i
& adj
));
222 static inline void r8a66597_mdfy(struct r8a66597
*r8a66597
,
223 u16 val
, u16 pat
, unsigned long offset
)
226 tmp
= r8a66597_read(r8a66597
, offset
);
229 r8a66597_write(r8a66597
, tmp
, offset
);
232 static inline u16
get_xtal_from_pdata(struct r8a66597_platdata
*pdata
)
236 switch (pdata
->xtal
) {
237 case R8A66597_PLATDATA_XTAL_12MHZ
:
240 case R8A66597_PLATDATA_XTAL_24MHZ
:
243 case R8A66597_PLATDATA_XTAL_48MHZ
:
247 printk(KERN_ERR
"r8a66597: platdata clock is wrong.\n");
254 #define r8a66597_bclr(r8a66597, val, offset) \
255 r8a66597_mdfy(r8a66597, 0, val, offset)
256 #define r8a66597_bset(r8a66597, val, offset) \
257 r8a66597_mdfy(r8a66597, val, 0, offset)
259 #define get_pipectr_addr(pipenum) (PIPE1CTR + (pipenum - 1) * 2)
261 #define enable_irq_ready(r8a66597, pipenum) \
262 enable_pipe_irq(r8a66597, pipenum, BRDYENB)
263 #define disable_irq_ready(r8a66597, pipenum) \
264 disable_pipe_irq(r8a66597, pipenum, BRDYENB)
265 #define enable_irq_empty(r8a66597, pipenum) \
266 enable_pipe_irq(r8a66597, pipenum, BEMPENB)
267 #define disable_irq_empty(r8a66597, pipenum) \
268 disable_pipe_irq(r8a66597, pipenum, BEMPENB)
269 #define enable_irq_nrdy(r8a66597, pipenum) \
270 enable_pipe_irq(r8a66597, pipenum, NRDYENB)
271 #define disable_irq_nrdy(r8a66597, pipenum) \
272 disable_pipe_irq(r8a66597, pipenum, NRDYENB)
274 #endif /* __R8A66597_H__ */