diff options
author | Ido Reis <idor@ti.com> | 2012-04-23 17:49:19 +0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-07 19:10:57 +0400 |
commit | 16ea4733210d741eeb5413acd261e675a12f980e (patch) | |
tree | 54c462ce566218f725927e971050e16e3d611572 /drivers/net/wireless/ti/wl18xx/reg.h | |
parent | 73395a79df00c3e0101bd7a0229dbbcc065b606a (diff) | |
download | linux-16ea4733210d741eeb5413acd261e675a12f980e.tar.xz |
wl18xx: FW/PHY arguments added for PG2
PG2 requires 4 new parameters that to be passed to the PHY.
Use the actual PHY initialization struct size for the mem size of the
PHY_INIT section, to account for additions in params.
[Make sure PG1 still gets the original struct - Arik]
Signed-off-by: Ido Reis <idor@ti.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl18xx/reg.h')
-rw-r--r-- | drivers/net/wireless/ti/wl18xx/reg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/reg.h b/drivers/net/wireless/ti/wl18xx/reg.h index e81f60913e88..a824b26702a8 100644 --- a/drivers/net/wireless/ti/wl18xx/reg.h +++ b/drivers/net/wireless/ti/wl18xx/reg.h @@ -236,6 +236,12 @@ struct wl18xx_mac_and_phy_params { u8 clock_valid_on_wake_up; u8 secondary_clock_setting_time; u8 board_type; + /* enable point saturation */ + u8 psat; + /* low/medium/high Tx power in dBm */ + s8 low_power_val; + s8 med_power_val; + s8 high_power_val; u8 padding[1]; } __packed; |