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
/******************************************************************************
 *
 * Copyright(c) 2016 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 _RTL8821C_HAL_H_
#define _RTL8821C_HAL_H_
 
#include <osdep_service.h>        /* BIT(x) */
#include "../hal/halmac/halmac_api.h"    /* MAC REG definition */
#include "hal_data.h"
#include "rtl8821c_spec.h"
#include "../hal/rtl8821c/hal8821c_fw.h"
 
#ifdef CONFIG_USB_HCI
#include <rtl8821cu_hal.h>
#endif
#ifdef CONFIG_SDIO_HCI
#include <rtl8821cs_hal.h>
#endif
#ifdef CONFIG_PCI_HCI
#include <rtl8821ce_hal.h>
#endif
 
#ifdef CONFIG_SUPPORT_TRX_SHARED
#define FIFO_BLOCK_SIZE        32768 /*@Block size = 32K*/
#define RX_FIFO_EXPANDING    (1 * FIFO_BLOCK_SIZE)
#else
#define RX_FIFO_EXPANDING    0
#endif
 
 
#if defined(CONFIG_USB_HCI)
 
    #ifndef MAX_RECVBUF_SZ
        #ifndef CONFIG_MINIMAL_MEMORY_USAGE
            #ifdef CONFIG_PLATFORM_MSTAR
                #define MAX_RECVBUF_SZ (8192 + RX_FIFO_EXPANDING) /* 8K */
            #else
                /* 8821C - RX FIFO :16K ,for RX agg DMA mode = 16K, Rx agg USB mode could large than 16k*/
                #define MAX_RECVBUF_SZ        (HALMAC_RX_FIFO_SIZE_8821C + RX_FIFO_EXPANDING)
            #endif
            /*#define MAX_RECVBUF_SZ_8821C (24576)*/ /* 24k*/
            /*#define MAX_RECVBUF_SZ_8821C (20480)*/ /*20K*/
            /*#define MAX_RECVBUF_SZ_8821C (10240) */ /*10K*/
            /*#define MAX_RECVBUF_SZ_8821C (15360)*/ /*15k < 16k*/
            /*#define MAX_RECVBUF_SZ_8821C (8192+1024)*/ /* 8K+1k*/
        #else
            #define MAX_RECVBUF_SZ (4096 + RX_FIFO_EXPANDING) /* about 4K */
        #endif
    #endif/* !MAX_RECVBUF_SZ*/
 
#elif defined(CONFIG_PCI_HCI)
    /*#ifndef CONFIG_MINIMAL_MEMORY_USAGE
    #define MAX_RECVBUF_SZ (9100)
    #else*/
    #define MAX_RECVBUF_SZ (4096 + RX_FIFO_EXPANDING) /* about 4K */
    /*#endif*/
 
#elif defined(CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI)
    #define MAX_RECVBUF_SZ    (HALMAC_RX_FIFO_SIZE_8821C + RX_FIFO_EXPANDING)
#endif
 
void init_hal_spec_rtl8821c(PADAPTER);
/* MP Functions */
#ifdef CONFIG_MP_INCLUDED
void rtl8821c_phy_init_haldm(PADAPTER);                /* rtw_mp.c */
void rtl8821c_prepare_mp_txdesc(PADAPTER, struct mp_priv *);    /* rtw_mp.c */
void rtl8821c_mp_config_rfpath(PADAPTER);            /* hal_mp.c */
#endif
 
#endif /* _RTL8821C_HAL_H_ */