1 /* Copyright (C) 2005-2006 by Texas Instruments */
6 #include <linux/slab.h>
7 #include <linux/list.h>
8 #include <linux/errno.h>
9 #include <linux/dmapool.h>
12 #include "musb_core.h"
15 /* FIXME fully isolate CPPI from DaVinci ... the "CPPI generic" registers
16 * would seem to be shared with the TUSB6020 (over VLYNQ).
22 /* CPPI RX/TX state RAM */
24 struct cppi_tx_stateram
{
25 u32 tx_head
; /* "DMA packet" head descriptor */
27 u32 tx_current
; /* current descriptor */
29 u32 tx_info
; /* flags, remaining buflen */
31 u32 tx_dummy
; /* unused */
35 struct cppi_rx_stateram
{
38 u32 rx_sop
; /* "DMA packet" head descriptor */
39 u32 rx_current
; /* current descriptor */
46 /* hw_options bits in CPPI buffer descriptors */
47 #define CPPI_SOP_SET ((u32)(1 << 31))
48 #define CPPI_EOP_SET ((u32)(1 << 30))
49 #define CPPI_OWN_SET ((u32)(1 << 29)) /* owned by cppi */
50 #define CPPI_EOQ_MASK ((u32)(1 << 28))
51 #define CPPI_ZERO_SET ((u32)(1 << 23)) /* rx saw zlp; tx issues one */
52 #define CPPI_RXABT_MASK ((u32)(1 << 19)) /* need more rx buffers */
54 #define CPPI_RECV_PKTLEN_MASK 0xFFFF
55 #define CPPI_BUFFER_LEN_MASK 0xFFFF
57 #define CPPI_TEAR_READY ((u32)(1 << 31))
59 /* CPPI data structure definitions */
61 #define CPPI_DESCRIPTOR_ALIGN 16 /* bytes; 5-dec docs say 4-byte align */
63 struct cppi_descriptor
{
64 /* hardware overlay */
65 u32 hw_next
; /* next buffer descriptor Pointer */
66 u32 hw_bufp
; /* i/o buffer pointer */
67 u32 hw_off_len
; /* buffer_offset16, buffer_length16 */
68 u32 hw_options
; /* flags: SOP, EOP etc*/
70 struct cppi_descriptor
*next
;
71 dma_addr_t dma
; /* address of this descriptor */
72 u32 buflen
; /* for RX: original buffer length */
73 } __attribute__ ((aligned(CPPI_DESCRIPTOR_ALIGN
)));
78 /* CPPI Channel Control structure */
80 struct dma_channel channel
;
82 /* back pointer to the DMA controller structure */
83 struct cppi
*controller
;
85 /* which direction of which endpoint? */
86 struct musb_hw_ep
*hw_ep
;
90 /* DMA modes: RNDIS or "transparent" */
93 /* book keeping for current transfer request */
97 u32 offset
; /* dma requested */
99 void __iomem
*state_ram
; /* CPPI state */
101 struct cppi_descriptor
*freelist
;
103 /* BD management fields */
104 struct cppi_descriptor
*head
;
105 struct cppi_descriptor
*tail
;
106 struct cppi_descriptor
*last_processed
;
108 /* use tx_complete in host role to track endpoints waiting for
109 * FIFONOTEMPTY to clear.
111 struct list_head tx_complete
;
114 /* CPPI DMA controller object */
116 struct dma_controller controller
;
118 void __iomem
*mregs
; /* Mentor regs */
119 void __iomem
*tibase
; /* TI/CPPI regs */
123 struct cppi_channel tx
[4];
124 struct cppi_channel rx
[4];
126 struct dma_pool
*pool
;
128 struct list_head tx_complete
;
131 /* CPPI IRQ handler */
132 extern irqreturn_t
cppi_interrupt(int, void *);
134 #endif /* end of ifndef _CPPI_DMA_H_ */