usb: renesas_usbhs: add support for requesting DT DMA
[deliverable/linux.git] / drivers / usb / renesas_usbhs / fifo.c
CommitLineData
e8d548d5
KM
1/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/delay.h>
18#include <linux/io.h>
9c646cfc 19#include <linux/scatterlist.h>
cc502bb7
PB
20#include "common.h"
21#include "pipe.h"
e8d548d5 22
d3af90a5 23#define usbhsf_get_cfifo(p) (&((p)->fifo_info.cfifo))
5ea43994 24#define usbhsf_is_cfifo(p, f) (usbhsf_get_cfifo(p) == f)
d3af90a5 25
d77e3f4e
KM
26#define usbhsf_fifo_is_busy(f) ((f)->pipe) /* see usbhs_pipe_select_fifo */
27
4bd04811 28/*
233f519d
KM
29 * packet initialize
30 */
31void usbhs_pkt_init(struct usbhs_pkt *pkt)
32{
233f519d
KM
33 INIT_LIST_HEAD(&pkt->node);
34}
35
36/*
37 * packet control function
4bd04811 38 */
97664a20 39static int usbhsf_null_handle(struct usbhs_pkt *pkt, int *is_done)
dad67397
KM
40{
41 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
42 struct device *dev = usbhs_priv_to_dev(priv);
43
44 dev_err(dev, "null handler\n");
45
46 return -EINVAL;
47}
48
49static struct usbhs_pkt_handle usbhsf_null_handler = {
50 .prepare = usbhsf_null_handle,
51 .try_run = usbhsf_null_handle,
52};
53
659d4954 54void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
b331872b
KM
55 void (*done)(struct usbhs_priv *priv,
56 struct usbhs_pkt *pkt),
3edeee38 57 void *buf, int len, int zero, int sequence)
6acb95d4 58{
dad67397
KM
59 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
60 struct device *dev = usbhs_priv_to_dev(priv);
97664a20
KM
61 unsigned long flags;
62
b331872b
KM
63 if (!done) {
64 dev_err(dev, "no done function\n");
65 return;
66 }
67
a2c76b83
KM
68 /******************** spin lock ********************/
69 usbhs_lock(priv, flags);
70
0c6ef985 71 if (!pipe->handler) {
dad67397 72 dev_err(dev, "no handler function\n");
0c6ef985 73 pipe->handler = &usbhsf_null_handler;
dad67397
KM
74 }
75
d5261286 76 list_move_tail(&pkt->node, &pipe->list);
6acb95d4 77
0c6ef985
KM
78 /*
79 * each pkt must hold own handler.
80 * because handler might be changed by its situation.
81 * dma handler -> pio handler.
82 */
659d4954
KM
83 pkt->pipe = pipe;
84 pkt->buf = buf;
0c6ef985 85 pkt->handler = pipe->handler;
659d4954
KM
86 pkt->length = len;
87 pkt->zero = zero;
88 pkt->actual = 0;
b331872b 89 pkt->done = done;
3edeee38 90 pkt->sequence = sequence;
97664a20
KM
91
92 usbhs_unlock(priv, flags);
93 /******************** spin unlock ******************/
6acb95d4
KM
94}
95
97664a20 96static void __usbhsf_pkt_del(struct usbhs_pkt *pkt)
6acb95d4
KM
97{
98 list_del_init(&pkt->node);
99}
100
97664a20 101static struct usbhs_pkt *__usbhsf_pkt_get(struct usbhs_pipe *pipe)
6acb95d4
KM
102{
103 if (list_empty(&pipe->list))
104 return NULL;
105
d5261286 106 return list_first_entry(&pipe->list, struct usbhs_pkt, node);
6acb95d4
KM
107}
108
2743e7f9
YS
109static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
110 struct usbhs_fifo *fifo);
111static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
112 struct usbhs_fifo *fifo);
113static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
114 struct usbhs_pkt *pkt);
115#define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
116#define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
117static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map);
97664a20
KM
118struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt)
119{
120 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
2743e7f9 121 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
97664a20
KM
122 unsigned long flags;
123
124 /******************** spin lock ********************/
125 usbhs_lock(priv, flags);
126
2743e7f9
YS
127 usbhs_pipe_disable(pipe);
128
97664a20
KM
129 if (!pkt)
130 pkt = __usbhsf_pkt_get(pipe);
131
2743e7f9
YS
132 if (pkt) {
133 struct dma_chan *chan = NULL;
134
135 if (fifo)
136 chan = usbhsf_dma_chan_get(fifo, pkt);
137 if (chan) {
138 dmaengine_terminate_all(chan);
139 usbhsf_fifo_clear(pipe, fifo);
140 usbhsf_dma_unmap(pkt);
141 }
142
97664a20 143 __usbhsf_pkt_del(pkt);
2743e7f9
YS
144 }
145
146 if (fifo)
147 usbhsf_fifo_unselect(pipe, fifo);
97664a20
KM
148
149 usbhs_unlock(priv, flags);
150 /******************** spin unlock ******************/
151
152 return pkt;
153}
154
51b8a021
KM
155enum {
156 USBHSF_PKT_PREPARE,
157 USBHSF_PKT_TRY_RUN,
158 USBHSF_PKT_DMA_DONE,
159};
160
161static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
97664a20
KM
162{
163 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
97664a20
KM
164 struct usbhs_pkt *pkt;
165 struct device *dev = usbhs_priv_to_dev(priv);
166 int (*func)(struct usbhs_pkt *pkt, int *is_done);
167 unsigned long flags;
168 int ret = 0;
169 int is_done = 0;
170
171 /******************** spin lock ********************/
172 usbhs_lock(priv, flags);
173
174 pkt = __usbhsf_pkt_get(pipe);
175 if (!pkt)
176 goto __usbhs_pkt_handler_end;
177
178 switch (type) {
179 case USBHSF_PKT_PREPARE:
180 func = pkt->handler->prepare;
181 break;
182 case USBHSF_PKT_TRY_RUN:
183 func = pkt->handler->try_run;
184 break;
e73a9891
KM
185 case USBHSF_PKT_DMA_DONE:
186 func = pkt->handler->dma_done;
187 break;
97664a20 188 default:
984e833c 189 dev_err(dev, "unknown pkt handler\n");
97664a20
KM
190 goto __usbhs_pkt_handler_end;
191 }
192
193 ret = func(pkt, &is_done);
194
195 if (is_done)
196 __usbhsf_pkt_del(pkt);
197
198__usbhs_pkt_handler_end:
199 usbhs_unlock(priv, flags);
200 /******************** spin unlock ******************/
201
0432eed0 202 if (is_done) {
b331872b 203 pkt->done(priv, pkt);
0432eed0
KM
204 usbhs_pkt_start(pipe);
205 }
97664a20
KM
206
207 return ret;
208}
209
51b8a021
KM
210void usbhs_pkt_start(struct usbhs_pipe *pipe)
211{
212 usbhsf_pkt_handler(pipe, USBHSF_PKT_PREPARE);
213}
214
659d4954
KM
215/*
216 * irq enable/disable function
217 */
3192fcb2
KM
218#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_bempsts, e)
219#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_brdysts, e)
659d4954
KM
220#define usbhsf_irq_callback_ctrl(pipe, status, enable) \
221 ({ \
222 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
223 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
224 u16 status = (1 << usbhs_pipe_number(pipe)); \
225 if (!mod) \
226 return; \
227 if (enable) \
3192fcb2 228 mod->status |= status; \
659d4954 229 else \
3192fcb2 230 mod->status &= ~status; \
659d4954
KM
231 usbhs_irq_callback_update(priv, mod); \
232 })
233
234static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
235{
236 /*
237 * And DCP pipe can NOT use "ready interrupt" for "send"
238 * it should use "empty" interrupt.
239 * see
240 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
241 *
242 * on the other hand, normal pipe can use "ready interrupt" for "send"
243 * even though it is single/double buffer
244 */
245 if (usbhs_pipe_is_dcp(pipe))
246 usbhsf_irq_empty_ctrl(pipe, enable);
247 else
248 usbhsf_irq_ready_ctrl(pipe, enable);
249}
250
251static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
252{
253 usbhsf_irq_ready_ctrl(pipe, enable);
254}
255
e8d548d5
KM
256/*
257 * FIFO ctrl
258 */
d3af90a5
KM
259static void usbhsf_send_terminator(struct usbhs_pipe *pipe,
260 struct usbhs_fifo *fifo)
e8d548d5
KM
261{
262 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
263
d3af90a5 264 usbhs_bset(priv, fifo->ctr, BVAL, BVAL);
e8d548d5
KM
265}
266
d3af90a5
KM
267static int usbhsf_fifo_barrier(struct usbhs_priv *priv,
268 struct usbhs_fifo *fifo)
e8d548d5
KM
269{
270 int timeout = 1024;
271
272 do {
273 /* The FIFO port is accessible */
d3af90a5 274 if (usbhs_read(priv, fifo->ctr) & FRDY)
e8d548d5
KM
275 return 0;
276
277 udelay(10);
278 } while (timeout--);
279
280 return -EBUSY;
281}
282
d3af90a5
KM
283static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
284 struct usbhs_fifo *fifo)
e8d548d5
KM
285{
286 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
287
288 if (!usbhs_pipe_is_dcp(pipe))
d3af90a5 289 usbhsf_fifo_barrier(priv, fifo);
e8d548d5 290
d3af90a5 291 usbhs_write(priv, fifo->ctr, BCLR);
e8d548d5
KM
292}
293
d3af90a5
KM
294static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,
295 struct usbhs_fifo *fifo)
e8d548d5 296{
d3af90a5 297 return usbhs_read(priv, fifo->ctr) & DTLN_MASK;
e8d548d5
KM
298}
299
d77e3f4e
KM
300static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
301 struct usbhs_fifo *fifo)
302{
303 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
304
305 usbhs_pipe_select_fifo(pipe, NULL);
306 usbhs_write(priv, fifo->sel, 0);
307}
308
d3af90a5
KM
309static int usbhsf_fifo_select(struct usbhs_pipe *pipe,
310 struct usbhs_fifo *fifo,
311 int write)
e8d548d5
KM
312{
313 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
314 struct device *dev = usbhs_priv_to_dev(priv);
315 int timeout = 1024;
316 u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
317 u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
318
d77e3f4e
KM
319 if (usbhs_pipe_is_busy(pipe) ||
320 usbhsf_fifo_is_busy(fifo))
321 return -EBUSY;
322
92352071 323 if (usbhs_pipe_is_dcp(pipe)) {
e8d548d5
KM
324 base |= (1 == write) << 5; /* ISEL */
325
92352071
KM
326 if (usbhs_mod_is_host(priv))
327 usbhs_dcp_dir_for_host(pipe, write);
328 }
329
e8d548d5 330 /* "base" will be used below */
5ea43994
SY
331 if (usbhs_get_dparam(priv, has_sudmac) && !usbhsf_is_cfifo(priv, fifo))
332 usbhs_write(priv, fifo->sel, base);
333 else
334 usbhs_write(priv, fifo->sel, base | MBW_32);
e8d548d5
KM
335
336 /* check ISEL and CURPIPE value */
337 while (timeout--) {
d77e3f4e
KM
338 if (base == (mask & usbhs_read(priv, fifo->sel))) {
339 usbhs_pipe_select_fifo(pipe, fifo);
e8d548d5 340 return 0;
d77e3f4e 341 }
e8d548d5
KM
342 udelay(10);
343 }
344
345 dev_err(dev, "fifo select error\n");
346
347 return -EIO;
348}
349
9e74d601
KM
350/*
351 * DCP status stage
352 */
353static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
354{
355 struct usbhs_pipe *pipe = pkt->pipe;
356 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
357 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
358 struct device *dev = usbhs_priv_to_dev(priv);
359 int ret;
360
361 usbhs_pipe_disable(pipe);
362
363 ret = usbhsf_fifo_select(pipe, fifo, 1);
364 if (ret < 0) {
365 dev_err(dev, "%s() faile\n", __func__);
366 return ret;
367 }
368
369 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
370
371 usbhsf_fifo_clear(pipe, fifo);
372 usbhsf_send_terminator(pipe, fifo);
373
374 usbhsf_fifo_unselect(pipe, fifo);
375
376 usbhsf_tx_irq_ctrl(pipe, 1);
377 usbhs_pipe_enable(pipe);
378
379 return ret;
380}
381
382static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt *pkt, int *is_done)
383{
384 struct usbhs_pipe *pipe = pkt->pipe;
385 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
386 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
387 struct device *dev = usbhs_priv_to_dev(priv);
388 int ret;
389
390 usbhs_pipe_disable(pipe);
391
392 ret = usbhsf_fifo_select(pipe, fifo, 0);
393 if (ret < 0) {
394 dev_err(dev, "%s() fail\n", __func__);
395 return ret;
396 }
397
398 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
399 usbhsf_fifo_clear(pipe, fifo);
400
401 usbhsf_fifo_unselect(pipe, fifo);
402
403 usbhsf_rx_irq_ctrl(pipe, 1);
404 usbhs_pipe_enable(pipe);
405
406 return ret;
407
408}
409
410static int usbhs_dcp_dir_switch_done(struct usbhs_pkt *pkt, int *is_done)
411{
412 struct usbhs_pipe *pipe = pkt->pipe;
413
414 if (pkt->handler == &usbhs_dcp_status_stage_in_handler)
415 usbhsf_tx_irq_ctrl(pipe, 0);
416 else
417 usbhsf_rx_irq_ctrl(pipe, 0);
418
419 pkt->actual = pkt->length;
420 *is_done = 1;
421
422 return 0;
423}
424
425struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler = {
426 .prepare = usbhs_dcp_dir_switch_to_write,
427 .try_run = usbhs_dcp_dir_switch_done,
428};
429
430struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler = {
431 .prepare = usbhs_dcp_dir_switch_to_read,
432 .try_run = usbhs_dcp_dir_switch_done,
433};
434
435/*
436 * DCP data stage (push)
437 */
438static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt *pkt, int *is_done)
439{
440 struct usbhs_pipe *pipe = pkt->pipe;
441
442 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
443
444 /*
445 * change handler to PIO push
446 */
447 pkt->handler = &usbhs_fifo_pio_push_handler;
448
449 return pkt->handler->prepare(pkt, is_done);
450}
451
452struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler = {
453 .prepare = usbhsf_dcp_data_stage_try_push,
454};
455
456/*
457 * DCP data stage (pop)
458 */
459static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt *pkt,
460 int *is_done)
461{
462 struct usbhs_pipe *pipe = pkt->pipe;
463 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
464 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
465
466 if (usbhs_pipe_is_busy(pipe))
467 return 0;
468
469 /*
470 * prepare pop for DCP should
471 * - change DCP direction,
472 * - clear fifo
473 * - DATA1
474 */
475 usbhs_pipe_disable(pipe);
476
477 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
478
479 usbhsf_fifo_select(pipe, fifo, 0);
480 usbhsf_fifo_clear(pipe, fifo);
481 usbhsf_fifo_unselect(pipe, fifo);
482
483 /*
484 * change handler to PIO pop
485 */
486 pkt->handler = &usbhs_fifo_pio_pop_handler;
487
488 return pkt->handler->prepare(pkt, is_done);
489}
490
491struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler = {
492 .prepare = usbhsf_dcp_data_stage_prepare_pop,
493};
494
e8d548d5 495/*
233f519d 496 * PIO push handler
e8d548d5 497 */
0cb7e61d 498static int usbhsf_pio_try_push(struct usbhs_pkt *pkt, int *is_done)
e8d548d5 499{
4bd04811 500 struct usbhs_pipe *pipe = pkt->pipe;
e8d548d5 501 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
659d4954 502 struct device *dev = usbhs_priv_to_dev(priv);
d3af90a5
KM
503 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
504 void __iomem *addr = priv->base + fifo->port;
659d4954 505 u8 *buf;
e8d548d5
KM
506 int maxp = usbhs_pipe_get_maxpacket(pipe);
507 int total_len;
4bd04811 508 int i, ret, len;
97664a20 509 int is_short;
e8d548d5 510
3edeee38
KM
511 usbhs_pipe_data_sequence(pipe, pkt->sequence);
512 pkt->sequence = -1; /* -1 sequence will be ignored */
513
1c90ee0b
KM
514 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
515
d3af90a5 516 ret = usbhsf_fifo_select(pipe, fifo, 1);
e8d548d5 517 if (ret < 0)
d77e3f4e 518 return 0;
e8d548d5 519
dad67397 520 ret = usbhs_pipe_is_accessible(pipe);
4ef85e0f
KM
521 if (ret < 0) {
522 /* inaccessible pipe is not an error */
523 ret = 0;
659d4954 524 goto usbhs_fifo_write_busy;
4ef85e0f 525 }
e8d548d5 526
d3af90a5 527 ret = usbhsf_fifo_barrier(priv, fifo);
e8d548d5 528 if (ret < 0)
659d4954 529 goto usbhs_fifo_write_busy;
e8d548d5 530
659d4954
KM
531 buf = pkt->buf + pkt->actual;
532 len = pkt->length - pkt->actual;
533 len = min(len, maxp);
534 total_len = len;
535 is_short = total_len < maxp;
e8d548d5
KM
536
537 /*
538 * FIXME
539 *
540 * 32-bit access only
541 */
659d4954 542 if (len >= 4 && !((unsigned long)buf & 0x03)) {
e8d548d5
KM
543 iowrite32_rep(addr, buf, len / 4);
544 len %= 4;
545 buf += total_len - len;
546 }
547
548 /* the rest operation */
549 for (i = 0; i < len; i++)
550 iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
551
659d4954
KM
552 /*
553 * variable update
554 */
555 pkt->actual += total_len;
556
557 if (pkt->actual < pkt->length)
97664a20 558 *is_done = 0; /* there are remainder data */
659d4954 559 else if (is_short)
97664a20 560 *is_done = 1; /* short packet */
659d4954 561 else
97664a20 562 *is_done = !pkt->zero; /* send zero packet ? */
659d4954
KM
563
564 /*
565 * pipe/irq handling
566 */
567 if (is_short)
d3af90a5 568 usbhsf_send_terminator(pipe, fifo);
e8d548d5 569
97664a20 570 usbhsf_tx_irq_ctrl(pipe, !*is_done);
8355b2b3 571 usbhs_pipe_running(pipe, !*is_done);
4bd04811
KM
572 usbhs_pipe_enable(pipe);
573
659d4954
KM
574 dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
575 usbhs_pipe_number(pipe),
97664a20 576 pkt->length, pkt->actual, *is_done, pkt->zero);
659d4954 577
d77e3f4e
KM
578 usbhsf_fifo_unselect(pipe, fifo);
579
4bd04811 580 return 0;
659d4954
KM
581
582usbhs_fifo_write_busy:
d77e3f4e
KM
583 usbhsf_fifo_unselect(pipe, fifo);
584
659d4954
KM
585 /*
586 * pipe is busy.
587 * retry in interrupt
588 */
589 usbhsf_tx_irq_ctrl(pipe, 1);
8355b2b3 590 usbhs_pipe_running(pipe, 1);
659d4954
KM
591
592 return ret;
e8d548d5
KM
593}
594
8355b2b3
YS
595static int usbhsf_pio_prepare_push(struct usbhs_pkt *pkt, int *is_done)
596{
597 if (usbhs_pipe_is_running(pkt->pipe))
598 return 0;
599
600 return usbhsf_pio_try_push(pkt, is_done);
601}
602
0cb7e61d 603struct usbhs_pkt_handle usbhs_fifo_pio_push_handler = {
8355b2b3 604 .prepare = usbhsf_pio_prepare_push,
0cb7e61d 605 .try_run = usbhsf_pio_try_push,
dad67397
KM
606};
607
233f519d
KM
608/*
609 * PIO pop handler
610 */
97664a20 611static int usbhsf_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
e8d548d5 612{
dad67397 613 struct usbhs_pipe *pipe = pkt->pipe;
d77e3f4e
KM
614
615 if (usbhs_pipe_is_busy(pipe))
616 return 0;
e8d548d5 617
8355b2b3
YS
618 if (usbhs_pipe_is_running(pipe))
619 return 0;
620
e8d548d5 621 /*
d77e3f4e 622 * pipe enable to prepare packet receive
e8d548d5 623 */
3edeee38
KM
624 usbhs_pipe_data_sequence(pipe, pkt->sequence);
625 pkt->sequence = -1; /* -1 sequence will be ignored */
e8d548d5 626
1c90ee0b 627 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
e8d548d5 628 usbhs_pipe_enable(pipe);
8355b2b3 629 usbhs_pipe_running(pipe, 1);
659d4954 630 usbhsf_rx_irq_ctrl(pipe, 1);
e8d548d5 631
d3af90a5 632 return 0;
e8d548d5
KM
633}
634
0cb7e61d 635static int usbhsf_pio_try_pop(struct usbhs_pkt *pkt, int *is_done)
e8d548d5 636{
4bd04811 637 struct usbhs_pipe *pipe = pkt->pipe;
e8d548d5 638 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
659d4954 639 struct device *dev = usbhs_priv_to_dev(priv);
d3af90a5
KM
640 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
641 void __iomem *addr = priv->base + fifo->port;
659d4954
KM
642 u8 *buf;
643 u32 data = 0;
644 int maxp = usbhs_pipe_get_maxpacket(pipe);
4bd04811 645 int rcv_len, len;
e8d548d5 646 int i, ret;
4bd04811 647 int total_len = 0;
e8d548d5 648
d3af90a5 649 ret = usbhsf_fifo_select(pipe, fifo, 0);
e8d548d5 650 if (ret < 0)
d77e3f4e 651 return 0;
e8d548d5 652
d3af90a5 653 ret = usbhsf_fifo_barrier(priv, fifo);
e8d548d5 654 if (ret < 0)
d77e3f4e 655 goto usbhs_fifo_read_busy;
e8d548d5 656
d3af90a5 657 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
e8d548d5 658
659d4954
KM
659 buf = pkt->buf + pkt->actual;
660 len = pkt->length - pkt->actual;
661 len = min(len, rcv_len);
662 total_len = len;
663
6ff5d09b
KM
664 /*
665 * update actual length first here to decide disable pipe.
666 * if this pipe keeps BUF status and all data were popped,
667 * then, next interrupt/token will be issued again
668 */
669 pkt->actual += total_len;
670
671 if ((pkt->actual == pkt->length) || /* receive all data */
672 (total_len < maxp)) { /* short packet */
673 *is_done = 1;
674 usbhsf_rx_irq_ctrl(pipe, 0);
8355b2b3 675 usbhs_pipe_running(pipe, 0);
6ff5d09b
KM
676 usbhs_pipe_disable(pipe); /* disable pipe first */
677 }
678
e8d548d5
KM
679 /*
680 * Buffer clear if Zero-Length packet
681 *
682 * see
683 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
684 */
685 if (0 == rcv_len) {
3edeee38 686 pkt->zero = 1;
d3af90a5 687 usbhsf_fifo_clear(pipe, fifo);
4bd04811 688 goto usbhs_fifo_read_end;
e8d548d5
KM
689 }
690
e8d548d5
KM
691 /*
692 * FIXME
693 *
694 * 32-bit access only
695 */
659d4954 696 if (len >= 4 && !((unsigned long)buf & 0x03)) {
e8d548d5
KM
697 ioread32_rep(addr, buf, len / 4);
698 len %= 4;
659d4954 699 buf += total_len - len;
e8d548d5
KM
700 }
701
702 /* the rest operation */
703 for (i = 0; i < len; i++) {
704 if (!(i & 0x03))
705 data = ioread32(addr);
706
707 buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
708 }
709
4bd04811 710usbhs_fifo_read_end:
97664a20
KM
711 dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
712 usbhs_pipe_number(pipe),
713 pkt->length, pkt->actual, *is_done, pkt->zero);
714
d77e3f4e
KM
715usbhs_fifo_read_busy:
716 usbhsf_fifo_unselect(pipe, fifo);
717
718 return ret;
e8d548d5 719}
dad67397 720
0cb7e61d 721struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler = {
dad67397 722 .prepare = usbhsf_prepare_pop,
0cb7e61d 723 .try_run = usbhsf_pio_try_pop,
dad67397
KM
724};
725
726/*
233f519d 727 * DCP ctrol statge handler
dad67397 728 */
97664a20 729static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt, int *is_done)
dad67397 730{
97664a20 731 usbhs_dcp_control_transfer_done(pkt->pipe);
dad67397 732
97664a20 733 *is_done = 1;
dad67397
KM
734
735 return 0;
736}
737
738struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
739 .prepare = usbhsf_ctrl_stage_end,
740 .try_run = usbhsf_ctrl_stage_end,
741};
742
e73a9891
KM
743/*
744 * DMA fifo functions
745 */
746static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
747 struct usbhs_pkt *pkt)
748{
749 if (&usbhs_fifo_dma_push_handler == pkt->handler)
750 return fifo->tx_chan;
751
752 if (&usbhs_fifo_dma_pop_handler == pkt->handler)
753 return fifo->rx_chan;
754
755 return NULL;
756}
757
758static struct usbhs_fifo *usbhsf_get_dma_fifo(struct usbhs_priv *priv,
759 struct usbhs_pkt *pkt)
760{
761 struct usbhs_fifo *fifo;
3a2634a5 762 int i;
e73a9891 763
3a2634a5
YS
764 usbhs_for_each_dfifo(priv, fifo, i) {
765 if (usbhsf_dma_chan_get(fifo, pkt) &&
766 !usbhsf_fifo_is_busy(fifo))
767 return fifo;
768 }
e73a9891
KM
769
770 return NULL;
771}
772
773#define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
774#define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
775static void __usbhsf_dma_ctrl(struct usbhs_pipe *pipe,
776 struct usbhs_fifo *fifo,
777 u16 dreqe)
778{
779 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
780
781 usbhs_bset(priv, fifo->sel, DREQE, dreqe);
782}
783
e73a9891
KM
784static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
785{
786 struct usbhs_pipe *pipe = pkt->pipe;
787 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
788 struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
789
790 return info->dma_map_ctrl(pkt, map);
791}
792
793static void usbhsf_dma_complete(void *arg);
6e4b74e4 794static void xfer_work(struct work_struct *work)
e73a9891 795{
6e4b74e4 796 struct usbhs_pkt *pkt = container_of(work, struct usbhs_pkt, work);
e73a9891
KM
797 struct usbhs_pipe *pipe = pkt->pipe;
798 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
799 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
e73a9891
KM
800 struct dma_async_tx_descriptor *desc;
801 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
802 struct device *dev = usbhs_priv_to_dev(priv);
55ba4e5e 803 enum dma_transfer_direction dir;
e73a9891 804
55ba4e5e 805 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV;
e73a9891 806
2f0de9d8
KM
807 desc = dmaengine_prep_slave_single(chan, pkt->dma + pkt->actual,
808 pkt->trans, dir,
16052827 809 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
e73a9891
KM
810 if (!desc)
811 return;
812
813 desc->callback = usbhsf_dma_complete;
814 desc->callback_param = pipe;
815
2f0de9d8 816 if (dmaengine_submit(desc) < 0) {
e73a9891
KM
817 dev_err(dev, "Failed to submit dma descriptor\n");
818 return;
819 }
820
821 dev_dbg(dev, " %s %d (%d/ %d)\n",
822 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
823
8355b2b3 824 usbhs_pipe_running(pipe, 1);
1c90ee0b 825 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->trans);
1cb60156 826 usbhs_pipe_enable(pipe);
e73a9891
KM
827 usbhsf_dma_start(pipe, fifo);
828 dma_async_issue_pending(chan);
829}
830
233f519d
KM
831/*
832 * DMA push handler
833 */
e73a9891
KM
834static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
835{
836 struct usbhs_pipe *pipe = pkt->pipe;
837 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
838 struct usbhs_fifo *fifo;
839 int len = pkt->length - pkt->actual;
840 int ret;
841
842 if (usbhs_pipe_is_busy(pipe))
843 return 0;
844
845 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
846 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
847 usbhs_pipe_is_dcp(pipe))
848 goto usbhsf_pio_prepare_push;
849
77975eec 850 if (len & 0x7) /* 8byte alignment */
e73a9891
KM
851 goto usbhsf_pio_prepare_push;
852
c9ae0c91 853 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
9a12d097
KM
854 goto usbhsf_pio_prepare_push;
855
8355b2b3
YS
856 /* return at this time if the pipe is running */
857 if (usbhs_pipe_is_running(pipe))
858 return 0;
859
e73a9891
KM
860 /* get enable DMA fifo */
861 fifo = usbhsf_get_dma_fifo(priv, pkt);
862 if (!fifo)
863 goto usbhsf_pio_prepare_push;
864
865 if (usbhsf_dma_map(pkt) < 0)
866 goto usbhsf_pio_prepare_push;
867
868 ret = usbhsf_fifo_select(pipe, fifo, 0);
869 if (ret < 0)
870 goto usbhsf_pio_prepare_push_unmap;
871
872 pkt->trans = len;
873
6e4b74e4
GL
874 INIT_WORK(&pkt->work, xfer_work);
875 schedule_work(&pkt->work);
e73a9891
KM
876
877 return 0;
878
879usbhsf_pio_prepare_push_unmap:
880 usbhsf_dma_unmap(pkt);
881usbhsf_pio_prepare_push:
882 /*
883 * change handler to PIO
884 */
885 pkt->handler = &usbhs_fifo_pio_push_handler;
886
887 return pkt->handler->prepare(pkt, is_done);
888}
889
890static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
891{
892 struct usbhs_pipe *pipe = pkt->pipe;
c0ed8b23 893 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe);
e73a9891 894
c0ed8b23
YS
895 pkt->actual += pkt->trans;
896
897 if (pkt->actual < pkt->length)
898 *is_done = 0; /* there are remainder data */
899 else if (is_short)
900 *is_done = 1; /* short packet */
901 else
902 *is_done = !pkt->zero; /* send zero packet? */
e73a9891 903
8355b2b3 904 usbhs_pipe_running(pipe, !*is_done);
e73a9891
KM
905
906 usbhsf_dma_stop(pipe, pipe->fifo);
907 usbhsf_dma_unmap(pkt);
908 usbhsf_fifo_unselect(pipe, pipe->fifo);
909
c0ed8b23
YS
910 if (!*is_done) {
911 /* change handler to PIO */
912 pkt->handler = &usbhs_fifo_pio_push_handler;
913 return pkt->handler->try_run(pkt, is_done);
914 }
915
e73a9891
KM
916 return 0;
917}
918
919struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
920 .prepare = usbhsf_dma_prepare_push,
921 .dma_done = usbhsf_dma_push_done,
922};
923
233f519d
KM
924/*
925 * DMA pop handler
926 */
e73a9891
KM
927static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
928{
929 struct usbhs_pipe *pipe = pkt->pipe;
930 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
931 struct usbhs_fifo *fifo;
932 int len, ret;
933
934 if (usbhs_pipe_is_busy(pipe))
935 return 0;
936
937 if (usbhs_pipe_is_dcp(pipe))
938 goto usbhsf_pio_prepare_pop;
939
940 /* get enable DMA fifo */
941 fifo = usbhsf_get_dma_fifo(priv, pkt);
942 if (!fifo)
943 goto usbhsf_pio_prepare_pop;
944
c9ae0c91 945 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
9a12d097
KM
946 goto usbhsf_pio_prepare_pop;
947
e73a9891
KM
948 ret = usbhsf_fifo_select(pipe, fifo, 0);
949 if (ret < 0)
950 goto usbhsf_pio_prepare_pop;
951
952 /* use PIO if packet is less than pio_dma_border */
953 len = usbhsf_fifo_rcv_len(priv, fifo);
954 len = min(pkt->length - pkt->actual, len);
77975eec 955 if (len & 0x7) /* 8byte alignment */
e73a9891
KM
956 goto usbhsf_pio_prepare_pop_unselect;
957
958 if (len < usbhs_get_dparam(priv, pio_dma_border))
959 goto usbhsf_pio_prepare_pop_unselect;
960
961 ret = usbhsf_fifo_barrier(priv, fifo);
962 if (ret < 0)
963 goto usbhsf_pio_prepare_pop_unselect;
964
965 if (usbhsf_dma_map(pkt) < 0)
966 goto usbhsf_pio_prepare_pop_unselect;
967
968 /* DMA */
969
970 /*
971 * usbhs_fifo_dma_pop_handler :: prepare
972 * enabled irq to come here.
973 * but it is no longer needed for DMA. disable it.
974 */
975 usbhsf_rx_irq_ctrl(pipe, 0);
976
977 pkt->trans = len;
978
6e4b74e4
GL
979 INIT_WORK(&pkt->work, xfer_work);
980 schedule_work(&pkt->work);
e73a9891
KM
981
982 return 0;
983
984usbhsf_pio_prepare_pop_unselect:
985 usbhsf_fifo_unselect(pipe, fifo);
986usbhsf_pio_prepare_pop:
987
988 /*
989 * change handler to PIO
990 */
991 pkt->handler = &usbhs_fifo_pio_pop_handler;
992
993 return pkt->handler->try_run(pkt, is_done);
994}
995
996static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
997{
998 struct usbhs_pipe *pipe = pkt->pipe;
999 int maxp = usbhs_pipe_get_maxpacket(pipe);
1000
1001 usbhsf_dma_stop(pipe, pipe->fifo);
1002 usbhsf_dma_unmap(pkt);
1003 usbhsf_fifo_unselect(pipe, pipe->fifo);
1004
1005 pkt->actual += pkt->trans;
1006
1007 if ((pkt->actual == pkt->length) || /* receive all data */
1008 (pkt->trans < maxp)) { /* short packet */
1009 *is_done = 1;
8355b2b3 1010 usbhs_pipe_running(pipe, 0);
e73a9891
KM
1011 } else {
1012 /* re-enable */
8355b2b3 1013 usbhs_pipe_running(pipe, 0);
e73a9891
KM
1014 usbhsf_prepare_pop(pkt, is_done);
1015 }
1016
1017 return 0;
1018}
1019
1020struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
1021 .prepare = usbhsf_prepare_pop,
1022 .try_run = usbhsf_dma_try_pop,
1023 .dma_done = usbhsf_dma_pop_done
1024};
1025
1026/*
1027 * DMA setting
1028 */
1029static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
1030{
1031 struct sh_dmae_slave *slave = param;
1032
1033 /*
1034 * FIXME
1035 *
1036 * usbhs doesn't recognize id = 0 as valid DMA
1037 */
f19b7e0d 1038 if (0 == slave->shdma_slave.slave_id)
e73a9891
KM
1039 return false;
1040
1041 chan->private = slave;
1042
1043 return true;
1044}
1045
1046static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1047{
1048 if (fifo->tx_chan)
1049 dma_release_channel(fifo->tx_chan);
1050 if (fifo->rx_chan)
1051 dma_release_channel(fifo->rx_chan);
1052
1053 fifo->tx_chan = NULL;
1054 fifo->rx_chan = NULL;
1055}
1056
6e3f53ab 1057static void usbhsf_dma_init_pdev(struct usbhs_fifo *fifo)
e73a9891 1058{
e73a9891
KM
1059 dma_cap_mask_t mask;
1060
1061 dma_cap_zero(mask);
1062 dma_cap_set(DMA_SLAVE, mask);
1063 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1064 &fifo->tx_slave);
1065
1066 dma_cap_zero(mask);
1067 dma_cap_set(DMA_SLAVE, mask);
1068 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1069 &fifo->rx_slave);
6e3f53ab
YS
1070}
1071
abd2dbf6
YS
1072static void usbhsf_dma_init_dt(struct device *dev, struct usbhs_fifo *fifo)
1073{
1074 fifo->tx_chan = dma_request_slave_channel_reason(dev, "tx");
1075 fifo->rx_chan = dma_request_slave_channel_reason(dev, "rx");
1076}
1077
6e3f53ab
YS
1078static void usbhsf_dma_init(struct usbhs_priv *priv,
1079 struct usbhs_fifo *fifo)
1080{
1081 struct device *dev = usbhs_priv_to_dev(priv);
1082
abd2dbf6
YS
1083 if (dev->of_node)
1084 usbhsf_dma_init_dt(dev, fifo);
1085 else
1086 usbhsf_dma_init_pdev(fifo);
e73a9891
KM
1087
1088 if (fifo->tx_chan || fifo->rx_chan)
4ce68805 1089 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
e73a9891
KM
1090 fifo->name,
1091 fifo->tx_chan ? "[TX]" : " ",
1092 fifo->rx_chan ? "[RX]" : " ");
1093}
1094
dad67397
KM
1095/*
1096 * irq functions
1097 */
1098static int usbhsf_irq_empty(struct usbhs_priv *priv,
1099 struct usbhs_irq_state *irq_state)
1100{
1101 struct usbhs_pipe *pipe;
dad67397
KM
1102 struct device *dev = usbhs_priv_to_dev(priv);
1103 int i, ret;
1104
1105 if (!irq_state->bempsts) {
1106 dev_err(dev, "debug %s !!\n", __func__);
1107 return -EIO;
1108 }
1109
1110 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1111
1112 /*
1113 * search interrupted "pipe"
1114 * not "uep".
1115 */
1116 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1117 if (!(irq_state->bempsts & (1 << i)))
1118 continue;
1119
51b8a021 1120 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
dad67397
KM
1121 if (ret < 0)
1122 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1123 }
1124
1125 return 0;
1126}
1127
1128static int usbhsf_irq_ready(struct usbhs_priv *priv,
1129 struct usbhs_irq_state *irq_state)
1130{
1131 struct usbhs_pipe *pipe;
dad67397
KM
1132 struct device *dev = usbhs_priv_to_dev(priv);
1133 int i, ret;
1134
1135 if (!irq_state->brdysts) {
1136 dev_err(dev, "debug %s !!\n", __func__);
1137 return -EIO;
1138 }
1139
1140 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1141
1142 /*
1143 * search interrupted "pipe"
1144 * not "uep".
1145 */
1146 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1147 if (!(irq_state->brdysts & (1 << i)))
1148 continue;
1149
51b8a021 1150 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
dad67397
KM
1151 if (ret < 0)
1152 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1153 }
1154
1155 return 0;
1156}
1157
e73a9891
KM
1158static void usbhsf_dma_complete(void *arg)
1159{
1160 struct usbhs_pipe *pipe = arg;
1161 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1162 struct device *dev = usbhs_priv_to_dev(priv);
1163 int ret;
1164
51b8a021 1165 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
e73a9891
KM
1166 if (ret < 0)
1167 dev_err(dev, "dma_complete run_error %d : %d\n",
1168 usbhs_pipe_number(pipe), ret);
1169}
1170
cdeb7943
YS
1171void usbhs_fifo_clear_dcp(struct usbhs_pipe *pipe)
1172{
1173 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1174 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
1175
1176 /* clear DCP FIFO of transmission */
1177 if (usbhsf_fifo_select(pipe, fifo, 1) < 0)
1178 return;
1179 usbhsf_fifo_clear(pipe, fifo);
1180 usbhsf_fifo_unselect(pipe, fifo);
1181
1182 /* clear DCP FIFO of reception */
1183 if (usbhsf_fifo_select(pipe, fifo, 0) < 0)
1184 return;
1185 usbhsf_fifo_clear(pipe, fifo);
1186 usbhsf_fifo_unselect(pipe, fifo);
1187}
1188
dad67397
KM
1189/*
1190 * fifo init
1191 */
1192void usbhs_fifo_init(struct usbhs_priv *priv)
1193{
1194 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
d77e3f4e 1195 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
3a2634a5
YS
1196 struct usbhs_fifo *dfifo;
1197 int i;
dad67397
KM
1198
1199 mod->irq_empty = usbhsf_irq_empty;
1200 mod->irq_ready = usbhsf_irq_ready;
1201 mod->irq_bempsts = 0;
1202 mod->irq_brdysts = 0;
d77e3f4e
KM
1203
1204 cfifo->pipe = NULL;
3a2634a5
YS
1205 usbhs_for_each_dfifo(priv, dfifo, i)
1206 dfifo->pipe = NULL;
dad67397
KM
1207}
1208
1209void usbhs_fifo_quit(struct usbhs_priv *priv)
1210{
1211 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1212
1213 mod->irq_empty = NULL;
1214 mod->irq_ready = NULL;
1215 mod->irq_bempsts = 0;
1216 mod->irq_brdysts = 0;
1217}
d3af90a5 1218
53e734b1 1219#define __USBHS_DFIFO_INIT(priv, fifo, channel, fifo_port) \
3a2634a5
YS
1220do { \
1221 fifo = usbhsf_get_dnfifo(priv, channel); \
1222 fifo->name = "D"#channel"FIFO"; \
53e734b1 1223 fifo->port = fifo_port; \
3a2634a5
YS
1224 fifo->sel = D##channel##FIFOSEL; \
1225 fifo->ctr = D##channel##FIFOCTR; \
1226 fifo->tx_slave.shdma_slave.slave_id = \
1227 usbhs_get_dparam(priv, d##channel##_tx_id); \
1228 fifo->rx_slave.shdma_slave.slave_id = \
1229 usbhs_get_dparam(priv, d##channel##_rx_id); \
1230 usbhsf_dma_init(priv, fifo); \
1231} while (0)
1232
53e734b1
YS
1233#define USBHS_DFIFO_INIT(priv, fifo, channel) \
1234 __USBHS_DFIFO_INIT(priv, fifo, channel, D##channel##FIFO)
1235#define USBHS_DFIFO_INIT_NO_PORT(priv, fifo, channel) \
1236 __USBHS_DFIFO_INIT(priv, fifo, channel, 0)
1237
d3af90a5
KM
1238int usbhs_fifo_probe(struct usbhs_priv *priv)
1239{
1240 struct usbhs_fifo *fifo;
1241
1242 /* CFIFO */
1243 fifo = usbhsf_get_cfifo(priv);
e73a9891 1244 fifo->name = "CFIFO";
d3af90a5
KM
1245 fifo->port = CFIFO;
1246 fifo->sel = CFIFOSEL;
1247 fifo->ctr = CFIFOCTR;
1248
3a2634a5
YS
1249 /* DFIFO */
1250 USBHS_DFIFO_INIT(priv, fifo, 0);
1251 USBHS_DFIFO_INIT(priv, fifo, 1);
d3cf6a4b
YS
1252 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 2);
1253 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 3);
e73a9891 1254
d3af90a5
KM
1255 return 0;
1256}
1257
1258void usbhs_fifo_remove(struct usbhs_priv *priv)
1259{
3a2634a5
YS
1260 struct usbhs_fifo *fifo;
1261 int i;
1262
1263 usbhs_for_each_dfifo(priv, fifo, i)
1264 usbhsf_dma_quit(priv, fifo);
d3af90a5 1265}
This page took 0.364953 seconds and 5 git commands to generate.