aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/amazon/files/include/asm-mips/amazon/amazon_dma.h
blob: 63ab5924e54706270cf273a3080ea9ec8cfe7c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#ifndef AMAZON_DMA_H
#define AMAZON_DMA_H

#define RCV_INT          1
#define TX_BUF_FULL_INT  2
#define TRANSMIT_CPT_INT 4

#define QOS_DEFAULT_WGT 0x7fffffffUL;


enum attr_t{
   TX=0,
   RX=1,
   RESERVED=2,
   DEFAULT=3,
   
};

#ifdef CONFIG_CPU_LITTLE_ENDIAN
typedef struct rx_desc{
   u32 data_length:16;
   volatile u32 reserved:7;
   volatile u32 byte_offset:2; 
   volatile u32 Burst_length_offset:3;
   volatile u32 EoP:1;
   volatile u32 Res:1;
   volatile u32 C:1;
   volatile u32 OWN:1;
   volatile u32 Data_Pointer;
   /*fix me:should be 28 bits here, 32 bits just for host simulatiuon purpose*/ 
}_rx_desc; 


typedef struct tx_desc{
   volatile u32 data_length:16;
   volatile u32 reserved1:7;
   volatile u32 byte_offset:5;   
   volatile u32 EoP:1;
   volatile u32 SoP:1;
   volatile u32 C:1;
   volatile u32 OWN:1;
   volatile u32 Data_Pointer;//fix me:should be 28 bits here
}_tx_desc;
#else //BIG
typedef struct rx_desc{
	union
	{
		struct
		{
			volatile u32 OWN                 	:1;
			volatile u32 C	                 	:1;
			volatile u32 SoP                 	:1;
			volatile u32 EoP	         	:1;
			volatile u32 Burst_length_offset	:3;
			volatile u32 byte_offset	 	:2; 
			volatile u32 reserve             	:7;
			volatile u32 data_length             	:16;
		}field;

		volatile u32 word;
	}status;
	
	volatile u32 Data_Pointer;
}_rx_desc; 


typedef struct tx_desc{
	union
	{
		struct
		{
			volatile u32 OWN                 :1;
			volatile u32 C	                 :1;
			volatile u32 SoP                 :1;
			volatile u32 EoP	         :1;
			volatile u32 byte_offset	 :5; 
			volatile u32 reserved            :7;
			volatile u32 data_length         :16;
		}field;

		volatile u32 word;
	}status;
	
	volatile u32 Data_Pointer;
}_tx_desc;

#endif //ENDIAN

struct dma_channel_info{
  /*filled by driver, optional*/  
    enum attr_t attr;/*TX or RX*/
    int weight;
    int desc_num;
    int packet_size;
    int control;/*on or off*/ 
   
    int desc_base;
    int status;
};

typedef struct dma_channel_info _dma_channel_info;

struct dma_device_info{
   /*variables*/ 
   /*filled by driver, compulsary*/
    char device_name[15];
    enum attr_t attr;/*default or else*/
    int tx_burst_len;
    int rx_burst_len;   
 
    int logic_rx_chan_base;
    int logic_tx_chan_base;
    u8 on_ch_bit;
   /*filled by driver, optional*/
    int  weight;
    int  current_tx_chan;
    int  current_rx_chan;
    int  num_tx_chan;
    int  num_rx_chan; 
    struct dma_channel_info tx_chan[2];
    struct dma_channel_info rx_chan[4]; 
    
    /*functions, optional*/
    u8* (*buffer_alloc)(int len,int* offset, void** opt);
    int (*buffer_free)(u8* dataptr, void* opt);
    int (*intr_handler)(struct dma_device_info* info, int status);
    /*set by device, clear by dma*/
    int ack;
    void * priv;		/* used by peripheral driver only */
};
typedef struct dma_device_info _dma_device_info;

int dma_device_register(struct dma_device_info* info);

int dma_device_unregister(struct dma_device_info* info);

int dma_device_read(struct dma_device_info* info, u8** dataptr, void** opt);

int dma_device_write(struct dma_device_info* info, u8* dataptr, int len, void* opt);

int dma_device_update(struct dma_device_info* info);

void dma_device_update_rx(struct dma_device_info* dma_dev);

void dma_device_update_tx(struct dma_device_info* dma_dev);

void register_handler_sim(int (*handler)(int));
#endif /* AMAZON_DMA_H */