xref: /wlan-driver/qca-wifi-host-cmn/hif/src/ar6320def.c (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2013,2016 The Linux Foundation. All rights reserved.
3*5113495bSYour Name  *
4*5113495bSYour Name  * Permission to use, copy, modify, and/or distribute this software for
5*5113495bSYour Name  * any purpose with or without fee is hereby granted, provided that the
6*5113495bSYour Name  * above copyright notice and this permission notice appear in all
7*5113495bSYour Name  * copies.
8*5113495bSYour Name  *
9*5113495bSYour Name  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10*5113495bSYour Name  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11*5113495bSYour Name  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12*5113495bSYour Name  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13*5113495bSYour Name  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14*5113495bSYour Name  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15*5113495bSYour Name  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16*5113495bSYour Name  * PERFORMANCE OF THIS SOFTWARE.
17*5113495bSYour Name  */
18*5113495bSYour Name 
19*5113495bSYour Name #if defined(AR6320_HEADERS_DEF)
20*5113495bSYour Name #define AR6320 1
21*5113495bSYour Name 
22*5113495bSYour Name #define WLAN_HEADERS 1
23*5113495bSYour Name #include "common_drv.h"
24*5113495bSYour Name #include "AR6320/hw/apb_map.h"
25*5113495bSYour Name #include "AR6320/hw/gpio_reg.h"
26*5113495bSYour Name #include "AR6320/hw/rtc_reg.h"
27*5113495bSYour Name #include "AR6320/extra/hw/si_reg.h"
28*5113495bSYour Name #include "AR6320/hw/mbox_reg.h"
29*5113495bSYour Name #include "AR6320/extra/hw/ce_reg_csr.h"
30*5113495bSYour Name #include "AR6320/hw/mbox_wlan_host_reg.h"
31*5113495bSYour Name #include "soc_addrs.h"
32*5113495bSYour Name #include "AR6320/extra/hw/soc_core_reg.h"
33*5113495bSYour Name #include "AR6320/hw/pcie_local_reg.h"
34*5113495bSYour Name #include "AR6320/hw/soc_pcie_reg.h"
35*5113495bSYour Name 
36*5113495bSYour Name #ifndef SYSTEM_SLEEP_OFFSET
37*5113495bSYour Name #define SYSTEM_SLEEP_OFFSET     SOC_SYSTEM_SLEEP_OFFSET
38*5113495bSYour Name #endif
39*5113495bSYour Name #ifndef WLAN_SYSTEM_SLEEP_OFFSET
40*5113495bSYour Name #define WLAN_SYSTEM_SLEEP_OFFSET                SOC_SYSTEM_SLEEP_OFFSET
41*5113495bSYour Name #endif
42*5113495bSYour Name #ifndef WLAN_RESET_CONTROL_OFFSET
43*5113495bSYour Name #define WLAN_RESET_CONTROL_OFFSET               SOC_RESET_CONTROL_OFFSET
44*5113495bSYour Name #endif
45*5113495bSYour Name #ifndef RESET_CONTROL_SI0_RST_MASK
46*5113495bSYour Name #define RESET_CONTROL_SI0_RST_MASK              SOC_RESET_CONTROL_SI0_RST_MASK
47*5113495bSYour Name #endif
48*5113495bSYour Name #ifndef SI_BASE_ADDRESS
49*5113495bSYour Name #define SI_BASE_ADDRESS WLAN_SI_BASE_ADDRESS
50*5113495bSYour Name #endif
51*5113495bSYour Name #ifndef PCIE_LOCAL_BASE_ADDRESS
52*5113495bSYour Name /* TBDXXX: Eventually, this Base Address will be defined in HW header files */
53*5113495bSYour Name #define PCIE_LOCAL_BASE_ADDRESS 0x80000
54*5113495bSYour Name #endif
55*5113495bSYour Name #ifndef RTC_STATE_V_ON
56*5113495bSYour Name #define RTC_STATE_V_ON 3
57*5113495bSYour Name #endif
58*5113495bSYour Name 
59*5113495bSYour Name #define MY_TARGET_DEF AR6320_TARGETdef
60*5113495bSYour Name #define MY_HOST_DEF AR6320_HOSTdef
61*5113495bSYour Name #define MY_CEREG_DEF AR6320_CE_TARGETdef
62*5113495bSYour Name #define MY_TARGET_BOARD_DATA_SZ AR6320_BOARD_DATA_SZ
63*5113495bSYour Name #define MY_TARGET_BOARD_EXT_DATA_SZ AR6320_BOARD_EXT_DATA_SZ
64*5113495bSYour Name #define DRAM_BASE_ADDRESS TARG_DRAM_START
65*5113495bSYour Name #include "targetdef.h"
66*5113495bSYour Name #include "hostdef.h"
67*5113495bSYour Name #else
68*5113495bSYour Name #include "common_drv.h"
69*5113495bSYour Name #include "targetdef.h"
70*5113495bSYour Name #include "hostdef.h"
71*5113495bSYour Name struct targetdef_s *AR6320_TARGETdef;
72*5113495bSYour Name struct hostdef_s *AR6320_HOSTdef;
73*5113495bSYour Name #endif /* AR6320_HEADERS_DEF */
74