xref: /openbmc/linux/drivers/net/wireless/ti/wl18xx/conf.h (revision ec4f4b76a622822d5d47e99bf4062fc308a7d424)
146a1d512SLuciano Coelho /*
246a1d512SLuciano Coelho  * This file is part of wl18xx
346a1d512SLuciano Coelho  *
446a1d512SLuciano Coelho  * Copyright (C) 2011 Texas Instruments Inc.
546a1d512SLuciano Coelho  *
646a1d512SLuciano Coelho  * This program is free software; you can redistribute it and/or
746a1d512SLuciano Coelho  * modify it under the terms of the GNU General Public License
846a1d512SLuciano Coelho  * version 2 as published by the Free Software Foundation.
946a1d512SLuciano Coelho  *
1046a1d512SLuciano Coelho  * This program is distributed in the hope that it will be useful, but
1146a1d512SLuciano Coelho  * WITHOUT ANY WARRANTY; without even the implied warranty of
1246a1d512SLuciano Coelho  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1346a1d512SLuciano Coelho  * General Public License for more details.
1446a1d512SLuciano Coelho  *
1546a1d512SLuciano Coelho  * You should have received a copy of the GNU General Public License
1646a1d512SLuciano Coelho  * along with this program; if not, write to the Free Software
1746a1d512SLuciano Coelho  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
1846a1d512SLuciano Coelho  * 02110-1301 USA
1946a1d512SLuciano Coelho  *
2046a1d512SLuciano Coelho  */
2146a1d512SLuciano Coelho 
2246a1d512SLuciano Coelho #ifndef __WL18XX_CONF_H__
2346a1d512SLuciano Coelho #define __WL18XX_CONF_H__
2446a1d512SLuciano Coelho 
2518b70ac9SLuciano Coelho #define WL18XX_CONF_MAGIC	0x10e100ca
26*ec4f4b76SIdo Reis #define WL18XX_CONF_VERSION	(WLCORE_CONF_VERSION | 0x0004)
2718b70ac9SLuciano Coelho #define WL18XX_CONF_MASK	0x0000ffff
2818b70ac9SLuciano Coelho #define WL18XX_CONF_SIZE	(WLCORE_CONF_SIZE + \
2918b70ac9SLuciano Coelho 				 sizeof(struct wl18xx_priv_conf))
3018b70ac9SLuciano Coelho 
31d61c6b55SArik Nemtsov #define NUM_OF_CHANNELS_11_ABG 150
32d61c6b55SArik Nemtsov #define NUM_OF_CHANNELS_11_P 7
33d61c6b55SArik Nemtsov #define SRF_TABLE_LEN 16
34d61c6b55SArik Nemtsov #define PIN_MUXING_SIZE 2
35*ec4f4b76SIdo Reis #define WL18XX_TRACE_LOSS_GAPS_TX 10
36*ec4f4b76SIdo Reis #define WL18XX_TRACE_LOSS_GAPS_RX 18
37d61c6b55SArik Nemtsov 
38d61c6b55SArik Nemtsov struct wl18xx_mac_and_phy_params {
3946a1d512SLuciano Coelho 	u8 phy_standalone;
40*ec4f4b76SIdo Reis 	u8 spare0;
4146a1d512SLuciano Coelho 	u8 enable_clpc;
4246a1d512SLuciano Coelho 	u8 enable_tx_low_pwr_on_siso_rdl;
4346a1d512SLuciano Coelho 	u8 auto_detect;
4446a1d512SLuciano Coelho 	u8 dedicated_fem;
45d61c6b55SArik Nemtsov 
4646a1d512SLuciano Coelho 	u8 low_band_component;
47d61c6b55SArik Nemtsov 
48d61c6b55SArik Nemtsov 	/* Bit 0: One Hot, Bit 1: Control Enable, Bit 2: 1.8V, Bit 3: 3V */
4946a1d512SLuciano Coelho 	u8 low_band_component_type;
50d61c6b55SArik Nemtsov 
5146a1d512SLuciano Coelho 	u8 high_band_component;
52d61c6b55SArik Nemtsov 
53d61c6b55SArik Nemtsov 	/* Bit 0: One Hot, Bit 1: Control Enable, Bit 2: 1.8V, Bit 3: 3V */
5446a1d512SLuciano Coelho 	u8 high_band_component_type;
55d61c6b55SArik Nemtsov 	u8 number_of_assembled_ant2_4;
56d61c6b55SArik Nemtsov 	u8 number_of_assembled_ant5;
57d61c6b55SArik Nemtsov 	u8 pin_muxing_platform_options[PIN_MUXING_SIZE];
58d61c6b55SArik Nemtsov 	u8 external_pa_dc2dc;
5946a1d512SLuciano Coelho 	u8 tcxo_ldo_voltage;
6046a1d512SLuciano Coelho 	u8 xtal_itrim_val;
6146a1d512SLuciano Coelho 	u8 srf_state;
62d61c6b55SArik Nemtsov 	u8 srf1[SRF_TABLE_LEN];
63d61c6b55SArik Nemtsov 	u8 srf2[SRF_TABLE_LEN];
64d61c6b55SArik Nemtsov 	u8 srf3[SRF_TABLE_LEN];
6546a1d512SLuciano Coelho 	u8 io_configuration;
6646a1d512SLuciano Coelho 	u8 sdio_configuration;
6746a1d512SLuciano Coelho 	u8 settings;
6846a1d512SLuciano Coelho 	u8 rx_profile;
69d61c6b55SArik Nemtsov 	u8 per_chan_pwr_limit_arr_11abg[NUM_OF_CHANNELS_11_ABG];
70d61c6b55SArik Nemtsov 	u8 pwr_limit_reference_11_abg;
71d61c6b55SArik Nemtsov 	u8 per_chan_pwr_limit_arr_11p[NUM_OF_CHANNELS_11_P];
72d61c6b55SArik Nemtsov 	u8 pwr_limit_reference_11p;
73*ec4f4b76SIdo Reis 	u8 spare1[9];
74*ec4f4b76SIdo Reis 	u8 spare2[9];
7546a1d512SLuciano Coelho 	u8 primary_clock_setting_time;
7646a1d512SLuciano Coelho 	u8 clock_valid_on_wake_up;
7746a1d512SLuciano Coelho 	u8 secondary_clock_setting_time;
78d61c6b55SArik Nemtsov 	u8 board_type;
79d61c6b55SArik Nemtsov 	/* enable point saturation */
8016ea4733SIdo Reis 	u8 psat;
81d61c6b55SArik Nemtsov 	/* low/medium/high Tx power in dBm */
8216ea4733SIdo Reis 	s8 low_power_val;
8316ea4733SIdo Reis 	s8 med_power_val;
8416ea4733SIdo Reis 	s8 high_power_val;
85*ec4f4b76SIdo Reis 	s8 per_sub_band_tx_trace_loss[WL18XX_TRACE_LOSS_GAPS_TX];
86*ec4f4b76SIdo Reis 	s8 per_sub_band_rx_trace_loss[WL18XX_TRACE_LOSS_GAPS_RX];
87*ec4f4b76SIdo Reis 	u8 tx_rf_margin;
88*ec4f4b76SIdo Reis 
89*ec4f4b76SIdo Reis 	u8 padding[4];
9034bacf73SLuciano Coelho } __packed;
9146a1d512SLuciano Coelho 
92c68cc0f6SYair Shapira enum wl18xx_ht_mode {
93c68cc0f6SYair Shapira 	/* Default - use MIMO, fallback to SISO20 */
94c68cc0f6SYair Shapira 	HT_MODE_DEFAULT = 0,
95c68cc0f6SYair Shapira 
96c68cc0f6SYair Shapira 	/* Wide - use SISO40 */
97c68cc0f6SYair Shapira 	HT_MODE_WIDE = 1,
98c68cc0f6SYair Shapira 
99c68cc0f6SYair Shapira 	/* Use SISO20 */
100c68cc0f6SYair Shapira 	HT_MODE_SISO20 = 2,
101c68cc0f6SYair Shapira };
102c68cc0f6SYair Shapira 
103c68cc0f6SYair Shapira struct wl18xx_ht_settings {
104c68cc0f6SYair Shapira 	/* DEFAULT / WIDE / SISO20 */
105c68cc0f6SYair Shapira 	u8 mode;
106c68cc0f6SYair Shapira } __packed;
107c68cc0f6SYair Shapira 
10823ee9bf8SLuciano Coelho struct wl18xx_priv_conf {
109c68cc0f6SYair Shapira 	/* Module params structures */
110c68cc0f6SYair Shapira 	struct wl18xx_ht_settings ht;
111c68cc0f6SYair Shapira 
112d61c6b55SArik Nemtsov 	/* this structure is copied wholesale to FW */
113d61c6b55SArik Nemtsov 	struct wl18xx_mac_and_phy_params phy;
11434bacf73SLuciano Coelho } __packed;
11546a1d512SLuciano Coelho 
11646a1d512SLuciano Coelho #endif /* __WL18XX_CONF_H__ */
117