SAMA5D4 Xplained Ultra Board BSP
guowenxue
2019-08-19 2e7235d10c6dbff81960282e1a1e2e798f9b8db8
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/******************************************************************************
 *
 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 *
 ******************************************************************************/
 
 
#ifndef    __ODM_INTERFACE_H__
#define __ODM_INTERFACE_H__
 
#define INTERFACE_VERSION    "1.1"        /*2015.07.29  YuChen*/
 
/*
 * =========== Constant/Structure/Enum/... Define
 *   */
 
 
 
/*
 * =========== Macro Define
 *   */
 
#define _reg_all(_name)            ODM_##_name
#define _reg_ic(_name, _ic)        ODM_##_name##_ic
#define _bit_all(_name)            BIT_##_name
#define _bit_ic(_name, _ic)        BIT_##_name##_ic
 
/* _cat: implemented by Token-Pasting Operator. */
#if 0
#define _cat(_name, _ic_type, _func)                                \
    (\
     _func##_all(_name)                                        \
    )
#endif
 
/*===================================
 
#define ODM_REG_DIG_11N        0xC50
#define ODM_REG_DIG_11AC    0xDDD
 
ODM_REG(DIG,_pdm_odm)
=====================================*/
 
#define _reg_11N(_name)            ODM_REG_##_name##_11N
#define _reg_11AC(_name)        ODM_REG_##_name##_11AC
#define _bit_11N(_name)            ODM_BIT_##_name##_11N
#define _bit_11AC(_name)        ODM_BIT_##_name##_11AC
 
#ifdef __ECOS
#define _rtk_cat(_name, _ic_type, _func)        \
    (\
     ((_ic_type) & ODM_IC_11N_SERIES) ? _func##_11N(_name) :        \
     _func##_11AC(_name)    \
    )
#else
 
#define _cat(_name, _ic_type, _func)                                    \
    (\
     ((_ic_type) & ODM_IC_11N_SERIES) ? _func##_11N(_name) :        \
     _func##_11AC(_name)                                    \
    )
#endif
/*
 * only sample code
 *#define _cat(_name, _ic_type, _func)                                    \
 *    (                                                            \
 *        ((_ic_type) & ODM_RTL8188E) ? _func##_ic(_name, _8188E) :        \
 *        _func##_ic(_name, _8195)                                    \
 *    )
 */
 
/* _name: name of register or bit.
 * Example: "ODM_REG(R_A_AGC_CORE1, p_dm_odm)"
 * gets "ODM_R_A_AGC_CORE1" or "ODM_R_A_AGC_CORE1_8192C", depends on support_ic_type. */
#ifdef __ECOS
    #define ODM_REG(_name, _pdm_odm)    _rtk_cat(_name, _pdm_odm->support_ic_type, _reg)
    #define ODM_BIT(_name, _pdm_odm)    _rtk_cat(_name, _pdm_odm->support_ic_type, _bit)
#else
    #define ODM_REG(_name, _pdm_odm)    _cat(_name, _pdm_odm->support_ic_type, _reg)
    #define ODM_BIT(_name, _pdm_odm)    _cat(_name, _pdm_odm->support_ic_type, _bit)
#endif
enum phydm_h2c_cmd {
    PHYDM_H2C_TXBF            = 0x41,
    ODM_H2C_RSSI_REPORT        = 0x42,
    ODM_H2C_IQ_CALIBRATION    = 0x45,
    ODM_H2C_RA_PARA_ADJUST    = 0x47,
    PHYDM_H2C_DYNAMIC_TX_PATH = 0x48,
    PHYDM_H2C_FW_TRACE_EN    = 0x49,
    ODM_H2C_WIFI_CALIBRATION    = 0x6d,
    PHYDM_H2C_MU                = 0x4a,
    ODM_MAX_H2CCMD
};
 
enum phydm_c2h_evt {
    PHYDM_C2H_DBG = 0,
    PHYDM_C2H_LB = 1,
    PHYDM_C2H_XBF = 2,
    PHYDM_C2H_TX_REPORT = 3,
    PHYDM_C2H_INFO = 9,
    PHYDM_C2H_BT_MP = 11,
    PHYDM_C2H_RA_RPT = 12,
    PHYDM_C2H_RA_PARA_RPT = 14,
    PHYDM_C2H_DYNAMIC_TX_PATH_RPT = 15,
    PHYDM_C2H_IQK_FINISH = 17, /*0x11*/
    PHYDM_C2H_DBG_CODE = 0xFE,
    PHYDM_C2H_EXTEND = 0xFF,
};
 
enum phydm_extend_c2h_evt {
    PHYDM_EXTEND_C2H_DBG_PRINT = 0
 
};
 
 
/*
 * =========== Extern Variable ??? It should be forbidden.
 *   */
 
 
/*
 * =========== EXtern Function Prototype
 *   */
 
 
u8
odm_read_1byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr
);
 
u16
odm_read_2byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr
);
 
u32
odm_read_4byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr
);
 
void
odm_write_1byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr,
    u8            data
);
 
void
odm_write_2byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr,
    u16            data
);
 
void
odm_write_4byte(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u32            reg_addr,
    u32            data
);
 
void
odm_set_mac_reg(
    struct PHY_DM_STRUCT    *p_dm_odm,
    u32        reg_addr,
    u32        bit_mask,
    u32        data
);
 
