blob: 13e1a7136d71d917302d7d8b5877ecdbe7c61ee9 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Poddar, Siddarth27b1a602016-04-29 11:01:33 +05302 * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28#ifndef __TARGADDRS_H__
29#define __TARGADDRS_H__
30
31#if defined(ATH_TARGET)
32#include "soc_addrs.h"
33#endif
34
35#if !defined(ATH_TARGET)
36#include "athstartpack.h"
37#endif
38
39/*
40 * SOC option bits, to enable/disable various features.
41 * By default, all option bits are 0.
42 * AR6004: These bits can be set in LOCAL_SCRATCH register 0.
43 * AR9888: These bits can be set in soc_core register SCRATCH_0.
44 */
45#define SOC_OPTION_BMI_DISABLE 0x01 /* Disable BMI comm with Host */
46#define SOC_OPTION_SERIAL_ENABLE 0x02 /* Enable serial port msgs */
47#define SOC_OPTION_WDT_DISABLE 0x04 /* WatchDog Timer override */
48#define SOC_OPTION_SLEEP_DISABLE 0x08 /* Disable system sleep */
49#define SOC_OPTION_STOP_BOOT 0x10 /* Stop boot processes (for ATE) */
50#define SOC_OPTION_ENABLE_NOANI 0x20 /* Operate without ANI */
51#define SOC_OPTION_DSET_DISABLE 0x40 /* Ignore DataSets */
52#define SOC_OPTION_IGNORE_FLASH 0x80 /* Ignore flash during bootup */
53
54/*
55 * xxx_HOST_INTEREST_ADDRESS is the address in Target RAM of the
56 * host_interest structure. It must match the address of the _host_interest
57 * symbol (see linker script).
58 *
59 * Host Interest is shared between Host and Target in order to coordinate
60 * between the two, and is intended to remain constant (with additions only
61 * at the end) across software releases.
62 *
63 * All addresses are available here so that it's possible to
64 * write a single binary that works with all Target Types.
65 * May be used in assembler code as well as C.
66 */
67#define AR6002_HOST_INTEREST_ADDRESS 0x00500400
68#define AR6003_HOST_INTEREST_ADDRESS 0x00540600
69#define AR6004_HOST_INTEREST_ADDRESS 0x00400800
70#define AR9888_HOST_INTEREST_ADDRESS 0x00400800
71#define AR900B_HOST_INTEREST_ADDRESS 0x00400800
72#define AR6320_HOST_INTEREST_ADDRESS 0x00400800
Govind Singh55b8daf2016-06-09 16:02:47 +053073#define QCA9377_HOST_INTEREST_ADDRESS 0x00400800
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080074#define AR6004_SOC_RESET_ADDRESS 0X00004000
75#define AR6004_SOC_RESET_CPU_INIT_RESET_MASK 0X00000800
76#if defined(AR6006_MEMORY_NEW_ARCH)
77#define AR6006_HOST_INTEREST_ADDRESS 0x00428800
78#else
79#define AR6006_HOST_INTEREST_ADDRESS 0x00400800
80#endif
81#define AR6006_SOC_RESET_ADDRESS 0X00004000
82#define AR6006_SOC_RESET_CPU_INIT_RESET_MASK 0X00000800
83
84#define HOST_INTEREST_MAX_SIZE 0x200
85
86#if !defined(__ASSEMBLER__)
87struct register_dump_s;
88struct dbglog_hdr_s;
89
90/*
91 * These are items that the Host may need to access
92 * via BMI or via the Diagnostic Window. The position
93 * of items in this structure must remain constant
94 * across firmware revisions!
95 *
96 * Types for each item must be fixed size across
97 * target and host platforms.
98 *
99 * More items may be added at the end.
100 */
101PREPACK64 struct host_interest_s {
102 /*
103 * Pointer to application-defined area, if any.
104 * Set by Target application during startup.
105 */
106 A_UINT32 hi_app_host_interest; /* 0x00 */
107
108 /* Pointer to register dump area, valid after Target crash. */
109 A_UINT32 hi_failure_state; /* 0x04 */
110
111 /* Pointer to debug logging header */
112 A_UINT32 hi_dbglog_hdr; /* 0x08 */
113
114 /* Save SW ROM version */
115 A_UINT32 hi_sw_rom_version; /* 0x0c */
116
Govind Singh55b8daf2016-06-09 16:02:47 +0530117 /*
118 * General-purpose flag bits, similar to SOC_OPTION_* flags.
119 * Can be used by application rather than by OS.
120 */
121 volatile A_UINT32 hi_option_flag; /* 0x10 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800122
123 /*
124 * Boolean that determines whether or not to
125 * display messages on the serial port.
126 */
127 A_UINT32 hi_serial_enable; /* 0x14 */
128
129 /* Start address of DataSet index, if any */
130 A_UINT32 hi_dset_list_head; /* 0x18 */
131
132 /* Override Target application start address */
133 A_UINT32 hi_app_start; /* 0x1c */
134
135 /* Clock and voltage tuning */
136 A_UINT32 hi_skip_clock_init; /* 0x20 */
137 A_UINT32 hi_core_clock_setting; /* 0x24 */
138 A_UINT32 hi_cpu_clock_setting; /* 0x28 */
139 A_UINT32 hi_system_sleep_setting; /* 0x2c */
140 A_UINT32 hi_xtal_control_setting; /* 0x30 */
141 A_UINT32 hi_pll_ctrl_setting_24ghz; /* 0x34 */
142 A_UINT32 hi_pll_ctrl_setting_5ghz; /* 0x38 */
143 A_UINT32 hi_ref_voltage_trim_setting; /* 0x3c */
144 A_UINT32 hi_clock_info; /* 0x40 */
145
146 /* Host uses BE CPU or not */
147 A_UINT32 hi_be; /* 0x44 */
148
149 A_UINT32 hi_stack; /* normal stack *//* 0x48 */
150 A_UINT32 hi_err_stack; /* error stack *//* 0x4c */
151 A_UINT32 hi_desired_cpu_speed_hz; /* 0x50 */
152
153 /* Pointer to Board Data */
154 A_UINT32 hi_board_data; /* 0x54 */
155
156 /*
157 * Indication of Board Data state:
158 * 0: board data is not yet initialized.
159 * 1: board data is initialized; unknown size
160 * >1: number of bytes of initialized board data (varies with board type)
161 */
162 A_UINT32 hi_board_data_initialized; /* 0x58 */
163
164 A_UINT32 hi_dset_RAM_index_table; /* 0x5c */
165
166 A_UINT32 hi_desired_baud_rate; /* 0x60 */
167 A_UINT32 hi_dbglog_config; /* 0x64 */
168 A_UINT32 hi_end_RAM_reserve_sz; /* 0x68 */
169 A_UINT32 hi_mbox_io_block_sz; /* 0x6c */
170
171 A_UINT32 hi_num_bpatch_streams; /* 0x70 -- unused */
172 A_UINT32 hi_mbox_isr_yield_limit; /* 0x74 */
173
174 A_UINT32 hi_refclk_hz; /* 0x78 */
175 A_UINT32 hi_ext_clk_detected; /* 0x7c */
176 A_UINT32 hi_dbg_uart_txpin; /* 0x80 */
177 A_UINT32 hi_dbg_uart_rxpin; /* 0x84 */
178 A_UINT32 hi_hci_uart_baud; /* 0x88 */
179 A_UINT32 hi_hci_uart_pin_assignments; /* 0x8C */
180 /* NOTE: byte [0] = tx pin, [1] = rx pin, [2] = rts pin, [3] = cts pin */
181 A_UINT32 hi_hci_uart_baud_scale_val; /* 0x90 */
182 A_UINT32 hi_hci_uart_baud_step_val; /* 0x94 */
183
184 A_UINT32 hi_allocram_start; /* 0x98 */
185 A_UINT32 hi_allocram_sz; /* 0x9c */
186 A_UINT32 hi_hci_bridge_flags; /* 0xa0 */
187 A_UINT32 hi_hci_uart_support_pins; /* 0xa4 */
188 /* NOTE: byte [0] = RESET pin (bit 7 is polarity), bytes[1]..bytes[3] are for future use */
189 A_UINT32 hi_hci_uart_pwr_mgmt_params; /* 0xa8 */
190 /* 0xa8 - [1]: 0 = UART FC active low, 1 = UART FC active high
191 * [31:16]: wakeup timeout in ms
192 */
193 /* Pointer to extended board Data */
194 A_UINT32 hi_board_ext_data; /* 0xac */
195 A_UINT32 hi_board_ext_data_config; /* 0xb0 */
196 /*
197 * Bit [0] : valid
198 * Bit[31:16: size
199 */
200 /*
201 * hi_reset_flag is used to do some stuff when target reset.
202 * such as restore app_start after warm reset or
203 * preserve host Interest area, or preserve ROM data, literals etc.
204 */
205 A_UINT32 hi_reset_flag; /* 0xb4 */
206 /* indicate hi_reset_flag is valid */
207 A_UINT32 hi_reset_flag_valid; /* 0xb8 */
208 A_UINT32 hi_hci_uart_pwr_mgmt_params_ext; /* 0xbc */
209 /* 0xbc - [31:0]: idle timeout in ms
210 */
211 /* ACS flags */
212 A_UINT32 hi_acs_flags; /* 0xc0 */
213 A_UINT32 hi_console_flags; /* 0xc4 */
214 A_UINT32 hi_nvram_state; /* 0xc8 */
Govind Singh55b8daf2016-06-09 16:02:47 +0530215 volatile A_UINT32 hi_option_flag2; /* 0xcc */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800216
217 /* If non-zero, override values sent to Host in WMI_READY event. */
218 A_UINT32 hi_sw_version_override; /* 0xd0 */
219 A_UINT32 hi_abi_version_override; /* 0xd4 */
220
221 /* Percentage of high priority RX traffic to total expected RX traffic -
222 * applicable only to ar6004 */
223 A_UINT32 hi_hp_rx_traffic_ratio; /* 0xd8 */
224
225 /* test applications flags */
226 A_UINT32 hi_test_apps_related; /* 0xdc */
227 /* location of test script */
228 A_UINT32 hi_ota_testscript; /* 0xe0 */
229 /* location of CAL data */
230 A_UINT32 hi_cal_data; /* 0xe4 */
231
Govind Singh55b8daf2016-06-09 16:02:47 +0530232 /* Number of packet log buffers */
233 volatile A_UINT32 hi_pktlog_num_buffers; /* 0xe8 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800234
235 /* wow extension configuration */
236 A_UINT32 hi_wow_ext_config; /* 0xec */
237 A_UINT32 hi_pwr_save_flags; /* 0xf0 */
238
239 /* Spatial Multiplexing Power Save (SMPS) options */
240 A_UINT32 hi_smps_options; /* 0xf4 */
241
242 /* Interconnect-specific state */
243 A_UINT32 hi_interconnect_state; /* 0xf8 */
244
245 /* Coex configuration flags */
246 A_UINT32 hi_coex_config; /* 0xfc */
247
248 /* Early allocation support */
249 A_UINT32 hi_early_alloc; /* 0x100 */
250
251 /* FW swap field */
252 /* Bits of this 32bit word will be used to pass specific swap
253 instruction to FW */
254 /* Bit 0 -- AP Nart descriptor no swap. When this bit is set
255 FW will not swap TX descriptor. Meaning packets are formed
256 on the target processor. */
257 /* Bit 1 -- TBD */
258
259 A_UINT32 hi_fw_swap; /* 0x104 */
260
261 /* global arenas pointer address, used by host driver debug */
262 A_UINT32 hi_dynamic_mem_arenas_addr; /* 0x108 */
263
264 /* allocated bytes of DRAM use by allocated */
265 A_UINT32 hi_dynamic_mem_allocated; /* 0x10C */
266
267 /* remaining bytes of DRAM */
268 A_UINT32 hi_dynamic_mem_remaining; /* 0x110 */
269
270 /* memory track count, configured by host */
271 A_UINT32 hi_dynamic_mem_track_max; /* 0x114 */
272
273 /* minidump buffer */
274 A_UINT32 hi_minidump; /* 0x118 */
275
276 /* bdata's sig and key addr */
277 A_UINT32 hi_bd_sig_key; /* 0x11c */
278
279} POSTPACK64;
280
281/* bitmap for hi_test_apps_related */
282#define HI_TEST_APPS_TESTSCRIPT_LOADED 0x00000001
283#define HI_TEST_APPS_CAL_DATA_AVAIL 0x00000002
284
285/* Bits defined in hi_option_flag */
286#define HI_OPTION_TIMER_WAR 0x01 /* Enable timer workaround */
287#define HI_OPTION_BMI_CRED_LIMIT 0x02 /* Limit BMI command credits */
288#define HI_OPTION_RELAY_DOT11_HDR 0x04 /* Relay Dot11 hdr to/from host */
289#define HI_OPTION_MAC_ADDR_METHOD 0x08 /* MAC addr method 0-locally administred 1-globally unique addrs */
290#define HI_OPTION_FW_BRIDGE 0x10 /* Firmware Bridging */
291#define HI_OPTION_ENABLE_PROFILE 0x20 /* Enable CPU profiling */
292#define HI_OPTION_DISABLE_DBGLOG 0x40 /* Disable debug logging */
293#define HI_OPTION_SKIP_ERA_TRACKING 0x80 /* Skip Era Tracking */
294#define HI_OPTION_PAPRD_DISABLE 0x100 /* Disable PAPRD (debug) */
295#define HI_OPTION_NUM_DEV_LSB 0x200
296#define HI_OPTION_NUM_DEV_MSB 0x800
297#define HI_OPTION_DEV_MODE_LSB 0x1000
298#define HI_OPTION_DEV_MODE_MSB 0x8000000
299#define HI_OPTION_NO_LFT_STBL 0x10000000 /* Disable LowFreq Timer Stabilization */
300#define HI_OPTION_SKIP_REG_SCAN 0x20000000 /* Skip regulatory scan */
301#define HI_OPTION_INIT_REG_SCAN 0x40000000 /* Do regulatory scan during init before
302 * sending WMI ready event to host */
303#define HI_OPTION_SKIP_MEMMAP 0x80000000 /* REV6: Do not adjust memory map */
304
305#define HI_OPTION_MAC_ADDR_METHOD_SHIFT 3
306
307/* 2 bits of hi_option_flag are used to represent 3 modes */
308#define HI_OPTION_FW_MODE_IBSS 0x0 /* IBSS Mode */
309#define HI_OPTION_FW_MODE_BSS_STA 0x1 /* STA Mode */
310#define HI_OPTION_FW_MODE_AP 0x2 /* AP Mode */
311#define HI_OPTION_FW_MODE_BT30AMP 0x3 /* BT30 AMP Mode */
312
313/* 2 bits of hi_option flag are usedto represent 4 submodes */
314#define HI_OPTION_FW_SUBMODE_NONE 0x0 /* Normal mode */
315#define HI_OPTION_FW_SUBMODE_P2PDEV 0x1 /* p2p device mode */
316#define HI_OPTION_FW_SUBMODE_P2PCLIENT 0x2 /* p2p client mode */
317#define HI_OPTION_FW_SUBMODE_P2PGO 0x3 /* p2p go mode */
318
319/* Num dev Mask */
320#define HI_OPTION_NUM_DEV_MASK 0x7
321#define HI_OPTION_NUM_DEV_SHIFT 0x9
322
323/* firmware bridging */
324#define HI_OPTION_FW_BRIDGE_SHIFT 0x04
325
326/* Fw Mode/SubMode Mask
327 |-------------------------------------------------------------------------------|
328 | SUB | SUB | SUB | SUB | | | | |
329 | MODE[3] | MODE[2] | MODE[1] | MODE[0] | MODE[3] | MODE[2] | MODE[1] | MODE[0] |
330 | (2) | (2) | (2) | (2) | (2) | (2) | (2) | (2) |
331 |||-------------------------------------------------------------------------------|
332 */
333#define HI_OPTION_FW_MODE_BITS 0x2
334#define HI_OPTION_FW_MODE_MASK 0x3
335#define HI_OPTION_FW_MODE_SHIFT 0xC
336#define HI_OPTION_ALL_FW_MODE_MASK 0xFF
337
338#define HI_OPTION_FW_SUBMODE_BITS 0x2
339#define HI_OPTION_FW_SUBMODE_MASK 0x3
340#define HI_OPTION_FW_SUBMODE_SHIFT 0x14
341#define HI_OPTION_ALL_FW_SUBMODE_MASK 0xFF00
342#define HI_OPTION_ALL_FW_SUBMODE_SHIFT 0x8
343
344/* hi_option_flag2 options */
345#define HI_OPTION_OFFLOAD_AMSDU 0x01
346#define HI_OPTION_DFS_SUPPORT 0x02 /* Enable DFS support */
347#define HI_OPTION_ENABLE_RFKILL 0x04 /* RFKill Enable Feature */
348#define HI_OPTION_RADIO_RETENTION_DISABLE 0x08 /* Disable radio retention */
349#define HI_OPTION_EARLY_CFG_DONE 0x10 /* Early configuration is complete */
350
351#define HI_OPTION_RF_KILL_SHIFT 0x2
352#define HI_OPTION_RF_KILL_MASK 0x1
353
Govind Singh55b8daf2016-06-09 16:02:47 +0530354#define HI_OPTION_HTT_TGT_DEBUG_TX_COMPL_IDX 0x20
355
356#define HTT_TGT_DEBUG_TX_COMPL_IDX_VALUE() \
357 ((HOST_INTEREST->hi_option_flag2 & HI_OPTION_HTT_TGT_DEBUG_TX_COMPL_IDX))
358
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800359/* AR9888 1.0 only. Enable/disable CDC max perf support from host */
360#define HI_OPTION_DISABLE_CDC_MAX_PERF_WAR 0x20
361#define CDC_MAX_PERF_WAR_ENABLED() \
362 (!(HOST_INTEREST->hi_option_flag2 & HI_OPTION_DISABLE_CDC_MAX_PERF_WAR))
Govind Singh55b8daf2016-06-09 16:02:47 +0530363#define HI_OPTION_USE_EXT_LDO 0x40 /* use LDO27 for 1.1V instead of PMU. */
364#define HI_OPTION_DBUART_SUPPORT 0x80 /* Enable uart debug support */
365/* This bit is to enable BE low latency for some customers.
366 * The side effect is TCP DL will be 8Mbps decreased (673Mbps -> 665Mbps).
367 */
368#define HI_OPTION_BE_LATENCY_OPTIMIZE 0x100
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800369#define HT_OPTION_GPIO_WAKEUP_SUPPORT 0x200 /* GPIO wake up support */
370#define GPIO_WAKEUP_ENABLED() \
371 (HOST_INTEREST->hi_option_flag2 & HT_OPTION_GPIO_WAKEUP_SUPPORT)
372
373/* hi_reset_flag */
374#define HI_RESET_FLAG_PRESERVE_APP_START 0x01 /* preserve App Start address */
375#define HI_RESET_FLAG_PRESERVE_HOST_INTEREST 0x02 /* preserve host interest */
376#define HI_RESET_FLAG_PRESERVE_ROMDATA 0x04 /* preserve ROM data */
377#define HI_RESET_FLAG_PRESERVE_NVRAM_STATE 0x08
378#define HI_RESET_FLAG_PRESERVE_BOOT_INFO 0x10
379#define HI_RESET_FLAG_WARM_RESET 0x20
380
381/* define hi_fw_swap bits */
382#define HI_DESC_IN_FW_BIT 0x01
383
384#define HI_RESET_FLAG_IS_VALID 0x12345678 /* indicate the reset flag is valid */
385
386#define ON_RESET_FLAGS_VALID() \
387 (HOST_INTEREST->hi_reset_flag_valid == HI_RESET_FLAG_IS_VALID)
388
389#define RESET_FLAGS_VALIDATE() \
390 (HOST_INTEREST->hi_reset_flag_valid = HI_RESET_FLAG_IS_VALID)
391
392#define RESET_FLAGS_INVALIDATE() \
393 (HOST_INTEREST->hi_reset_flag_valid = 0)
394
395#define ON_RESET_PRESERVE_APP_START() \
396 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_PRESERVE_APP_START)
397
398#define ON_RESET_PRESERVE_NVRAM_STATE() \
399 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_PRESERVE_NVRAM_STATE)
400
401#define ON_RESET_PRESERVE_HOST_INTEREST() \
402 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_PRESERVE_HOST_INTEREST)
403
404#define ON_RESET_PRESERVE_ROMDATA() \
405 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_PRESERVE_ROMDATA)
406
407#define ON_RESET_PRESERVE_BOOT_INFO() \
408 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_PRESERVE_BOOT_INFO)
409
410#define ON_RESET_WARM_RESET() \
411 (HOST_INTEREST->hi_reset_flag & HI_RESET_FLAG_WARM_RESET)
412
413/* host CPU endianness */
414#define HOST_ON_BE_CPU() \
415 (HOST_INTEREST->hi_be)
416
Govind Singh55b8daf2016-06-09 16:02:47 +0530417/* AP nart no swap descriptor flag. Decsriptors are created
418 * on the target processor.
419 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800420#define DESC_IN_FW() \
421 (HOST_INTEREST->hi_fw_swap & HI_DESC_IN_FW_BIT)
422
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800423
Govind Singh55b8daf2016-06-09 16:02:47 +0530424/* redefine for hi_acs_flags since no product ever use it
425 * NOTE:
426 * This flag was only used in AR6004 for a customer project that has
427 * been canceled, we are reusing it to avoid extending the Host interest
428 * area.
429 * BIT Range Meaning
430 * --------- ----------------------------------
431 * 0 HOST wants to swap MBOX usage
432 * 1 HOST supports HTT reduced tx completion
433 * 2 HOST supports HTT alternate credit size for data frames
434 * 15..3 reserved for HOST
435 * 16 FW set it before sending HTC_Ready to indicate MBOX swap is done
436 * 17 same as above but to indicate HTT reduced tx completion capability
437 * 31..18 reserved for FW
438 */
439/* HOST require to swap MBOX */
440#define HI_ACS_FLAGS_HOST_SWAP_MBOX (1 << 0)
441/* HOST supports HTT reduced tx completion */
442#define HI_ACS_FLAGS_HOST_REDUCE_TX_COMPL (1 << 1)
443/* HOST supports alternate credit size for data frames */
444#define HI_ACS_FLAGS_ALT_DATA_CREDIT_SIZE (1 << 2)
445/* FW swapped MBOX */
446#define HI_ACS_FLAGS_FW_SWAPPED_MBOX (1 << 16)
447/* FW support HTT reduced tx completion */
448#define HI_ACS_FLAGS_FW_REDUCE_TX_COMPL (1 << 17)
Poddar, Siddarth27b1a602016-04-29 11:01:33 +0530449
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800450/* CONSOLE FLAGS
451 *
452 * Bit Range Meaning
453 * --------- --------------------------------
454 * 2..0 UART ID (0 = Default)
455 * 3 Baud Select (0 = 9600, 1 = 115200)
456 * 30..4 Reserved
457 * 31 Enable Console
458 *
459 * */
460
461#define HI_CONSOLE_FLAGS_ENABLE (1 << 31)
462#define HI_CONSOLE_FLAGS_UART_MASK (0x7)
463#define HI_CONSOLE_FLAGS_UART_SHIFT 0
464#define HI_CONSOLE_FLAGS_BAUD_SELECT (1 << 3)
465
466/* SM power save options */
467#define HI_SMPS_ALLOW_MASK (0x00000001)
468#define HI_SMPS_MODE_MASK (0x00000002)
469#define HI_SMPS_MODE_STATIC (0x00000000)
470#define HI_SMPS_MODE_DYNAMIC (0x00000002)
471#define HI_SMPS_DISABLE_AUTO_MODE (0x00000004)
472#define HI_SMPS_DATA_THRESH_MASK (0x000007f8)
473#define HI_SMPS_DATA_THRESH_SHIFT (3)
474#define HI_SMPS_RSSI_THRESH_MASK (0x0007f800)
475#define HI_SMPS_RSSI_THRESH_SHIFT (11)
476#define HI_SMPS_LOWPWR_CM_MASK (0x00380000)
477#define HI_SMPS_LOWPWR_CM_SHIFT (15)
478#define HI_SMPS_HIPWR_CM_MASK (0x03c00000)
479#define HI_SMPS_HIPWR_CM_SHIFT (19)
480
481#define HOST_INTEREST_SMPS_GET_MODE() (HOST_INTEREST->hi_smps_options & HI_SMPS_MODE_MASK)
482#define HOST_INTEREST_SMPS_GET_DATA_THRESH() ((HOST_INTEREST->hi_smps_options & HI_SMPS_DATA_THRESH_MASK) >> HI_SMPS_DATA_THRESH_SHIFT)
483#define HOST_INTEREST_SMPS_SET_DATA_THRESH(x) (((x) << HI_SMPS_DATA_THRESH_SHIFT) & HI_SMPS_DATA_THRESH_MASK)
484#define HOST_INTEREST_SMPS_GET_RSSI_THRESH() ((HOST_INTEREST->hi_smps_options & HI_SMPS_RSSI_THRESH_MASK) >> HI_SMPS_RSSI_THRESH_SHIFT)
485#define HOST_INTEREST_SMPS_SET_RSSI_THRESH(x) (((x) << HI_SMPS_RSSI_THRESH_SHIFT) & HI_SMPS_RSSI_THRESH_MASK)
486#define HOST_INTEREST_SMPS_SET_LOWPWR_CM() ((HOST_INTEREST->hi_smps_options & HI_SMPS_LOWPWR_CM_MASK) >> HI_SMPS_LOWPWR_CM_SHIFT)
487#define HOST_INTEREST_SMPS_SET_HIPWR_CM() ((HOST_INTEREST->hi_smps_options << HI_SMPS_HIPWR_CM_MASK) & HI_SMPS_HIPWR_CM_SHIFT)
488#define HOST_INTEREST_SMPS_IS_AUTO_MODE_DISABLED() (HOST_INTEREST->hi_smps_options & HI_SMPS_DISABLE_AUTO_MODE)
489
490/* WOW Extension configuration
491 *
492 * Bit Range Meaning
493 * --------- --------------------------------
494 * 8..0 Size of each WOW pattern (max 511)
495 * 15..9 Number of patterns per list (max 127)
496 * 17..16 Number of lists (max 4)
497 * 30..18 Reserved
498 * 31 Enabled
499 *
500 * set values (except enable) to zeros for default settings
501 *
502 * */
503
504#define HI_WOW_EXT_ENABLED_MASK (1 << 31)
505#define HI_WOW_EXT_NUM_LIST_SHIFT 16
506#define HI_WOW_EXT_NUM_LIST_MASK (0x3 << HI_WOW_EXT_NUM_LIST_SHIFT)
507#define HI_WOW_EXT_NUM_PATTERNS_SHIFT 9
508#define HI_WOW_EXT_NUM_PATTERNS_MASK (0x7F << HI_WOW_EXT_NUM_PATTERNS_SHIFT)
509#define HI_WOW_EXT_PATTERN_SIZE_SHIFT 0
510#define HI_WOW_EXT_PATTERN_SIZE_MASK (0x1FF << HI_WOW_EXT_PATTERN_SIZE_SHIFT)
511
512#define HI_WOW_EXT_MAKE_CONFIG(num_lists,count,size) \
513 ((((num_lists) << HI_WOW_EXT_NUM_LIST_SHIFT) & HI_WOW_EXT_NUM_LIST_MASK) | \
514 (((count) << HI_WOW_EXT_NUM_PATTERNS_SHIFT) & HI_WOW_EXT_NUM_PATTERNS_MASK) | \
515 (((size) << HI_WOW_EXT_PATTERN_SIZE_SHIFT) & HI_WOW_EXT_PATTERN_SIZE_MASK))
516
517#define HI_WOW_EXT_GET_NUM_LISTS(config) \
518 (((config) & HI_WOW_EXT_NUM_LIST_MASK) >> HI_WOW_EXT_NUM_LIST_SHIFT)
519#define HI_WOW_EXT_GET_NUM_PATTERNS(config) \
520 (((config) & HI_WOW_EXT_NUM_PATTERNS_MASK) >> HI_WOW_EXT_NUM_PATTERNS_SHIFT)
521#define HI_WOW_EXT_GET_PATTERN_SIZE(config) \
522 (((config) & HI_WOW_EXT_PATTERN_SIZE_MASK) >> HI_WOW_EXT_PATTERN_SIZE_SHIFT)
523
524/*
525 * Early allocation configuration
526 * Support RAM bank configuration before BMI done and this eases the memory
527 * allocation at very early stage
528 * Bit Range Meaning
529 * --------- ----------------------------------
530 * [0:3] number of bank assigned to be IRAM
531 * [4:15] reserved
532 * [16:31] magic number
533 *
534 * Note:
535 * 1. target firmware would check magic number and if it's a match, firmware
536 * would consider the bits[0:15] are valid and base on that to calculate
537 * the end of DRAM. Early allocation would be located at that area and
538 * may be reclaimed when necesary
539 * 2. if no magic number is found, early allocation would happen at "_end"
540 * symbol of ROM which is located before the app-data and might NOT be
541 * re-claimable. If this is adopted, link script should keep this in
542 * mind to avoid data corruption.
543 */
544#define HI_EARLY_ALLOC_MAGIC 0x6d8a
545#define HI_EARLY_ALLOC_MAGIC_MASK 0xffff0000
546#define HI_EARLY_ALLOC_MAGIC_SHIFT 16
547#define HI_EARLY_ALLOC_IRAM_BANKS_MASK 0x0000000f
548#define HI_EARLY_ALLOC_IRAM_BANKS_SHIFT 0
549
550#define HI_EARLY_ALLOC_VALID() \
551 ((((HOST_INTEREST->hi_early_alloc) & HI_EARLY_ALLOC_MAGIC_MASK) >> HI_EARLY_ALLOC_MAGIC_SHIFT) \
552 == (HI_EARLY_ALLOC_MAGIC))
553#define HI_EARLY_ALLOC_GET_IRAM_BANKS() \
554 (((HOST_INTEREST->hi_early_alloc) & HI_EARLY_ALLOC_IRAM_BANKS_MASK) >> HI_EARLY_ALLOC_IRAM_BANKS_SHIFT)
555
556/*
557 * Intended for use by Host software, this macro returns the Target RAM
558 * address of any item in the host_interest structure.
559 * Example: target_addr = AR6002_HOST_INTEREST_ITEM_ADDRESS(hi_board_data);
560 */
561#define AR6002_HOST_INTEREST_ITEM_ADDRESS(item) \
562 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR6002_HOST_INTEREST_ADDRESS))->item)))
563
564#define AR6003_HOST_INTEREST_ITEM_ADDRESS(item) \
565 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR6003_HOST_INTEREST_ADDRESS))->item)))
566
567#define AR6004_HOST_INTEREST_ITEM_ADDRESS(item) \
568 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR6004_HOST_INTEREST_ADDRESS))->item)))
569
570#define AR6006_HOST_INTEREST_ITEM_ADDRESS(item) \
571 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR6006_HOST_INTEREST_ADDRESS))->item)))
572
573#define AR9888_HOST_INTEREST_ITEM_ADDRESS(item) \
574 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR9888_HOST_INTEREST_ADDRESS))->item)))
575
576#define AR6320_HOST_INTEREST_ITEM_ADDRESS(item) \
577 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR6320_HOST_INTEREST_ADDRESS))->item)))
578
579#define AR900B_HOST_INTEREST_ITEM_ADDRESS(item) \
580 (A_UINT32)((size_t)&((((struct host_interest_s *)(AR900B_HOST_INTEREST_ADDRESS))->item)))
581
582#define HOST_INTEREST_DBGLOG_IS_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530583 (!(HOST_INTEREST->hi_option_flag & HI_OPTION_DISABLE_DBGLOG))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800584
585#define HOST_INTEREST_PKTLOG_IS_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530586 ((HOST_INTEREST->hi_pktlog_num_buffers))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800587
588#define HOST_INTEREST_PROFILE_IS_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530589 (HOST_INTEREST->hi_option_flag & HI_OPTION_ENABLE_PROFILE)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800590
591#define LF_TIMER_STABILIZATION_IS_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530592 (!(HOST_INTEREST->hi_option_flag & HI_OPTION_NO_LFT_STBL))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800593
594#define IS_AMSDU_OFFLAOD_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530595 ((HOST_INTEREST->hi_option_flag2 & HI_OPTION_OFFLOAD_AMSDU))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800596
597#define HOST_INTEREST_DFS_IS_ENABLED() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530598 ((HOST_INTEREST->hi_option_flag2 & HI_OPTION_DFS_SUPPORT))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800599
600#define HOST_INTEREST_EARLY_CFG_DONE() \
Govind Singh55b8daf2016-06-09 16:02:47 +0530601 ((HOST_INTEREST->hi_option_flag2 & HI_OPTION_EARLY_CFG_DONE))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800602
603/*power save flag bit definitions*/
604#define HI_PWR_SAVE_LPL_ENABLED 0x1
605/*b1-b3 reserved*/
606/*b4-b5 : dev0 LPL type : 0 - none
607 1- Reduce Pwr Search
608 2- Reduce Pwr Listen*/
609/*b6-b7 : dev1 LPL type and so on for Max 8 devices*/
610#define HI_PWR_SAVE_LPL_DEV0_LSB 4
611#define HI_PWR_SAVE_LPL_DEV_MASK 0x3
612/*power save related utility macros*/
613#define HI_LPL_ENABLED() \
614 ((HOST_INTEREST->hi_pwr_save_flags & HI_PWR_SAVE_LPL_ENABLED))
615#define HI_DEV_LPL_TYPE_GET(_devix) \
616 (HOST_INTEREST->hi_pwr_save_flags & \
617 ((HI_PWR_SAVE_LPL_DEV_MASK) << \
618 (HI_PWR_SAVE_LPL_DEV0_LSB + \
619 (_devix)*2)))
620
621#define HOST_INTEREST_SMPS_IS_ALLOWED() \
622 ((HOST_INTEREST->hi_smps_options & HI_SMPS_ALLOW_MASK))
623
624/* Convert a Target virtual address into a Target physical address */
625#define AR6002_VTOP(vaddr) ((vaddr) & 0x001fffff)
626#define AR6003_VTOP(vaddr) ((vaddr) & 0x001fffff)
627#define AR6004_VTOP(vaddr) (vaddr)
628#define AR6006_VTOP(vaddr) (vaddr)
629#define AR9888_VTOP(vaddr) (vaddr)
630#define AR6320_VTOP(vaddr) (vaddr)
631#define AR900B_VTOP(vaddr) (vaddr)
632#define TARG_VTOP(TargetType, vaddr) \
633 (((TargetType) == TARGET_TYPE_AR6002) ? AR6002_VTOP(vaddr) : \
634 (((TargetType) == TARGET_TYPE_AR6003) ? AR6003_VTOP(vaddr) : \
635 (((TargetType) == TARGET_TYPE_AR6004) ? AR6004_VTOP(vaddr) : \
636 (((TargetType) == TARGET_TYPE_AR6006) ? AR6006_VTOP(vaddr) : \
637 (((TargetType) == TARGET_TYPE_AR9888) ? AR9888_VTOP(vaddr) : \
638 (((TargetType) == TARGET_TYPE_AR6320) ? AR6320_VTOP(vaddr) : \
639 (((TargetType) == TARGET_TYPE_AR900B) ? AR900B_VTOP(vaddr) : \
640 0)))))))
641
642#define HOST_INTEREST_ITEM_ADDRESS(TargetType, item) \
643 (((TargetType) == TARGET_TYPE_AR6002) ? AR6002_HOST_INTEREST_ITEM_ADDRESS(item) : \
Govind Singh55b8daf2016-06-09 16:02:47 +0530644 (((TargetType) == TARGET_TYPE_AR6003) ? AR6003_HOST_INTEREST_ITEM_ADDRESS(item) : \
645 (((TargetType) == TARGET_TYPE_AR6004) ? AR6004_HOST_INTEREST_ITEM_ADDRESS(item) : \
646 (((TargetType) == TARGET_TYPE_AR6006) ? AR6006_HOST_INTEREST_ITEM_ADDRESS(item) : \
647 (((TargetType) == TARGET_TYPE_AR9888) ? AR9888_HOST_INTEREST_ITEM_ADDRESS(item) : \
648 (((TargetType) == TARGET_TYPE_AR6320) ? AR6320_HOST_INTEREST_ITEM_ADDRESS(item) : \
649 (((TargetType) == TARGET_TYPE_AR900B) ? AR900B_HOST_INTEREST_ITEM_ADDRESS(item) : \
650 0)))))))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800651
652#define AR6002_BOARD_DATA_SZ 768
653#define AR6002_BOARD_EXT_DATA_SZ 0
654#define AR6003_BOARD_DATA_SZ 1024
655/* Reserve 1024 bytes for extended board data */
656#if defined(AR6002_REV43)
657#define AR6003_BOARD_EXT_DATA_SZ 1024
658#else
659#define AR6003_BOARD_EXT_DATA_SZ 768
660#endif
661#define AR6004_BOARD_DATA_SZ 7168
662#define AR6004_BOARD_EXT_DATA_SZ 0
663#define AR9888_BOARD_DATA_SZ 7168
664#define AR9888_BOARD_EXT_DATA_SZ 0
665#define AR6320_BOARD_DATA_SZ 8192
666#define AR6320_BOARD_EXT_DATA_SZ 0
Govind Singh55b8daf2016-06-09 16:02:47 +0530667#define QCA9377_BOARD_DATA_SZ 8192
668#define QCA9377_BOARD_EXT_DATA_SZ 0
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800669#define AR900B_BOARD_DATA_SZ 7168
670#define AR900B_BOARD_EXT_DATA_SZ 0
671
672#define AR6003_REV3_APP_START_OVERRIDE 0x946100
673#define AR6003_REV3_APP_LOAD_ADDRESS 0x545000
674#define AR6003_REV3_BOARD_EXT_DATA_ADDRESS 0x542330
675#define AR6003_REV3_DATASET_PATCH_ADDRESS 0x57FF74
676#define AR6003_REV3_RAM_RESERVE_SIZE 4096
677
678#define AR6004_REV1_BOARD_DATA_ADDRESS 0x423900
679#define AR6004_REV1_RAM_RESERVE_SIZE 19456
680#define AR6004_REV1_DATASET_PATCH_ADDRESS 0x425294
681
682#define AR6004_REV2_BOARD_DATA_ADDRESS 0x426400
683#define AR6004_REV2_RAM_RESERVE_SIZE 7168
684#define AR6004_REV2_DATASET_PATCH_ADDRESS 0x435294
685
686#define AR6004_REV5_BOARD_DATA_ADDRESS 0x436400
687#define AR6004_REV5_RAM_RESERVE_SIZE 7168
688#define AR6004_REV5_DATASET_PATCH_ADDRESS 0x437860
689
690/* Reserve 4K for OTA test script */
691#define AR6004_REV1_RAM_RESERVE_SIZE_FOR_TEST_SCRIPT 4096
692#define AR6004_REV1_TEST_SCRIPT_ADDRESS 0x422900
693
694/* # of A_UINT32 entries in targregs, used by DIAG_FETCH_TARG_REGS */
695#define AR6003_FETCH_TARG_REGS_COUNT 64
696#define AR6004_FETCH_TARG_REGS_COUNT 64
697#define AR9888_FETCH_TARG_REGS_COUNT 64
698#define AR6320_FETCH_TARG_REGS_COUNT 64
699#define AR900B_FETCH_TARG_REGS_COUNT 64
700
701#endif /* !__ASSEMBLER__ */
702
703#ifndef ATH_TARGET
704#include "athendpack.h"
705#endif
706
707#endif /* __TARGADDRS_H__ */