2 * Texas Instruments CPDMA Driver
4 * Copyright (C) 2010 Texas Instruments
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 #ifndef __DAVINCI_CPDMA_H__
16 #define __DAVINCI_CPDMA_H__
18 #define CPDMA_MAX_CHANNELS BITS_PER_LONG
20 #define tx_chan_num(chan) (chan)
21 #define rx_chan_num(chan) ((chan) + CPDMA_MAX_CHANNELS)
22 #define is_rx_chan(chan) ((chan)->chan_num >= CPDMA_MAX_CHANNELS)
23 #define is_tx_chan(chan) (!is_rx_chan(chan))
24 #define __chan_linear(chan_num) ((chan_num) & (CPDMA_MAX_CHANNELS - 1))
25 #define chan_linear(chan) __chan_linear((chan)->chan_num)
27 #define CPDMA_RX_SOURCE_PORT(__status__) ((__status__ >> 16) & 0x7)
29 #define CPDMA_EOI_RX_THRESH 0x0
30 #define CPDMA_EOI_RX 0x1
31 #define CPDMA_EOI_TX 0x2
32 #define CPDMA_EOI_MISC 0x3
36 void __iomem
*dmaregs
;
37 void __iomem
*txhdp
, *rxhdp
, *txcp
, *rxcp
;
38 void __iomem
*rxthresh
, *rxfree
;
48 * Some instances of embedded cpdma controllers have extra control and
49 * status registers. The following flag enables access to these
50 * "extended" registers.
55 struct cpdma_chan_stats
{
62 u32 runt_receive_buff
;
63 u32 runt_transmit_buff
;
74 typedef void (*cpdma_handler_fn
)(void *token
, int len
, int status
);
76 struct cpdma_ctlr
*cpdma_ctlr_create(struct cpdma_params
*params
);
77 int cpdma_ctlr_destroy(struct cpdma_ctlr
*ctlr
);
78 int cpdma_ctlr_start(struct cpdma_ctlr
*ctlr
);
79 int cpdma_ctlr_stop(struct cpdma_ctlr
*ctlr
);
80 int cpdma_ctlr_dump(struct cpdma_ctlr
*ctlr
);
82 struct cpdma_chan
*cpdma_chan_create(struct cpdma_ctlr
*ctlr
, int chan_num
,
83 cpdma_handler_fn handler
);
84 int cpdma_chan_destroy(struct cpdma_chan
*chan
);
85 int cpdma_chan_start(struct cpdma_chan
*chan
);
86 int cpdma_chan_stop(struct cpdma_chan
*chan
);
87 int cpdma_chan_dump(struct cpdma_chan
*chan
);
89 int cpdma_chan_get_stats(struct cpdma_chan
*chan
,
90 struct cpdma_chan_stats
*stats
);
91 int cpdma_chan_submit(struct cpdma_chan
*chan
, void *token
, void *data
,
92 int len
, int directed
);
93 int cpdma_chan_process(struct cpdma_chan
*chan
, int quota
);
95 int cpdma_ctlr_int_ctrl(struct cpdma_ctlr
*ctlr
, bool enable
);
96 void cpdma_ctlr_eoi(struct cpdma_ctlr
*ctlr
, u32 value
);
97 int cpdma_chan_int_ctrl(struct cpdma_chan
*chan
, bool enable
);
98 bool cpdma_check_free_tx_desc(struct cpdma_chan
*chan
);
101 CPDMA_CMD_IDLE
, /* write-only */
102 CPDMA_COPY_ERROR_FRAMES
, /* read-write */
103 CPDMA_RX_OFF_LEN_UPDATE
, /* read-write */
104 CPDMA_RX_OWNERSHIP_FLIP
, /* read-write */
105 CPDMA_TX_PRIO_FIXED
, /* read-write */
106 CPDMA_STAT_IDLE
, /* read-only */
107 CPDMA_STAT_TX_ERR_CHAN
, /* read-only */
108 CPDMA_STAT_TX_ERR_CODE
, /* read-only */
109 CPDMA_STAT_RX_ERR_CHAN
, /* read-only */
110 CPDMA_STAT_RX_ERR_CODE
, /* read-only */
111 CPDMA_RX_BUFFER_OFFSET
, /* read-write */
114 int cpdma_control_get(struct cpdma_ctlr
*ctlr
, int control
);
115 int cpdma_control_set(struct cpdma_ctlr
*ctlr
, int control
, int value
);