u32
odm_get_mac_reg(
    struct PHY_DM_STRUCT    *p_dm_odm,
    u32        reg_addr,
    u32        bit_mask
);
 
void
odm_set_bb_reg(
    struct PHY_DM_STRUCT    *p_dm_odm,
    u32        reg_addr,
    u32        bit_mask,
    u32        data
);
 
u32
odm_get_bb_reg(
    struct PHY_DM_STRUCT    *p_dm_odm,
    u32        reg_addr,
    u32        bit_mask
);
 
void
odm_set_rf_reg(
    struct PHY_DM_STRUCT            *p_dm_odm,
    enum odm_rf_radio_path_e    e_rf_path,
    u32                reg_addr,
    u32                bit_mask,
    u32                data
);
 
u32
odm_get_rf_reg(
    struct PHY_DM_STRUCT            *p_dm_odm,
    enum odm_rf_radio_path_e    e_rf_path,
    u32                reg_addr,
    u32                bit_mask
);
 
 
/*
 * Memory Relative Function.
 *   */
void
odm_allocate_memory(
    struct PHY_DM_STRUCT    *p_dm_odm,
    void **p_ptr,
    u32        length
);
void
odm_free_memory(
    struct PHY_DM_STRUCT    *p_dm_odm,
    void        *p_ptr,
    u32        length
);
 
void
odm_move_memory(
    struct PHY_DM_STRUCT    *p_dm_odm,
    void        *p_dest,
    void        *p_src,
    u32        length
);
 
s32 odm_compare_memory(
    struct PHY_DM_STRUCT    *p_dm_odm,
    void           *p_buf1,
    void           *p_buf2,
    u32          length
);
 
void odm_memory_set
(struct PHY_DM_STRUCT    *p_dm_odm,
 void    *pbuf,
 s8    value,
 u32    length);
 
/*
 * ODM MISC-spin lock relative API.
 *   */
void
odm_acquire_spin_lock(
    struct PHY_DM_STRUCT            *p_dm_odm,
    enum rt_spinlock_type    type
);
 
void
odm_release_spin_lock(
    struct PHY_DM_STRUCT            *p_dm_odm,
    enum rt_spinlock_type    type
);
 
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
/*
 * ODM MISC-workitem relative API.
 *   */
void
odm_initialize_work_item(
    struct PHY_DM_STRUCT                    *p_dm_odm,
    PRT_WORK_ITEM                p_rt_work_item,
    RT_WORKITEM_CALL_BACK        rt_work_item_callback,
    void                        *p_context,
    const char                    *sz_id
);
 
void
odm_start_work_item(
    PRT_WORK_ITEM    p_rt_work_item
);
 
void
odm_stop_work_item(
    PRT_WORK_ITEM    p_rt_work_item
);
 
void
odm_free_work_item(
    PRT_WORK_ITEM    p_rt_work_item
);
 
void
odm_schedule_work_item(
    PRT_WORK_ITEM    p_rt_work_item
);
 
bool
odm_is_work_item_scheduled(
    PRT_WORK_ITEM    p_rt_work_item
);
#endif
 
/*
 * ODM Timer relative API.
 *   */
void
odm_stall_execution(
    u32    us_delay
);
 
void
ODM_delay_ms(u32    ms);
 
 
 
void
ODM_delay_us(u32    us);
 
void
ODM_sleep_ms(u32    ms);
 
void
ODM_sleep_us(u32    us);
 
void
odm_set_timer(
    struct PHY_DM_STRUCT        *p_dm_odm,
    struct timer_list        *p_timer,
    u32            ms_delay
);
 
void
odm_initialize_timer(
    struct PHY_DM_STRUCT            *p_dm_odm,
    struct timer_list            *p_timer,
    void    *call_back_func,
    void                *p_context,
    const char            *sz_id
);
 
void
odm_cancel_timer(
    struct PHY_DM_STRUCT        *p_dm_odm,
    struct timer_list        *p_timer
);
 
void
odm_release_timer(
    struct PHY_DM_STRUCT        *p_dm_odm,
    struct timer_list        *p_timer
);
 
/*
 * ODM FW relative API.
 *   */
void
odm_fill_h2c_cmd(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u8            element_id,
    u32            cmd_len,
    u8            *p_cmd_buffer
);
 
u8
phydm_c2H_content_parsing(
    void            *p_dm_void,
    u8            c2h_cmd_id,
    u8            c2h_cmd_len,
    u8            *tmp_buf
);
 
u64
odm_get_current_time(
    struct PHY_DM_STRUCT        *p_dm_odm
);
u64
odm_get_progressing_time(
    struct PHY_DM_STRUCT        *p_dm_odm,
    u64            start_time
);
 
#if (DM_ODM_SUPPORT_TYPE & (ODM_WIN|ODM_CE))
 
void
phydm_set_hw_reg_handler_interface (
    struct PHY_DM_STRUCT        *p_dm_odm,
    u8                reg_Name,
    u8                *val
    );
 
void
phydm_get_hal_def_var_handler_interface (
    struct PHY_DM_STRUCT        *p_dm_odm,
    enum _HAL_DEF_VARIABLE        e_variable,
    void                        *p_value
    );
 
#endif
 
 
#endif /* __ODM_INTERFACE_H__ */