1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : cma_driver.h |
---|
3 | // Date : 01/11/2013 |
---|
4 | // Author : alain greiner |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _GIET_CMA_DRIVERS_H_ |
---|
9 | #define _GIET_CMA_DRIVERS_H_ |
---|
10 | |
---|
11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
12 | // CMA (vci_chbuf_dma) registers offsets |
---|
13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
14 | |
---|
15 | enum CMA_registers |
---|
16 | { |
---|
17 | CHBUF_RUN = 0, // write-only : channel activated |
---|
18 | CHBUF_STATUS = 1, // read-only : channel fsm state |
---|
19 | CHBUF_SRC_DESC = 2, // read/write : source chbuf : descriptor base address |
---|
20 | CHBUF_DST_DESC = 3, // read/write : destination chbuf : descriptor base address, |
---|
21 | CHBUF_SRC_NBUFS = 4, // read/write : source chbuf : number of buffers, |
---|
22 | CHBUF_DST_NBUFS = 5, // read/write : destination chbuf : number of buffers, |
---|
23 | CHBUF_BUF_SIZE = 6, // read/write : buffer size for both source & destination |
---|
24 | CHBUF_PERIOD = 7, // read/write : period for status polling |
---|
25 | CHBUF_SRC_EXT = 8, // read/write : source chbuf : descriptor base address |
---|
26 | CHBUF_DST_EXT = 9, // read/write : destination chbuf : descriptor base address, |
---|
27 | /****/ |
---|
28 | CHBUF_CHANNEL_SPAN = 1024, |
---|
29 | }; |
---|
30 | |
---|
31 | /////////////////////////////////////////////////////////////////////////////////// |
---|
32 | // CMA (vci_chbuf_dma) low-level access functions |
---|
33 | /////////////////////////////////////////////////////////////////////////////////// |
---|
34 | |
---|
35 | extern unsigned int _cma_get_register( unsigned int channel, |
---|
36 | unsigned int index ); |
---|
37 | |
---|
38 | extern void _cma_set_register( unsigned int channel, |
---|
39 | unsigned int index, |
---|
40 | unsigned int value ); |
---|
41 | |
---|
42 | extern void _cma_isr( unsigned int irq_type, |
---|
43 | unsigned int irq_id, |
---|
44 | unsigned int channel ); |
---|
45 | |
---|
46 | /////////////////////////////////////////////////////////////////////////////////// |
---|
47 | |
---|
48 | #endif |
---|
49 | |
---|
50 | // Local Variables: |
---|
51 | // tab-width: 4 |
---|
52 | // c-basic-offset: 4 |
---|
53 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
54 | // indent-tabs-mode: nil |
---|
55 | // End: |
---|
56 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
57 | |
---|