Linux 4.14.51
[linux/fpc-iii.git] / drivers / usb / renesas_usbhs / fifo.c
blob5d369b38868a626665b7e7e423feade1136d75cc
1 /*
2 * Renesas USB driver
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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.
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
17 #include <linux/delay.h>
18 #include <linux/io.h>
19 #include <linux/scatterlist.h>
20 #include "common.h"
21 #include "pipe.h"
23 #define usbhsf_get_cfifo(p) (&((p)->fifo_info.cfifo))
24 #define usbhsf_is_cfifo(p, f) (usbhsf_get_cfifo(p) == f)
26 #define usbhsf_fifo_is_busy(f) ((f)->pipe) /* see usbhs_pipe_select_fifo */
29 * packet initialize
31 void usbhs_pkt_init(struct usbhs_pkt *pkt)
33 INIT_LIST_HEAD(&pkt->node);
37 * packet control function
39 static int usbhsf_null_handle(struct usbhs_pkt *pkt, int *is_done)
41 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
42 struct device *dev = usbhs_priv_to_dev(priv);
44 dev_err(dev, "null handler\n");
46 return -EINVAL;
49 static const struct usbhs_pkt_handle usbhsf_null_handler = {
50 .prepare = usbhsf_null_handle,
51 .try_run = usbhsf_null_handle,
54 void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
55 void (*done)(struct usbhs_priv *priv,
56 struct usbhs_pkt *pkt),
57 void *buf, int len, int zero, int sequence)
59 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
60 struct device *dev = usbhs_priv_to_dev(priv);
61 unsigned long flags;
63 if (!done) {
64 dev_err(dev, "no done function\n");
65 return;
68 /******************** spin lock ********************/
69 usbhs_lock(priv, flags);
71 if (!pipe->handler) {
72 dev_err(dev, "no handler function\n");
73 pipe->handler = &usbhsf_null_handler;
76 list_move_tail(&pkt->node, &pipe->list);
79 * each pkt must hold own handler.
80 * because handler might be changed by its situation.
81 * dma handler -> pio handler.
83 pkt->pipe = pipe;
84 pkt->buf = buf;
85 pkt->handler = pipe->handler;
86 pkt->length = len;
87 pkt->zero = zero;
88 pkt->actual = 0;
89 pkt->done = done;
90 pkt->sequence = sequence;
92 usbhs_unlock(priv, flags);
93 /******************** spin unlock ******************/
96 static void __usbhsf_pkt_del(struct usbhs_pkt *pkt)
98 list_del_init(&pkt->node);
101 static struct usbhs_pkt *__usbhsf_pkt_get(struct usbhs_pipe *pipe)
103 return list_first_entry_or_null(&pipe->list, struct usbhs_pkt, node);
106 static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
107 struct usbhs_fifo *fifo);
108 static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
109 struct usbhs_fifo *fifo);
110 static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
111 struct usbhs_pkt *pkt);
112 #define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
113 #define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
114 static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map);
115 struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt)
117 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
118 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
119 unsigned long flags;
121 /******************** spin lock ********************/
122 usbhs_lock(priv, flags);
124 usbhs_pipe_disable(pipe);
126 if (!pkt)
127 pkt = __usbhsf_pkt_get(pipe);
129 if (pkt) {
130 struct dma_chan *chan = NULL;
132 if (fifo)
133 chan = usbhsf_dma_chan_get(fifo, pkt);
134 if (chan) {
135 dmaengine_terminate_all(chan);
136 usbhsf_fifo_clear(pipe, fifo);
137 usbhsf_dma_unmap(pkt);
140 __usbhsf_pkt_del(pkt);
143 if (fifo)
144 usbhsf_fifo_unselect(pipe, fifo);
146 usbhs_unlock(priv, flags);
147 /******************** spin unlock ******************/
149 return pkt;
152 enum {
153 USBHSF_PKT_PREPARE,
154 USBHSF_PKT_TRY_RUN,
155 USBHSF_PKT_DMA_DONE,
158 static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
160 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
161 struct usbhs_pkt *pkt;
162 struct device *dev = usbhs_priv_to_dev(priv);
163 int (*func)(struct usbhs_pkt *pkt, int *is_done);
164 unsigned long flags;
165 int ret = 0;
166 int is_done = 0;
168 /******************** spin lock ********************/
169 usbhs_lock(priv, flags);
171 pkt = __usbhsf_pkt_get(pipe);
172 if (!pkt)
173 goto __usbhs_pkt_handler_end;
175 switch (type) {
176 case USBHSF_PKT_PREPARE:
177 func = pkt->handler->prepare;
178 break;
179 case USBHSF_PKT_TRY_RUN:
180 func = pkt->handler->try_run;
181 break;
182 case USBHSF_PKT_DMA_DONE:
183 func = pkt->handler->dma_done;
184 break;
185 default:
186 dev_err(dev, "unknown pkt handler\n");
187 goto __usbhs_pkt_handler_end;
190 if (likely(func))
191 ret = func(pkt, &is_done);
193 if (is_done)
194 __usbhsf_pkt_del(pkt);
196 __usbhs_pkt_handler_end:
197 usbhs_unlock(priv, flags);
198 /******************** spin unlock ******************/
200 if (is_done) {
201 pkt->done(priv, pkt);
202 usbhs_pkt_start(pipe);
205 return ret;
208 void usbhs_pkt_start(struct usbhs_pipe *pipe)
210 usbhsf_pkt_handler(pipe, USBHSF_PKT_PREPARE);
214 * irq enable/disable function
216 #define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_bempsts, e)
217 #define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_brdysts, e)
218 #define usbhsf_irq_callback_ctrl(pipe, status, enable) \
219 ({ \
220 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
221 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
222 u16 status = (1 << usbhs_pipe_number(pipe)); \
223 if (!mod) \
224 return; \
225 if (enable) \
226 mod->status |= status; \
227 else \
228 mod->status &= ~status; \
229 usbhs_irq_callback_update(priv, mod); \
232 static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
235 * And DCP pipe can NOT use "ready interrupt" for "send"
236 * it should use "empty" interrupt.
237 * see
238 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
240 * on the other hand, normal pipe can use "ready interrupt" for "send"
241 * even though it is single/double buffer
243 if (usbhs_pipe_is_dcp(pipe))
244 usbhsf_irq_empty_ctrl(pipe, enable);
245 else
246 usbhsf_irq_ready_ctrl(pipe, enable);
249 static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
251 usbhsf_irq_ready_ctrl(pipe, enable);
255 * FIFO ctrl
257 static void usbhsf_send_terminator(struct usbhs_pipe *pipe,
258 struct usbhs_fifo *fifo)
260 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
262 usbhs_bset(priv, fifo->ctr, BVAL, BVAL);
265 static int usbhsf_fifo_barrier(struct usbhs_priv *priv,
266 struct usbhs_fifo *fifo)
268 int timeout = 1024;
270 do {
271 /* The FIFO port is accessible */
272 if (usbhs_read(priv, fifo->ctr) & FRDY)
273 return 0;
275 udelay(10);
276 } while (timeout--);
278 return -EBUSY;
281 static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
282 struct usbhs_fifo *fifo)
284 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
285 int ret = 0;
287 if (!usbhs_pipe_is_dcp(pipe)) {
289 * This driver checks the pipe condition first to avoid -EBUSY
290 * from usbhsf_fifo_barrier() with about 10 msec delay in
291 * the interrupt handler if the pipe is RX direction and empty.
293 if (usbhs_pipe_is_dir_in(pipe))
294 ret = usbhs_pipe_is_accessible(pipe);
295 if (!ret)
296 ret = usbhsf_fifo_barrier(priv, fifo);
300 * if non-DCP pipe, this driver should set BCLR when
301 * usbhsf_fifo_barrier() returns 0.
303 if (!ret)
304 usbhs_write(priv, fifo->ctr, BCLR);
307 static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,
308 struct usbhs_fifo *fifo)
310 return usbhs_read(priv, fifo->ctr) & DTLN_MASK;
313 static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
314 struct usbhs_fifo *fifo)
316 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
318 usbhs_pipe_select_fifo(pipe, NULL);
319 usbhs_write(priv, fifo->sel, 0);
322 static int usbhsf_fifo_select(struct usbhs_pipe *pipe,
323 struct usbhs_fifo *fifo,
324 int write)
326 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
327 struct device *dev = usbhs_priv_to_dev(priv);
328 int timeout = 1024;
329 u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
330 u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
332 if (usbhs_pipe_is_busy(pipe) ||
333 usbhsf_fifo_is_busy(fifo))
334 return -EBUSY;
336 if (usbhs_pipe_is_dcp(pipe)) {
337 base |= (1 == write) << 5; /* ISEL */
339 if (usbhs_mod_is_host(priv))
340 usbhs_dcp_dir_for_host(pipe, write);
343 /* "base" will be used below */
344 if (usbhs_get_dparam(priv, has_sudmac) && !usbhsf_is_cfifo(priv, fifo))
345 usbhs_write(priv, fifo->sel, base);
346 else
347 usbhs_write(priv, fifo->sel, base | MBW_32);
349 /* check ISEL and CURPIPE value */
350 while (timeout--) {
351 if (base == (mask & usbhs_read(priv, fifo->sel))) {
352 usbhs_pipe_select_fifo(pipe, fifo);
353 return 0;
355 udelay(10);
358 dev_err(dev, "fifo select error\n");
360 return -EIO;
364 * DCP status stage
366 static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
368 struct usbhs_pipe *pipe = pkt->pipe;
369 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
370 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
371 struct device *dev = usbhs_priv_to_dev(priv);
372 int ret;
374 usbhs_pipe_disable(pipe);
376 ret = usbhsf_fifo_select(pipe, fifo, 1);
377 if (ret < 0) {
378 dev_err(dev, "%s() faile\n", __func__);
379 return ret;
382 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
384 usbhsf_fifo_clear(pipe, fifo);
385 usbhsf_send_terminator(pipe, fifo);
387 usbhsf_fifo_unselect(pipe, fifo);
389 usbhsf_tx_irq_ctrl(pipe, 1);
390 usbhs_pipe_enable(pipe);
392 return ret;
395 static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt *pkt, int *is_done)
397 struct usbhs_pipe *pipe = pkt->pipe;
398 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
399 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
400 struct device *dev = usbhs_priv_to_dev(priv);
401 int ret;
403 usbhs_pipe_disable(pipe);
405 ret = usbhsf_fifo_select(pipe, fifo, 0);
406 if (ret < 0) {
407 dev_err(dev, "%s() fail\n", __func__);
408 return ret;
411 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
412 usbhsf_fifo_clear(pipe, fifo);
414 usbhsf_fifo_unselect(pipe, fifo);
416 usbhsf_rx_irq_ctrl(pipe, 1);
417 usbhs_pipe_enable(pipe);
419 return ret;
423 static int usbhs_dcp_dir_switch_done(struct usbhs_pkt *pkt, int *is_done)
425 struct usbhs_pipe *pipe = pkt->pipe;
427 if (pkt->handler == &usbhs_dcp_status_stage_in_handler)
428 usbhsf_tx_irq_ctrl(pipe, 0);
429 else
430 usbhsf_rx_irq_ctrl(pipe, 0);
432 pkt->actual = pkt->length;
433 *is_done = 1;
435 return 0;
438 const struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler = {
439 .prepare = usbhs_dcp_dir_switch_to_write,
440 .try_run = usbhs_dcp_dir_switch_done,
443 const struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler = {
444 .prepare = usbhs_dcp_dir_switch_to_read,
445 .try_run = usbhs_dcp_dir_switch_done,
449 * DCP data stage (push)
451 static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt *pkt, int *is_done)
453 struct usbhs_pipe *pipe = pkt->pipe;
455 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
458 * change handler to PIO push
460 pkt->handler = &usbhs_fifo_pio_push_handler;
462 return pkt->handler->prepare(pkt, is_done);
465 const struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler = {
466 .prepare = usbhsf_dcp_data_stage_try_push,
470 * DCP data stage (pop)
472 static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt *pkt,
473 int *is_done)
475 struct usbhs_pipe *pipe = pkt->pipe;
476 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
477 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
479 if (usbhs_pipe_is_busy(pipe))
480 return 0;
483 * prepare pop for DCP should
484 * - change DCP direction,
485 * - clear fifo
486 * - DATA1
488 usbhs_pipe_disable(pipe);
490 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
492 usbhsf_fifo_select(pipe, fifo, 0);
493 usbhsf_fifo_clear(pipe, fifo);
494 usbhsf_fifo_unselect(pipe, fifo);
497 * change handler to PIO pop
499 pkt->handler = &usbhs_fifo_pio_pop_handler;
501 return pkt->handler->prepare(pkt, is_done);
504 const struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler = {
505 .prepare = usbhsf_dcp_data_stage_prepare_pop,
509 * PIO push handler
511 static int usbhsf_pio_try_push(struct usbhs_pkt *pkt, int *is_done)
513 struct usbhs_pipe *pipe = pkt->pipe;
514 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
515 struct device *dev = usbhs_priv_to_dev(priv);
516 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
517 void __iomem *addr = priv->base + fifo->port;
518 u8 *buf;
519 int maxp = usbhs_pipe_get_maxpacket(pipe);
520 int total_len;
521 int i, ret, len;
522 int is_short;
524 usbhs_pipe_data_sequence(pipe, pkt->sequence);
525 pkt->sequence = -1; /* -1 sequence will be ignored */
527 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
529 ret = usbhsf_fifo_select(pipe, fifo, 1);
530 if (ret < 0)
531 return 0;
533 ret = usbhs_pipe_is_accessible(pipe);
534 if (ret < 0) {
535 /* inaccessible pipe is not an error */
536 ret = 0;
537 goto usbhs_fifo_write_busy;
540 ret = usbhsf_fifo_barrier(priv, fifo);
541 if (ret < 0)
542 goto usbhs_fifo_write_busy;
544 buf = pkt->buf + pkt->actual;
545 len = pkt->length - pkt->actual;
546 len = min(len, maxp);
547 total_len = len;
548 is_short = total_len < maxp;
551 * FIXME
553 * 32-bit access only
555 if (len >= 4 && !((unsigned long)buf & 0x03)) {
556 iowrite32_rep(addr, buf, len / 4);
557 len %= 4;
558 buf += total_len - len;
561 /* the rest operation */
562 for (i = 0; i < len; i++)
563 iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
566 * variable update
568 pkt->actual += total_len;
570 if (pkt->actual < pkt->length)
571 *is_done = 0; /* there are remainder data */
572 else if (is_short)
573 *is_done = 1; /* short packet */
574 else
575 *is_done = !pkt->zero; /* send zero packet ? */
578 * pipe/irq handling
580 if (is_short)
581 usbhsf_send_terminator(pipe, fifo);
583 usbhsf_tx_irq_ctrl(pipe, !*is_done);
584 usbhs_pipe_running(pipe, !*is_done);
585 usbhs_pipe_enable(pipe);
587 dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
588 usbhs_pipe_number(pipe),
589 pkt->length, pkt->actual, *is_done, pkt->zero);
591 usbhsf_fifo_unselect(pipe, fifo);
593 return 0;
595 usbhs_fifo_write_busy:
596 usbhsf_fifo_unselect(pipe, fifo);
599 * pipe is busy.
600 * retry in interrupt
602 usbhsf_tx_irq_ctrl(pipe, 1);
603 usbhs_pipe_running(pipe, 1);
605 return ret;
608 static int usbhsf_pio_prepare_push(struct usbhs_pkt *pkt, int *is_done)
610 if (usbhs_pipe_is_running(pkt->pipe))
611 return 0;
613 return usbhsf_pio_try_push(pkt, is_done);
616 const struct usbhs_pkt_handle usbhs_fifo_pio_push_handler = {
617 .prepare = usbhsf_pio_prepare_push,
618 .try_run = usbhsf_pio_try_push,
622 * PIO pop handler
624 static int usbhsf_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
626 struct usbhs_pipe *pipe = pkt->pipe;
627 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
628 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
630 if (usbhs_pipe_is_busy(pipe))
631 return 0;
633 if (usbhs_pipe_is_running(pipe))
634 return 0;
637 * pipe enable to prepare packet receive
639 usbhs_pipe_data_sequence(pipe, pkt->sequence);
640 pkt->sequence = -1; /* -1 sequence will be ignored */
642 if (usbhs_pipe_is_dcp(pipe))
643 usbhsf_fifo_clear(pipe, fifo);
645 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
646 usbhs_pipe_enable(pipe);
647 usbhs_pipe_running(pipe, 1);
648 usbhsf_rx_irq_ctrl(pipe, 1);
650 return 0;
653 static int usbhsf_pio_try_pop(struct usbhs_pkt *pkt, int *is_done)
655 struct usbhs_pipe *pipe = pkt->pipe;
656 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
657 struct device *dev = usbhs_priv_to_dev(priv);
658 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
659 void __iomem *addr = priv->base + fifo->port;
660 u8 *buf;
661 u32 data = 0;
662 int maxp = usbhs_pipe_get_maxpacket(pipe);
663 int rcv_len, len;
664 int i, ret;
665 int total_len = 0;
667 ret = usbhsf_fifo_select(pipe, fifo, 0);
668 if (ret < 0)
669 return 0;
671 ret = usbhsf_fifo_barrier(priv, fifo);
672 if (ret < 0)
673 goto usbhs_fifo_read_busy;
675 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
677 buf = pkt->buf + pkt->actual;
678 len = pkt->length - pkt->actual;
679 len = min(len, rcv_len);
680 total_len = len;
683 * update actual length first here to decide disable pipe.
684 * if this pipe keeps BUF status and all data were popped,
685 * then, next interrupt/token will be issued again
687 pkt->actual += total_len;
689 if ((pkt->actual == pkt->length) || /* receive all data */
690 (total_len < maxp)) { /* short packet */
691 *is_done = 1;
692 usbhsf_rx_irq_ctrl(pipe, 0);
693 usbhs_pipe_running(pipe, 0);
695 * If function mode, since this controller is possible to enter
696 * Control Write status stage at this timing, this driver
697 * should not disable the pipe. If such a case happens, this
698 * controller is not able to complete the status stage.
700 if (!usbhs_mod_is_host(priv) && !usbhs_pipe_is_dcp(pipe))
701 usbhs_pipe_disable(pipe); /* disable pipe first */
705 * Buffer clear if Zero-Length packet
707 * see
708 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
710 if (0 == rcv_len) {
711 pkt->zero = 1;
712 usbhsf_fifo_clear(pipe, fifo);
713 goto usbhs_fifo_read_end;
717 * FIXME
719 * 32-bit access only
721 if (len >= 4 && !((unsigned long)buf & 0x03)) {
722 ioread32_rep(addr, buf, len / 4);
723 len %= 4;
724 buf += total_len - len;
727 /* the rest operation */
728 for (i = 0; i < len; i++) {
729 if (!(i & 0x03))
730 data = ioread32(addr);
732 buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
735 usbhs_fifo_read_end:
736 dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
737 usbhs_pipe_number(pipe),
738 pkt->length, pkt->actual, *is_done, pkt->zero);
740 usbhs_fifo_read_busy:
741 usbhsf_fifo_unselect(pipe, fifo);
743 return ret;
746 const struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler = {
747 .prepare = usbhsf_prepare_pop,
748 .try_run = usbhsf_pio_try_pop,
752 * DCP ctrol statge handler
754 static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt, int *is_done)
756 usbhs_dcp_control_transfer_done(pkt->pipe);
758 *is_done = 1;
760 return 0;
763 const struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
764 .prepare = usbhsf_ctrl_stage_end,
765 .try_run = usbhsf_ctrl_stage_end,
769 * DMA fifo functions
771 static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
772 struct usbhs_pkt *pkt)
774 if (&usbhs_fifo_dma_push_handler == pkt->handler)
775 return fifo->tx_chan;
777 if (&usbhs_fifo_dma_pop_handler == pkt->handler)
778 return fifo->rx_chan;
780 return NULL;
783 static struct usbhs_fifo *usbhsf_get_dma_fifo(struct usbhs_priv *priv,
784 struct usbhs_pkt *pkt)
786 struct usbhs_fifo *fifo;
787 int i;
789 usbhs_for_each_dfifo(priv, fifo, i) {
790 if (usbhsf_dma_chan_get(fifo, pkt) &&
791 !usbhsf_fifo_is_busy(fifo))
792 return fifo;
795 return NULL;
798 #define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
799 #define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
800 static void __usbhsf_dma_ctrl(struct usbhs_pipe *pipe,
801 struct usbhs_fifo *fifo,
802 u16 dreqe)
804 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
806 usbhs_bset(priv, fifo->sel, DREQE, dreqe);
809 static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
811 struct usbhs_pipe *pipe = pkt->pipe;
812 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
813 struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
814 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
815 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
817 return info->dma_map_ctrl(chan->device->dev, pkt, map);
820 static void usbhsf_dma_complete(void *arg);
821 static void xfer_work(struct work_struct *work)
823 struct usbhs_pkt *pkt = container_of(work, struct usbhs_pkt, work);
824 struct usbhs_pipe *pipe = pkt->pipe;
825 struct usbhs_fifo *fifo;
826 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
827 struct dma_async_tx_descriptor *desc;
828 struct dma_chan *chan;
829 struct device *dev = usbhs_priv_to_dev(priv);
830 enum dma_transfer_direction dir;
831 unsigned long flags;
833 usbhs_lock(priv, flags);
834 fifo = usbhs_pipe_to_fifo(pipe);
835 if (!fifo)
836 goto xfer_work_end;
838 chan = usbhsf_dma_chan_get(fifo, pkt);
839 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV;
841 desc = dmaengine_prep_slave_single(chan, pkt->dma + pkt->actual,
842 pkt->trans, dir,
843 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
844 if (!desc)
845 goto xfer_work_end;
847 desc->callback = usbhsf_dma_complete;
848 desc->callback_param = pipe;
850 pkt->cookie = dmaengine_submit(desc);
851 if (pkt->cookie < 0) {
852 dev_err(dev, "Failed to submit dma descriptor\n");
853 goto xfer_work_end;
856 dev_dbg(dev, " %s %d (%d/ %d)\n",
857 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
859 usbhs_pipe_running(pipe, 1);
860 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->trans);
861 dma_async_issue_pending(chan);
862 usbhsf_dma_start(pipe, fifo);
863 usbhs_pipe_enable(pipe);
865 xfer_work_end:
866 usbhs_unlock(priv, flags);
870 * DMA push handler
872 static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
874 struct usbhs_pipe *pipe = pkt->pipe;
875 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
876 struct usbhs_fifo *fifo;
877 int len = pkt->length - pkt->actual;
878 int ret;
879 uintptr_t align_mask;
881 if (usbhs_pipe_is_busy(pipe))
882 return 0;
884 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
885 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
886 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
887 goto usbhsf_pio_prepare_push;
889 /* check data length if this driver don't use USB-DMAC */
890 if (!usbhs_get_dparam(priv, has_usb_dmac) && len & 0x7)
891 goto usbhsf_pio_prepare_push;
893 /* check buffer alignment */
894 align_mask = usbhs_get_dparam(priv, has_usb_dmac) ?
895 USBHS_USB_DMAC_XFER_SIZE - 1 : 0x7;
896 if ((uintptr_t)(pkt->buf + pkt->actual) & align_mask)
897 goto usbhsf_pio_prepare_push;
899 /* return at this time if the pipe is running */
900 if (usbhs_pipe_is_running(pipe))
901 return 0;
903 /* get enable DMA fifo */
904 fifo = usbhsf_get_dma_fifo(priv, pkt);
905 if (!fifo)
906 goto usbhsf_pio_prepare_push;
908 ret = usbhsf_fifo_select(pipe, fifo, 0);
909 if (ret < 0)
910 goto usbhsf_pio_prepare_push;
912 if (usbhsf_dma_map(pkt) < 0)
913 goto usbhsf_pio_prepare_push_unselect;
915 pkt->trans = len;
917 usbhsf_tx_irq_ctrl(pipe, 0);
918 INIT_WORK(&pkt->work, xfer_work);
919 schedule_work(&pkt->work);
921 return 0;
923 usbhsf_pio_prepare_push_unselect:
924 usbhsf_fifo_unselect(pipe, fifo);
925 usbhsf_pio_prepare_push:
927 * change handler to PIO
929 pkt->handler = &usbhs_fifo_pio_push_handler;
931 return pkt->handler->prepare(pkt, is_done);
934 static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
936 struct usbhs_pipe *pipe = pkt->pipe;
937 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe);
939 pkt->actual += pkt->trans;
941 if (pkt->actual < pkt->length)
942 *is_done = 0; /* there are remainder data */
943 else if (is_short)
944 *is_done = 1; /* short packet */
945 else
946 *is_done = !pkt->zero; /* send zero packet? */
948 usbhs_pipe_running(pipe, !*is_done);
950 usbhsf_dma_stop(pipe, pipe->fifo);
951 usbhsf_dma_unmap(pkt);
952 usbhsf_fifo_unselect(pipe, pipe->fifo);
954 if (!*is_done) {
955 /* change handler to PIO */
956 pkt->handler = &usbhs_fifo_pio_push_handler;
957 return pkt->handler->try_run(pkt, is_done);
960 return 0;
963 const struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
964 .prepare = usbhsf_dma_prepare_push,
965 .dma_done = usbhsf_dma_push_done,
969 * DMA pop handler
972 static int usbhsf_dma_prepare_pop_with_rx_irq(struct usbhs_pkt *pkt,
973 int *is_done)
975 return usbhsf_prepare_pop(pkt, is_done);
978 static int usbhsf_dma_prepare_pop_with_usb_dmac(struct usbhs_pkt *pkt,
979 int *is_done)
981 struct usbhs_pipe *pipe = pkt->pipe;
982 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
983 struct usbhs_fifo *fifo;
984 int ret;
986 if (usbhs_pipe_is_busy(pipe))
987 return 0;
989 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
990 if ((pkt->length < usbhs_get_dparam(priv, pio_dma_border)) ||
991 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
992 goto usbhsf_pio_prepare_pop;
994 fifo = usbhsf_get_dma_fifo(priv, pkt);
995 if (!fifo)
996 goto usbhsf_pio_prepare_pop;
998 if ((uintptr_t)pkt->buf & (USBHS_USB_DMAC_XFER_SIZE - 1))
999 goto usbhsf_pio_prepare_pop;
1001 /* return at this time if the pipe is running */
1002 if (usbhs_pipe_is_running(pipe))
1003 return 0;
1005 usbhs_pipe_config_change_bfre(pipe, 1);
1007 ret = usbhsf_fifo_select(pipe, fifo, 0);
1008 if (ret < 0)
1009 goto usbhsf_pio_prepare_pop;
1011 if (usbhsf_dma_map(pkt) < 0)
1012 goto usbhsf_pio_prepare_pop_unselect;
1014 /* DMA */
1017 * usbhs_fifo_dma_pop_handler :: prepare
1018 * enabled irq to come here.
1019 * but it is no longer needed for DMA. disable it.
1021 usbhsf_rx_irq_ctrl(pipe, 0);
1023 pkt->trans = pkt->length;
1025 INIT_WORK(&pkt->work, xfer_work);
1026 schedule_work(&pkt->work);
1028 return 0;
1030 usbhsf_pio_prepare_pop_unselect:
1031 usbhsf_fifo_unselect(pipe, fifo);
1032 usbhsf_pio_prepare_pop:
1035 * change handler to PIO
1037 pkt->handler = &usbhs_fifo_pio_pop_handler;
1038 usbhs_pipe_config_change_bfre(pipe, 0);
1040 return pkt->handler->prepare(pkt, is_done);
1043 static int usbhsf_dma_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
1045 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1047 if (usbhs_get_dparam(priv, has_usb_dmac))
1048 return usbhsf_dma_prepare_pop_with_usb_dmac(pkt, is_done);
1049 else
1050 return usbhsf_dma_prepare_pop_with_rx_irq(pkt, is_done);
1053 static int usbhsf_dma_try_pop_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
1055 struct usbhs_pipe *pipe = pkt->pipe;
1056 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1057 struct usbhs_fifo *fifo;
1058 int len, ret;
1060 if (usbhs_pipe_is_busy(pipe))
1061 return 0;
1063 if (usbhs_pipe_is_dcp(pipe))
1064 goto usbhsf_pio_prepare_pop;
1066 /* get enable DMA fifo */
1067 fifo = usbhsf_get_dma_fifo(priv, pkt);
1068 if (!fifo)
1069 goto usbhsf_pio_prepare_pop;
1071 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
1072 goto usbhsf_pio_prepare_pop;
1074 ret = usbhsf_fifo_select(pipe, fifo, 0);
1075 if (ret < 0)
1076 goto usbhsf_pio_prepare_pop;
1078 /* use PIO if packet is less than pio_dma_border */
1079 len = usbhsf_fifo_rcv_len(priv, fifo);
1080 len = min(pkt->length - pkt->actual, len);
1081 if (len & 0x7) /* 8byte alignment */
1082 goto usbhsf_pio_prepare_pop_unselect;
1084 if (len < usbhs_get_dparam(priv, pio_dma_border))
1085 goto usbhsf_pio_prepare_pop_unselect;
1087 ret = usbhsf_fifo_barrier(priv, fifo);
1088 if (ret < 0)
1089 goto usbhsf_pio_prepare_pop_unselect;
1091 if (usbhsf_dma_map(pkt) < 0)
1092 goto usbhsf_pio_prepare_pop_unselect;
1094 /* DMA */
1097 * usbhs_fifo_dma_pop_handler :: prepare
1098 * enabled irq to come here.
1099 * but it is no longer needed for DMA. disable it.
1101 usbhsf_rx_irq_ctrl(pipe, 0);
1103 pkt->trans = len;
1105 INIT_WORK(&pkt->work, xfer_work);
1106 schedule_work(&pkt->work);
1108 return 0;
1110 usbhsf_pio_prepare_pop_unselect:
1111 usbhsf_fifo_unselect(pipe, fifo);
1112 usbhsf_pio_prepare_pop:
1115 * change handler to PIO
1117 pkt->handler = &usbhs_fifo_pio_pop_handler;
1119 return pkt->handler->try_run(pkt, is_done);
1122 static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
1124 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1126 BUG_ON(usbhs_get_dparam(priv, has_usb_dmac));
1128 return usbhsf_dma_try_pop_with_rx_irq(pkt, is_done);
1131 static int usbhsf_dma_pop_done_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
1133 struct usbhs_pipe *pipe = pkt->pipe;
1134 int maxp = usbhs_pipe_get_maxpacket(pipe);
1136 usbhsf_dma_stop(pipe, pipe->fifo);
1137 usbhsf_dma_unmap(pkt);
1138 usbhsf_fifo_unselect(pipe, pipe->fifo);
1140 pkt->actual += pkt->trans;
1142 if ((pkt->actual == pkt->length) || /* receive all data */
1143 (pkt->trans < maxp)) { /* short packet */
1144 *is_done = 1;
1145 usbhs_pipe_running(pipe, 0);
1146 } else {
1147 /* re-enable */
1148 usbhs_pipe_running(pipe, 0);
1149 usbhsf_prepare_pop(pkt, is_done);
1152 return 0;
1155 static size_t usbhs_dma_calc_received_size(struct usbhs_pkt *pkt,
1156 struct dma_chan *chan, int dtln)
1158 struct usbhs_pipe *pipe = pkt->pipe;
1159 struct dma_tx_state state;
1160 size_t received_size;
1161 int maxp = usbhs_pipe_get_maxpacket(pipe);
1163 dmaengine_tx_status(chan, pkt->cookie, &state);
1164 received_size = pkt->length - state.residue;
1166 if (dtln) {
1167 received_size -= USBHS_USB_DMAC_XFER_SIZE;
1168 received_size &= ~(maxp - 1);
1169 received_size += dtln;
1172 return received_size;
1175 static int usbhsf_dma_pop_done_with_usb_dmac(struct usbhs_pkt *pkt,
1176 int *is_done)
1178 struct usbhs_pipe *pipe = pkt->pipe;
1179 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1180 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
1181 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
1182 int rcv_len;
1185 * Since the driver disables rx_irq in DMA mode, the interrupt handler
1186 * cannot the BRDYSTS. So, the function clears it here because the
1187 * driver may use PIO mode next time.
1189 usbhs_xxxsts_clear(priv, BRDYSTS, usbhs_pipe_number(pipe));
1191 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
1192 usbhsf_fifo_clear(pipe, fifo);
1193 pkt->actual = usbhs_dma_calc_received_size(pkt, chan, rcv_len);
1195 usbhs_pipe_running(pipe, 0);
1196 usbhsf_dma_stop(pipe, fifo);
1197 usbhsf_dma_unmap(pkt);
1198 usbhsf_fifo_unselect(pipe, pipe->fifo);
1200 /* The driver can assume the rx transaction is always "done" */
1201 *is_done = 1;
1203 return 0;
1206 static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
1208 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1210 if (usbhs_get_dparam(priv, has_usb_dmac))
1211 return usbhsf_dma_pop_done_with_usb_dmac(pkt, is_done);
1212 else
1213 return usbhsf_dma_pop_done_with_rx_irq(pkt, is_done);
1216 const struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
1217 .prepare = usbhsf_dma_prepare_pop,
1218 .try_run = usbhsf_dma_try_pop,
1219 .dma_done = usbhsf_dma_pop_done
1223 * DMA setting
1225 static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
1227 struct sh_dmae_slave *slave = param;
1230 * FIXME
1232 * usbhs doesn't recognize id = 0 as valid DMA
1234 if (0 == slave->shdma_slave.slave_id)
1235 return false;
1237 chan->private = slave;
1239 return true;
1242 static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1244 if (fifo->tx_chan)
1245 dma_release_channel(fifo->tx_chan);
1246 if (fifo->rx_chan)
1247 dma_release_channel(fifo->rx_chan);
1249 fifo->tx_chan = NULL;
1250 fifo->rx_chan = NULL;
1253 static void usbhsf_dma_init_pdev(struct usbhs_fifo *fifo)
1255 dma_cap_mask_t mask;
1257 dma_cap_zero(mask);
1258 dma_cap_set(DMA_SLAVE, mask);
1259 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1260 &fifo->tx_slave);
1262 dma_cap_zero(mask);
1263 dma_cap_set(DMA_SLAVE, mask);
1264 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1265 &fifo->rx_slave);
1268 static void usbhsf_dma_init_dt(struct device *dev, struct usbhs_fifo *fifo,
1269 int channel)
1271 char name[16];
1274 * To avoid complex handing for DnFIFOs, the driver uses each
1275 * DnFIFO as TX or RX direction (not bi-direction).
1276 * So, the driver uses odd channels for TX, even channels for RX.
1278 snprintf(name, sizeof(name), "ch%d", channel);
1279 if (channel & 1) {
1280 fifo->tx_chan = dma_request_slave_channel_reason(dev, name);
1281 if (IS_ERR(fifo->tx_chan))
1282 fifo->tx_chan = NULL;
1283 } else {
1284 fifo->rx_chan = dma_request_slave_channel_reason(dev, name);
1285 if (IS_ERR(fifo->rx_chan))
1286 fifo->rx_chan = NULL;
1290 static void usbhsf_dma_init(struct usbhs_priv *priv, struct usbhs_fifo *fifo,
1291 int channel)
1293 struct device *dev = usbhs_priv_to_dev(priv);
1295 if (dev->of_node)
1296 usbhsf_dma_init_dt(dev, fifo, channel);
1297 else
1298 usbhsf_dma_init_pdev(fifo);
1300 if (fifo->tx_chan || fifo->rx_chan)
1301 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
1302 fifo->name,
1303 fifo->tx_chan ? "[TX]" : " ",
1304 fifo->rx_chan ? "[RX]" : " ");
1308 * irq functions
1310 static int usbhsf_irq_empty(struct usbhs_priv *priv,
1311 struct usbhs_irq_state *irq_state)
1313 struct usbhs_pipe *pipe;
1314 struct device *dev = usbhs_priv_to_dev(priv);
1315 int i, ret;
1317 if (!irq_state->bempsts) {
1318 dev_err(dev, "debug %s !!\n", __func__);
1319 return -EIO;
1322 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1325 * search interrupted "pipe"
1326 * not "uep".
1328 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1329 if (!(irq_state->bempsts & (1 << i)))
1330 continue;
1332 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
1333 if (ret < 0)
1334 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1337 return 0;
1340 static int usbhsf_irq_ready(struct usbhs_priv *priv,
1341 struct usbhs_irq_state *irq_state)
1343 struct usbhs_pipe *pipe;
1344 struct device *dev = usbhs_priv_to_dev(priv);
1345 int i, ret;
1347 if (!irq_state->brdysts) {
1348 dev_err(dev, "debug %s !!\n", __func__);
1349 return -EIO;
1352 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1355 * search interrupted "pipe"
1356 * not "uep".
1358 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1359 if (!(irq_state->brdysts & (1 << i)))
1360 continue;
1362 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
1363 if (ret < 0)
1364 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1367 return 0;
1370 static void usbhsf_dma_complete(void *arg)
1372 struct usbhs_pipe *pipe = arg;
1373 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1374 struct device *dev = usbhs_priv_to_dev(priv);
1375 int ret;
1377 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
1378 if (ret < 0)
1379 dev_err(dev, "dma_complete run_error %d : %d\n",
1380 usbhs_pipe_number(pipe), ret);
1383 void usbhs_fifo_clear_dcp(struct usbhs_pipe *pipe)
1385 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1386 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
1388 /* clear DCP FIFO of transmission */
1389 if (usbhsf_fifo_select(pipe, fifo, 1) < 0)
1390 return;
1391 usbhsf_fifo_clear(pipe, fifo);
1392 usbhsf_fifo_unselect(pipe, fifo);
1394 /* clear DCP FIFO of reception */
1395 if (usbhsf_fifo_select(pipe, fifo, 0) < 0)
1396 return;
1397 usbhsf_fifo_clear(pipe, fifo);
1398 usbhsf_fifo_unselect(pipe, fifo);
1402 * fifo init
1404 void usbhs_fifo_init(struct usbhs_priv *priv)
1406 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1407 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
1408 struct usbhs_fifo *dfifo;
1409 int i;
1411 mod->irq_empty = usbhsf_irq_empty;
1412 mod->irq_ready = usbhsf_irq_ready;
1413 mod->irq_bempsts = 0;
1414 mod->irq_brdysts = 0;
1416 cfifo->pipe = NULL;
1417 usbhs_for_each_dfifo(priv, dfifo, i)
1418 dfifo->pipe = NULL;
1421 void usbhs_fifo_quit(struct usbhs_priv *priv)
1423 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1425 mod->irq_empty = NULL;
1426 mod->irq_ready = NULL;
1427 mod->irq_bempsts = 0;
1428 mod->irq_brdysts = 0;
1431 #define __USBHS_DFIFO_INIT(priv, fifo, channel, fifo_port) \
1432 do { \
1433 fifo = usbhsf_get_dnfifo(priv, channel); \
1434 fifo->name = "D"#channel"FIFO"; \
1435 fifo->port = fifo_port; \
1436 fifo->sel = D##channel##FIFOSEL; \
1437 fifo->ctr = D##channel##FIFOCTR; \
1438 fifo->tx_slave.shdma_slave.slave_id = \
1439 usbhs_get_dparam(priv, d##channel##_tx_id); \
1440 fifo->rx_slave.shdma_slave.slave_id = \
1441 usbhs_get_dparam(priv, d##channel##_rx_id); \
1442 usbhsf_dma_init(priv, fifo, channel); \
1443 } while (0)
1445 #define USBHS_DFIFO_INIT(priv, fifo, channel) \
1446 __USBHS_DFIFO_INIT(priv, fifo, channel, D##channel##FIFO)
1447 #define USBHS_DFIFO_INIT_NO_PORT(priv, fifo, channel) \
1448 __USBHS_DFIFO_INIT(priv, fifo, channel, 0)
1450 int usbhs_fifo_probe(struct usbhs_priv *priv)
1452 struct usbhs_fifo *fifo;
1454 /* CFIFO */
1455 fifo = usbhsf_get_cfifo(priv);
1456 fifo->name = "CFIFO";
1457 fifo->port = CFIFO;
1458 fifo->sel = CFIFOSEL;
1459 fifo->ctr = CFIFOCTR;
1461 /* DFIFO */
1462 USBHS_DFIFO_INIT(priv, fifo, 0);
1463 USBHS_DFIFO_INIT(priv, fifo, 1);
1464 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 2);
1465 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 3);
1467 return 0;
1470 void usbhs_fifo_remove(struct usbhs_priv *priv)
1472 struct usbhs_fifo *fifo;
1473 int i;
1475 usbhs_for_each_dfifo(priv, fifo, i)
1476 usbhsf_dma_quit(priv, fifo);