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>
19 #include <linux/scatterlist.h>
23 #define usbhsf_get_cfifo(p) (&((p)->fifo_info.cfifo))
24 #define usbhsf_get_d0fifo(p) (&((p)->fifo_info.d0fifo))
25 #define usbhsf_get_d1fifo(p) (&((p)->fifo_info.d1fifo))
27 #define usbhsf_fifo_is_busy(f) ((f)->pipe) /* see usbhs_pipe_select_fifo */
32 void usbhs_pkt_init(struct usbhs_pkt
*pkt
)
34 pkt
->dma
= DMA_ADDR_INVALID
;
35 INIT_LIST_HEAD(&pkt
->node
);
39 * packet control function
41 static int usbhsf_null_handle(struct usbhs_pkt
*pkt
, int *is_done
)
43 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pkt
->pipe
);
44 struct device
*dev
= usbhs_priv_to_dev(priv
);
46 dev_err(dev
, "null handler\n");
51 static struct usbhs_pkt_handle usbhsf_null_handler
= {
52 .prepare
= usbhsf_null_handle
,
53 .try_run
= usbhsf_null_handle
,
56 void usbhs_pkt_push(struct usbhs_pipe
*pipe
, struct usbhs_pkt
*pkt
,
57 void (*done
)(struct usbhs_priv
*priv
,
58 struct usbhs_pkt
*pkt
),
59 void *buf
, int len
, int zero
, int sequence
)
61 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
62 struct device
*dev
= usbhs_priv_to_dev(priv
);
66 dev_err(dev
, "no done function\n");
70 /******************** spin lock ********************/
71 usbhs_lock(priv
, flags
);
74 dev_err(dev
, "no handler function\n");
75 pipe
->handler
= &usbhsf_null_handler
;
78 list_del_init(&pkt
->node
);
79 list_add_tail(&pkt
->node
, &pipe
->list
);
82 * each pkt must hold own handler.
83 * because handler might be changed by its situation.
84 * dma handler -> pio handler.
88 pkt
->handler
= pipe
->handler
;
93 pkt
->sequence
= sequence
;
95 usbhs_unlock(priv
, flags
);
96 /******************** spin unlock ******************/
99 static void __usbhsf_pkt_del(struct usbhs_pkt
*pkt
)
101 list_del_init(&pkt
->node
);
104 static struct usbhs_pkt
*__usbhsf_pkt_get(struct usbhs_pipe
*pipe
)
106 if (list_empty(&pipe
->list
))
109 return list_entry(pipe
->list
.next
, struct usbhs_pkt
, node
);
112 struct usbhs_pkt
*usbhs_pkt_pop(struct usbhs_pipe
*pipe
, struct usbhs_pkt
*pkt
)
114 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
117 /******************** spin lock ********************/
118 usbhs_lock(priv
, flags
);
121 pkt
= __usbhsf_pkt_get(pipe
);
124 __usbhsf_pkt_del(pkt
);
126 usbhs_unlock(priv
, flags
);
127 /******************** spin unlock ******************/
138 static int usbhsf_pkt_handler(struct usbhs_pipe
*pipe
, int type
)
140 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
141 struct usbhs_pkt
*pkt
;
142 struct device
*dev
= usbhs_priv_to_dev(priv
);
143 int (*func
)(struct usbhs_pkt
*pkt
, int *is_done
);
148 /******************** spin lock ********************/
149 usbhs_lock(priv
, flags
);
151 pkt
= __usbhsf_pkt_get(pipe
);
153 goto __usbhs_pkt_handler_end
;
156 case USBHSF_PKT_PREPARE
:
157 func
= pkt
->handler
->prepare
;
159 case USBHSF_PKT_TRY_RUN
:
160 func
= pkt
->handler
->try_run
;
162 case USBHSF_PKT_DMA_DONE
:
163 func
= pkt
->handler
->dma_done
;
166 dev_err(dev
, "unknown pkt hander\n");
167 goto __usbhs_pkt_handler_end
;
170 ret
= func(pkt
, &is_done
);
173 __usbhsf_pkt_del(pkt
);
175 __usbhs_pkt_handler_end
:
176 usbhs_unlock(priv
, flags
);
177 /******************** spin unlock ******************/
180 pkt
->done(priv
, pkt
);
181 usbhs_pkt_start(pipe
);
187 void usbhs_pkt_start(struct usbhs_pipe
*pipe
)
189 usbhsf_pkt_handler(pipe
, USBHSF_PKT_PREPARE
);
193 * irq enable/disable function
195 #define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, bempsts, e)
196 #define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, brdysts, e)
197 #define usbhsf_irq_callback_ctrl(pipe, status, enable) \
199 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
200 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
201 u16 status = (1 << usbhs_pipe_number(pipe)); \
205 mod->irq_##status |= status; \
207 mod->irq_##status &= ~status; \
208 usbhs_irq_callback_update(priv, mod); \
211 static void usbhsf_tx_irq_ctrl(struct usbhs_pipe
*pipe
, int enable
)
214 * And DCP pipe can NOT use "ready interrupt" for "send"
215 * it should use "empty" interrupt.
217 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
219 * on the other hand, normal pipe can use "ready interrupt" for "send"
220 * even though it is single/double buffer
222 if (usbhs_pipe_is_dcp(pipe
))
223 usbhsf_irq_empty_ctrl(pipe
, enable
);
225 usbhsf_irq_ready_ctrl(pipe
, enable
);
228 static void usbhsf_rx_irq_ctrl(struct usbhs_pipe
*pipe
, int enable
)
230 usbhsf_irq_ready_ctrl(pipe
, enable
);
236 static void usbhsf_send_terminator(struct usbhs_pipe
*pipe
,
237 struct usbhs_fifo
*fifo
)
239 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
241 usbhs_bset(priv
, fifo
->ctr
, BVAL
, BVAL
);
244 static int usbhsf_fifo_barrier(struct usbhs_priv
*priv
,
245 struct usbhs_fifo
*fifo
)
250 /* The FIFO port is accessible */
251 if (usbhs_read(priv
, fifo
->ctr
) & FRDY
)
260 static void usbhsf_fifo_clear(struct usbhs_pipe
*pipe
,
261 struct usbhs_fifo
*fifo
)
263 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
265 if (!usbhs_pipe_is_dcp(pipe
))
266 usbhsf_fifo_barrier(priv
, fifo
);
268 usbhs_write(priv
, fifo
->ctr
, BCLR
);
271 static int usbhsf_fifo_rcv_len(struct usbhs_priv
*priv
,
272 struct usbhs_fifo
*fifo
)
274 return usbhs_read(priv
, fifo
->ctr
) & DTLN_MASK
;
277 static void usbhsf_fifo_unselect(struct usbhs_pipe
*pipe
,
278 struct usbhs_fifo
*fifo
)
280 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
282 usbhs_pipe_select_fifo(pipe
, NULL
);
283 usbhs_write(priv
, fifo
->sel
, 0);
286 static int usbhsf_fifo_select(struct usbhs_pipe
*pipe
,
287 struct usbhs_fifo
*fifo
,
290 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
291 struct device
*dev
= usbhs_priv_to_dev(priv
);
293 u16 mask
= ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
294 u16 base
= usbhs_pipe_number(pipe
); /* CURPIPE */
296 if (usbhs_pipe_is_busy(pipe
) ||
297 usbhsf_fifo_is_busy(fifo
))
300 if (usbhs_pipe_is_dcp(pipe
)) {
301 base
|= (1 == write
) << 5; /* ISEL */
303 if (usbhs_mod_is_host(priv
))
304 usbhs_dcp_dir_for_host(pipe
, write
);
307 /* "base" will be used below */
308 usbhs_write(priv
, fifo
->sel
, base
| MBW_32
);
310 /* check ISEL and CURPIPE value */
312 if (base
== (mask
& usbhs_read(priv
, fifo
->sel
))) {
313 usbhs_pipe_select_fifo(pipe
, fifo
);
319 dev_err(dev
, "fifo select error\n");
327 static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt
*pkt
, int *is_done
)
329 struct usbhs_pipe
*pipe
= pkt
->pipe
;
330 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
331 struct usbhs_fifo
*fifo
= usbhsf_get_cfifo(priv
); /* CFIFO */
332 struct device
*dev
= usbhs_priv_to_dev(priv
);
335 usbhs_pipe_disable(pipe
);
337 ret
= usbhsf_fifo_select(pipe
, fifo
, 1);
339 dev_err(dev
, "%s() faile\n", __func__
);
343 usbhs_pipe_sequence_data1(pipe
); /* DATA1 */
345 usbhsf_fifo_clear(pipe
, fifo
);
346 usbhsf_send_terminator(pipe
, fifo
);
348 usbhsf_fifo_unselect(pipe
, fifo
);
350 usbhsf_tx_irq_ctrl(pipe
, 1);
351 usbhs_pipe_enable(pipe
);
356 static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt
*pkt
, int *is_done
)
358 struct usbhs_pipe
*pipe
= pkt
->pipe
;
359 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
360 struct usbhs_fifo
*fifo
= usbhsf_get_cfifo(priv
); /* CFIFO */
361 struct device
*dev
= usbhs_priv_to_dev(priv
);
364 usbhs_pipe_disable(pipe
);
366 ret
= usbhsf_fifo_select(pipe
, fifo
, 0);
368 dev_err(dev
, "%s() fail\n", __func__
);
372 usbhs_pipe_sequence_data1(pipe
); /* DATA1 */
373 usbhsf_fifo_clear(pipe
, fifo
);
375 usbhsf_fifo_unselect(pipe
, fifo
);
377 usbhsf_rx_irq_ctrl(pipe
, 1);
378 usbhs_pipe_enable(pipe
);
384 static int usbhs_dcp_dir_switch_done(struct usbhs_pkt
*pkt
, int *is_done
)
386 struct usbhs_pipe
*pipe
= pkt
->pipe
;
388 if (pkt
->handler
== &usbhs_dcp_status_stage_in_handler
)
389 usbhsf_tx_irq_ctrl(pipe
, 0);
391 usbhsf_rx_irq_ctrl(pipe
, 0);
393 pkt
->actual
= pkt
->length
;
399 struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler
= {
400 .prepare
= usbhs_dcp_dir_switch_to_write
,
401 .try_run
= usbhs_dcp_dir_switch_done
,
404 struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler
= {
405 .prepare
= usbhs_dcp_dir_switch_to_read
,
406 .try_run
= usbhs_dcp_dir_switch_done
,
410 * DCP data stage (push)
412 static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt
*pkt
, int *is_done
)
414 struct usbhs_pipe
*pipe
= pkt
->pipe
;
416 usbhs_pipe_sequence_data1(pipe
); /* DATA1 */
419 * change handler to PIO push
421 pkt
->handler
= &usbhs_fifo_pio_push_handler
;
423 return pkt
->handler
->prepare(pkt
, is_done
);
426 struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler
= {
427 .prepare
= usbhsf_dcp_data_stage_try_push
,
431 * DCP data stage (pop)
433 static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt
*pkt
,
436 struct usbhs_pipe
*pipe
= pkt
->pipe
;
437 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
438 struct usbhs_fifo
*fifo
= usbhsf_get_cfifo(priv
);
440 if (usbhs_pipe_is_busy(pipe
))
444 * prepare pop for DCP should
445 * - change DCP direction,
449 usbhs_pipe_disable(pipe
);
451 usbhs_pipe_sequence_data1(pipe
); /* DATA1 */
453 usbhsf_fifo_select(pipe
, fifo
, 0);
454 usbhsf_fifo_clear(pipe
, fifo
);
455 usbhsf_fifo_unselect(pipe
, fifo
);
458 * change handler to PIO pop
460 pkt
->handler
= &usbhs_fifo_pio_pop_handler
;
462 return pkt
->handler
->prepare(pkt
, is_done
);
465 struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler
= {
466 .prepare
= usbhsf_dcp_data_stage_prepare_pop
,
472 static int usbhsf_pio_try_push(struct usbhs_pkt
*pkt
, int *is_done
)
474 struct usbhs_pipe
*pipe
= pkt
->pipe
;
475 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
476 struct device
*dev
= usbhs_priv_to_dev(priv
);
477 struct usbhs_fifo
*fifo
= usbhsf_get_cfifo(priv
); /* CFIFO */
478 void __iomem
*addr
= priv
->base
+ fifo
->port
;
480 int maxp
= usbhs_pipe_get_maxpacket(pipe
);
485 usbhs_pipe_data_sequence(pipe
, pkt
->sequence
);
486 pkt
->sequence
= -1; /* -1 sequence will be ignored */
488 ret
= usbhsf_fifo_select(pipe
, fifo
, 1);
492 ret
= usbhs_pipe_is_accessible(pipe
);
494 /* inaccessible pipe is not an error */
496 goto usbhs_fifo_write_busy
;
499 ret
= usbhsf_fifo_barrier(priv
, fifo
);
501 goto usbhs_fifo_write_busy
;
503 buf
= pkt
->buf
+ pkt
->actual
;
504 len
= pkt
->length
- pkt
->actual
;
505 len
= min(len
, maxp
);
507 is_short
= total_len
< maxp
;
514 if (len
>= 4 && !((unsigned long)buf
& 0x03)) {
515 iowrite32_rep(addr
, buf
, len
/ 4);
517 buf
+= total_len
- len
;
520 /* the rest operation */
521 for (i
= 0; i
< len
; i
++)
522 iowrite8(buf
[i
], addr
+ (0x03 - (i
& 0x03)));
527 pkt
->actual
+= total_len
;
529 if (pkt
->actual
< pkt
->length
)
530 *is_done
= 0; /* there are remainder data */
532 *is_done
= 1; /* short packet */
534 *is_done
= !pkt
->zero
; /* send zero packet ? */
540 usbhsf_send_terminator(pipe
, fifo
);
542 usbhsf_tx_irq_ctrl(pipe
, !*is_done
);
543 usbhs_pipe_enable(pipe
);
545 dev_dbg(dev
, " send %d (%d/ %d/ %d/ %d)\n",
546 usbhs_pipe_number(pipe
),
547 pkt
->length
, pkt
->actual
, *is_done
, pkt
->zero
);
553 if (usbhs_pipe_is_dcp(pipe
))
554 usbhs_dcp_control_transfer_done(pipe
);
557 usbhsf_fifo_unselect(pipe
, fifo
);
561 usbhs_fifo_write_busy
:
562 usbhsf_fifo_unselect(pipe
, fifo
);
568 usbhsf_tx_irq_ctrl(pipe
, 1);
573 struct usbhs_pkt_handle usbhs_fifo_pio_push_handler
= {
574 .prepare
= usbhsf_pio_try_push
,
575 .try_run
= usbhsf_pio_try_push
,
581 static int usbhsf_prepare_pop(struct usbhs_pkt
*pkt
, int *is_done
)
583 struct usbhs_pipe
*pipe
= pkt
->pipe
;
585 if (usbhs_pipe_is_busy(pipe
))
589 * pipe enable to prepare packet receive
591 usbhs_pipe_data_sequence(pipe
, pkt
->sequence
);
592 pkt
->sequence
= -1; /* -1 sequence will be ignored */
594 usbhs_pipe_enable(pipe
);
595 usbhsf_rx_irq_ctrl(pipe
, 1);
600 static int usbhsf_pio_try_pop(struct usbhs_pkt
*pkt
, int *is_done
)
602 struct usbhs_pipe
*pipe
= pkt
->pipe
;
603 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
604 struct device
*dev
= usbhs_priv_to_dev(priv
);
605 struct usbhs_fifo
*fifo
= usbhsf_get_cfifo(priv
); /* CFIFO */
606 void __iomem
*addr
= priv
->base
+ fifo
->port
;
609 int maxp
= usbhs_pipe_get_maxpacket(pipe
);
614 ret
= usbhsf_fifo_select(pipe
, fifo
, 0);
618 ret
= usbhsf_fifo_barrier(priv
, fifo
);
620 goto usbhs_fifo_read_busy
;
622 rcv_len
= usbhsf_fifo_rcv_len(priv
, fifo
);
624 buf
= pkt
->buf
+ pkt
->actual
;
625 len
= pkt
->length
- pkt
->actual
;
626 len
= min(len
, rcv_len
);
630 * update actual length first here to decide disable pipe.
631 * if this pipe keeps BUF status and all data were popped,
632 * then, next interrupt/token will be issued again
634 pkt
->actual
+= total_len
;
636 if ((pkt
->actual
== pkt
->length
) || /* receive all data */
637 (total_len
< maxp
)) { /* short packet */
639 usbhsf_rx_irq_ctrl(pipe
, 0);
640 usbhs_pipe_disable(pipe
); /* disable pipe first */
644 * Buffer clear if Zero-Length packet
647 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
651 usbhsf_fifo_clear(pipe
, fifo
);
652 goto usbhs_fifo_read_end
;
660 if (len
>= 4 && !((unsigned long)buf
& 0x03)) {
661 ioread32_rep(addr
, buf
, len
/ 4);
663 buf
+= total_len
- len
;
666 /* the rest operation */
667 for (i
= 0; i
< len
; i
++) {
669 data
= ioread32(addr
);
671 buf
[i
] = (data
>> ((i
& 0x03) * 8)) & 0xff;
675 dev_dbg(dev
, " recv %d (%d/ %d/ %d/ %d)\n",
676 usbhs_pipe_number(pipe
),
677 pkt
->length
, pkt
->actual
, *is_done
, pkt
->zero
);
679 usbhs_fifo_read_busy
:
680 usbhsf_fifo_unselect(pipe
, fifo
);
685 struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler
= {
686 .prepare
= usbhsf_prepare_pop
,
687 .try_run
= usbhsf_pio_try_pop
,
691 * DCP ctrol statge handler
693 static int usbhsf_ctrl_stage_end(struct usbhs_pkt
*pkt
, int *is_done
)
695 usbhs_dcp_control_transfer_done(pkt
->pipe
);
702 struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler
= {
703 .prepare
= usbhsf_ctrl_stage_end
,
704 .try_run
= usbhsf_ctrl_stage_end
,
710 static struct dma_chan
*usbhsf_dma_chan_get(struct usbhs_fifo
*fifo
,
711 struct usbhs_pkt
*pkt
)
713 if (&usbhs_fifo_dma_push_handler
== pkt
->handler
)
714 return fifo
->tx_chan
;
716 if (&usbhs_fifo_dma_pop_handler
== pkt
->handler
)
717 return fifo
->rx_chan
;
722 static struct usbhs_fifo
*usbhsf_get_dma_fifo(struct usbhs_priv
*priv
,
723 struct usbhs_pkt
*pkt
)
725 struct usbhs_fifo
*fifo
;
728 fifo
= usbhsf_get_d0fifo(priv
);
729 if (usbhsf_dma_chan_get(fifo
, pkt
) &&
730 !usbhsf_fifo_is_busy(fifo
))
734 fifo
= usbhsf_get_d1fifo(priv
);
735 if (usbhsf_dma_chan_get(fifo
, pkt
) &&
736 !usbhsf_fifo_is_busy(fifo
))
742 #define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
743 #define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
744 static void __usbhsf_dma_ctrl(struct usbhs_pipe
*pipe
,
745 struct usbhs_fifo
*fifo
,
748 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
750 usbhs_bset(priv
, fifo
->sel
, DREQE
, dreqe
);
753 #define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
754 #define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
755 static int __usbhsf_dma_map_ctrl(struct usbhs_pkt
*pkt
, int map
)
757 struct usbhs_pipe
*pipe
= pkt
->pipe
;
758 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
759 struct usbhs_pipe_info
*info
= usbhs_priv_to_pipeinfo(priv
);
761 return info
->dma_map_ctrl(pkt
, map
);
764 static void usbhsf_dma_complete(void *arg
);
765 static void usbhsf_dma_prepare_tasklet(unsigned long data
)
767 struct usbhs_pkt
*pkt
= (struct usbhs_pkt
*)data
;
768 struct usbhs_pipe
*pipe
= pkt
->pipe
;
769 struct usbhs_fifo
*fifo
= usbhs_pipe_to_fifo(pipe
);
770 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
771 struct scatterlist sg
;
772 struct dma_async_tx_descriptor
*desc
;
773 struct dma_chan
*chan
= usbhsf_dma_chan_get(fifo
, pkt
);
774 struct device
*dev
= usbhs_priv_to_dev(priv
);
775 enum dma_transfer_direction dir
;
778 dir
= usbhs_pipe_is_dir_in(pipe
) ? DMA_DEV_TO_MEM
: DMA_MEM_TO_DEV
;
780 sg_init_table(&sg
, 1);
781 sg_set_page(&sg
, virt_to_page(pkt
->dma
),
782 pkt
->length
, offset_in_page(pkt
->dma
));
783 sg_dma_address(&sg
) = pkt
->dma
+ pkt
->actual
;
784 sg_dma_len(&sg
) = pkt
->trans
;
786 desc
= chan
->device
->device_prep_slave_sg(chan
, &sg
, 1, dir
,
792 desc
->callback
= usbhsf_dma_complete
;
793 desc
->callback_param
= pipe
;
795 cookie
= desc
->tx_submit(desc
);
797 dev_err(dev
, "Failed to submit dma descriptor\n");
801 dev_dbg(dev
, " %s %d (%d/ %d)\n",
802 fifo
->name
, usbhs_pipe_number(pipe
), pkt
->length
, pkt
->zero
);
804 usbhsf_dma_start(pipe
, fifo
);
805 dma_async_issue_pending(chan
);
811 static int usbhsf_dma_prepare_push(struct usbhs_pkt
*pkt
, int *is_done
)
813 struct usbhs_pipe
*pipe
= pkt
->pipe
;
814 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
815 struct usbhs_fifo
*fifo
;
816 int len
= pkt
->length
- pkt
->actual
;
819 if (usbhs_pipe_is_busy(pipe
))
822 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
823 if ((len
< usbhs_get_dparam(priv
, pio_dma_border
)) ||
824 usbhs_pipe_is_dcp(pipe
))
825 goto usbhsf_pio_prepare_push
;
827 if (len
% 4) /* 32bit alignment */
828 goto usbhsf_pio_prepare_push
;
830 if ((uintptr_t)(pkt
->buf
+ pkt
->actual
) & 0x7) /* 8byte alignment */
831 goto usbhsf_pio_prepare_push
;
833 /* get enable DMA fifo */
834 fifo
= usbhsf_get_dma_fifo(priv
, pkt
);
836 goto usbhsf_pio_prepare_push
;
838 if (usbhsf_dma_map(pkt
) < 0)
839 goto usbhsf_pio_prepare_push
;
841 ret
= usbhsf_fifo_select(pipe
, fifo
, 0);
843 goto usbhsf_pio_prepare_push_unmap
;
847 tasklet_init(&fifo
->tasklet
,
848 usbhsf_dma_prepare_tasklet
,
851 tasklet_schedule(&fifo
->tasklet
);
855 usbhsf_pio_prepare_push_unmap
:
856 usbhsf_dma_unmap(pkt
);
857 usbhsf_pio_prepare_push
:
859 * change handler to PIO
861 pkt
->handler
= &usbhs_fifo_pio_push_handler
;
863 return pkt
->handler
->prepare(pkt
, is_done
);
866 static int usbhsf_dma_push_done(struct usbhs_pkt
*pkt
, int *is_done
)
868 struct usbhs_pipe
*pipe
= pkt
->pipe
;
870 pkt
->actual
= pkt
->trans
;
872 *is_done
= !pkt
->zero
; /* send zero packet ? */
874 usbhsf_dma_stop(pipe
, pipe
->fifo
);
875 usbhsf_dma_unmap(pkt
);
876 usbhsf_fifo_unselect(pipe
, pipe
->fifo
);
881 struct usbhs_pkt_handle usbhs_fifo_dma_push_handler
= {
882 .prepare
= usbhsf_dma_prepare_push
,
883 .dma_done
= usbhsf_dma_push_done
,
889 static int usbhsf_dma_try_pop(struct usbhs_pkt
*pkt
, int *is_done
)
891 struct usbhs_pipe
*pipe
= pkt
->pipe
;
892 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
893 struct usbhs_fifo
*fifo
;
896 if (usbhs_pipe_is_busy(pipe
))
899 if (usbhs_pipe_is_dcp(pipe
))
900 goto usbhsf_pio_prepare_pop
;
902 /* get enable DMA fifo */
903 fifo
= usbhsf_get_dma_fifo(priv
, pkt
);
905 goto usbhsf_pio_prepare_pop
;
907 if ((uintptr_t)(pkt
->buf
+ pkt
->actual
) & 0x7) /* 8byte alignment */
908 goto usbhsf_pio_prepare_pop
;
910 ret
= usbhsf_fifo_select(pipe
, fifo
, 0);
912 goto usbhsf_pio_prepare_pop
;
914 /* use PIO if packet is less than pio_dma_border */
915 len
= usbhsf_fifo_rcv_len(priv
, fifo
);
916 len
= min(pkt
->length
- pkt
->actual
, len
);
917 if (len
% 4) /* 32bit alignment */
918 goto usbhsf_pio_prepare_pop_unselect
;
920 if (len
< usbhs_get_dparam(priv
, pio_dma_border
))
921 goto usbhsf_pio_prepare_pop_unselect
;
923 ret
= usbhsf_fifo_barrier(priv
, fifo
);
925 goto usbhsf_pio_prepare_pop_unselect
;
927 if (usbhsf_dma_map(pkt
) < 0)
928 goto usbhsf_pio_prepare_pop_unselect
;
933 * usbhs_fifo_dma_pop_handler :: prepare
934 * enabled irq to come here.
935 * but it is no longer needed for DMA. disable it.
937 usbhsf_rx_irq_ctrl(pipe
, 0);
941 tasklet_init(&fifo
->tasklet
,
942 usbhsf_dma_prepare_tasklet
,
945 tasklet_schedule(&fifo
->tasklet
);
949 usbhsf_pio_prepare_pop_unselect
:
950 usbhsf_fifo_unselect(pipe
, fifo
);
951 usbhsf_pio_prepare_pop
:
954 * change handler to PIO
956 pkt
->handler
= &usbhs_fifo_pio_pop_handler
;
958 return pkt
->handler
->try_run(pkt
, is_done
);
961 static int usbhsf_dma_pop_done(struct usbhs_pkt
*pkt
, int *is_done
)
963 struct usbhs_pipe
*pipe
= pkt
->pipe
;
964 int maxp
= usbhs_pipe_get_maxpacket(pipe
);
966 usbhsf_dma_stop(pipe
, pipe
->fifo
);
967 usbhsf_dma_unmap(pkt
);
968 usbhsf_fifo_unselect(pipe
, pipe
->fifo
);
970 pkt
->actual
+= pkt
->trans
;
972 if ((pkt
->actual
== pkt
->length
) || /* receive all data */
973 (pkt
->trans
< maxp
)) { /* short packet */
977 usbhsf_prepare_pop(pkt
, is_done
);
983 struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler
= {
984 .prepare
= usbhsf_prepare_pop
,
985 .try_run
= usbhsf_dma_try_pop
,
986 .dma_done
= usbhsf_dma_pop_done
992 static bool usbhsf_dma_filter(struct dma_chan
*chan
, void *param
)
994 struct sh_dmae_slave
*slave
= param
;
999 * usbhs doesn't recognize id = 0 as valid DMA
1001 if (0 == slave
->slave_id
)
1004 chan
->private = slave
;
1009 static void usbhsf_dma_quit(struct usbhs_priv
*priv
, struct usbhs_fifo
*fifo
)
1012 dma_release_channel(fifo
->tx_chan
);
1014 dma_release_channel(fifo
->rx_chan
);
1016 fifo
->tx_chan
= NULL
;
1017 fifo
->rx_chan
= NULL
;
1020 static void usbhsf_dma_init(struct usbhs_priv
*priv
,
1021 struct usbhs_fifo
*fifo
)
1023 struct device
*dev
= usbhs_priv_to_dev(priv
);
1024 dma_cap_mask_t mask
;
1027 dma_cap_set(DMA_SLAVE
, mask
);
1028 fifo
->tx_chan
= dma_request_channel(mask
, usbhsf_dma_filter
,
1032 dma_cap_set(DMA_SLAVE
, mask
);
1033 fifo
->rx_chan
= dma_request_channel(mask
, usbhsf_dma_filter
,
1036 if (fifo
->tx_chan
|| fifo
->rx_chan
)
1037 dev_dbg(dev
, "enable DMAEngine (%s%s%s)\n",
1039 fifo
->tx_chan
? "[TX]" : " ",
1040 fifo
->rx_chan
? "[RX]" : " ");
1046 static int usbhsf_irq_empty(struct usbhs_priv
*priv
,
1047 struct usbhs_irq_state
*irq_state
)
1049 struct usbhs_pipe
*pipe
;
1050 struct device
*dev
= usbhs_priv_to_dev(priv
);
1053 if (!irq_state
->bempsts
) {
1054 dev_err(dev
, "debug %s !!\n", __func__
);
1058 dev_dbg(dev
, "irq empty [0x%04x]\n", irq_state
->bempsts
);
1061 * search interrupted "pipe"
1064 usbhs_for_each_pipe_with_dcp(pipe
, priv
, i
) {
1065 if (!(irq_state
->bempsts
& (1 << i
)))
1068 ret
= usbhsf_pkt_handler(pipe
, USBHSF_PKT_TRY_RUN
);
1070 dev_err(dev
, "irq_empty run_error %d : %d\n", i
, ret
);
1076 static int usbhsf_irq_ready(struct usbhs_priv
*priv
,
1077 struct usbhs_irq_state
*irq_state
)
1079 struct usbhs_pipe
*pipe
;
1080 struct device
*dev
= usbhs_priv_to_dev(priv
);
1083 if (!irq_state
->brdysts
) {
1084 dev_err(dev
, "debug %s !!\n", __func__
);
1088 dev_dbg(dev
, "irq ready [0x%04x]\n", irq_state
->brdysts
);
1091 * search interrupted "pipe"
1094 usbhs_for_each_pipe_with_dcp(pipe
, priv
, i
) {
1095 if (!(irq_state
->brdysts
& (1 << i
)))
1098 ret
= usbhsf_pkt_handler(pipe
, USBHSF_PKT_TRY_RUN
);
1100 dev_err(dev
, "irq_ready run_error %d : %d\n", i
, ret
);
1106 static void usbhsf_dma_complete(void *arg
)
1108 struct usbhs_pipe
*pipe
= arg
;
1109 struct usbhs_priv
*priv
= usbhs_pipe_to_priv(pipe
);
1110 struct device
*dev
= usbhs_priv_to_dev(priv
);
1113 ret
= usbhsf_pkt_handler(pipe
, USBHSF_PKT_DMA_DONE
);
1115 dev_err(dev
, "dma_complete run_error %d : %d\n",
1116 usbhs_pipe_number(pipe
), ret
);
1122 void usbhs_fifo_init(struct usbhs_priv
*priv
)
1124 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
1125 struct usbhs_fifo
*cfifo
= usbhsf_get_cfifo(priv
);
1126 struct usbhs_fifo
*d0fifo
= usbhsf_get_d0fifo(priv
);
1127 struct usbhs_fifo
*d1fifo
= usbhsf_get_d1fifo(priv
);
1129 mod
->irq_empty
= usbhsf_irq_empty
;
1130 mod
->irq_ready
= usbhsf_irq_ready
;
1131 mod
->irq_bempsts
= 0;
1132 mod
->irq_brdysts
= 0;
1135 cfifo
->tx_chan
= NULL
;
1136 cfifo
->rx_chan
= NULL
;
1138 d0fifo
->pipe
= NULL
;
1139 d0fifo
->tx_chan
= NULL
;
1140 d0fifo
->rx_chan
= NULL
;
1142 d1fifo
->pipe
= NULL
;
1143 d1fifo
->tx_chan
= NULL
;
1144 d1fifo
->rx_chan
= NULL
;
1146 usbhsf_dma_init(priv
, usbhsf_get_d0fifo(priv
));
1147 usbhsf_dma_init(priv
, usbhsf_get_d1fifo(priv
));
1150 void usbhs_fifo_quit(struct usbhs_priv
*priv
)
1152 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
1154 mod
->irq_empty
= NULL
;
1155 mod
->irq_ready
= NULL
;
1156 mod
->irq_bempsts
= 0;
1157 mod
->irq_brdysts
= 0;
1159 usbhsf_dma_quit(priv
, usbhsf_get_d0fifo(priv
));
1160 usbhsf_dma_quit(priv
, usbhsf_get_d1fifo(priv
));
1163 int usbhs_fifo_probe(struct usbhs_priv
*priv
)
1165 struct usbhs_fifo
*fifo
;
1168 fifo
= usbhsf_get_cfifo(priv
);
1169 fifo
->name
= "CFIFO";
1171 fifo
->sel
= CFIFOSEL
;
1172 fifo
->ctr
= CFIFOCTR
;
1175 fifo
= usbhsf_get_d0fifo(priv
);
1176 fifo
->name
= "D0FIFO";
1177 fifo
->port
= D0FIFO
;
1178 fifo
->sel
= D0FIFOSEL
;
1179 fifo
->ctr
= D0FIFOCTR
;
1180 fifo
->tx_slave
.slave_id
= usbhs_get_dparam(priv
, d0_tx_id
);
1181 fifo
->rx_slave
.slave_id
= usbhs_get_dparam(priv
, d0_rx_id
);
1184 fifo
= usbhsf_get_d1fifo(priv
);
1185 fifo
->name
= "D1FIFO";
1186 fifo
->port
= D1FIFO
;
1187 fifo
->sel
= D1FIFOSEL
;
1188 fifo
->ctr
= D1FIFOCTR
;
1189 fifo
->tx_slave
.slave_id
= usbhs_get_dparam(priv
, d1_tx_id
);
1190 fifo
->rx_slave
.slave_id
= usbhs_get_dparam(priv
, d1_rx_id
);
1195 void usbhs_fifo_remove(struct usbhs_priv
*priv
)