blob: 4a867dac7b5b5470fede4755870f1fc15b9464df [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001# This file allows user to override the factory
2# defaults for the WLAN Driver
3
4# Enable IMPS or not
5gEnableImps=1
6
7# Enable/Disable Idle Scan
8gEnableIdleScan=0
9
10# Increase sleep duration (seconds) during IMPS
11# 0 implies no periodic wake up from IMPS. Periodic wakeup is
12# unnecessary if Idle Scan is disabled.
13gImpsModSleepTime=0
14
15# Enable BMPS or not
16gEnableBmps=1
17
18# Enable suspend or not
19# 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
20gEnableSuspend=3
21
22# Phy Mode (auto, b, g, n, etc)
23gDot11Mode=0
24
25# Handoff Enable(1) Disable(0)
26gEnableHandoff=0
27
28# CSR Roaming Enable(1) Disable(0)
29gRoamingTime=0
30
31# Assigned MAC Addresses - This will be used until NV items are in place
32# Each byte of MAC address is represented in Hex format as XX
33Intf0MacAddress=000AF58989FF
34Intf1MacAddress=000AF58989FE
35Intf2MacAddress=000AF58989FD
36Intf3MacAddress=000AF58989FC
37
38# UAPSD service interval for VO,VI, BE, BK traffic
39InfraUapsdVoSrvIntv=0
40InfraUapsdViSrvIntv=0
41InfraUapsdBeSrvIntv=0
42InfraUapsdBkSrvIntv=0
43
44# Disable RSSI FW filtering
45gEnableFWRssiMonitoring=0
46
47# Make 1x1 the default antenna configuration
48gNumRxAnt=1
49
50# Beacon filtering frequency (unit in beacon intervals)
51gNthBeaconFilter=50
52
53# Enable WAPI or not
54# WAPIIsEnabled=0
55
56# Flags to filter Mcast abd Bcast RX packets.
57# Value 0: No filtering, 1: Filter all Multicast.
58# 2: Filter all Broadcast. 3: Filter all Mcast abd Bcast
59McastBcastFilter=3
60
61#Flag to enable HostARPOffload feature or not
62hostArpOffload=0
63
64#SoftAP Related Parameters
65# AP MAc addr
66gAPMacAddr=000AF58989EF
67
68# 802.11n Protection flag
69gEnableApProt=1
70
71#Enable OBSS protection
72gEnableApOBSSProt=0
73
74#Enable/Disable UAPSD for SoftAP
75gEnableApUapsd=1
76
77# Fixed Rate
78gFixedRate=0
79
80# Maximum Tx power
81# gTxPowerCap=30
82
83# Fragmentation Threshold
84# gFragmentationThreshold=2346
85
86# RTS threshold
87RTSThreshold=2347
88
89# Intra-BSS forward
90gDisableIntraBssFwd=0
91
92# WMM Enable/Disable
93WmmIsEnabled=0
94
95# 802.11d support
96g11dSupportEnabled=1
97
98# CCX Support and fast transition
99CcxEnabled=0
100FastTransitionEnabled=0
101ImplicitQosIsEnabled=1
102gNeighborScanTimerPeriod=200
103
104gNeighborLookupThreshold=50
105gNeighborReassocThreshold=55
106
107gNeighborScanChannelList=1,11,36,64
108gNeighborScanChannelMinTime=20
109gNeighborScanChannelMaxTime=30
110gMaxNeighborReqTries=3
111
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700112# Legacy (non-CCX, non-802.11r) Fast Roaming Support
113# To enable, set FastRoamEnabled=1, gEnableFWRssiMonitoring=1, FastTransitionEnabled=1
114# To disable, set FastRoamEnabled=0, gEnableFWRssiMonitoring=0, FastTransitionEnabled=0
115FastRoamEnabled=0
116
Jeff Johnson43971f52012-07-17 12:26:56 -0700117#Check if the AP to which we are roaming is better than current AP in terms of RSSI.
118#Checking is disabled if set to Zero.Otherwise it will use this value as to how better
119#the RSSI of the new/roamable AP should be for roaming
120RoamRssiDiff=0
121
Jeff Johnson295189b2012-06-20 16:38:30 -0700122# SAP Country code
123# Default Country Code is 2 bytes, 3rd byte is optional indoor or out door.
124# Example
125# US Indoor, USI
126# Korea Outdoor, KRO
127# Japan without optional byte, JP
128# France without optional byte, FR
129#gAPCntryCode=USI
130
131#Short Guard Interval Enable/disable
132gShortGI20Mhz=1
133gShortGI40Mhz=1
134
135#Auto Shutdown Value in seconds. A value of 0 means Auto shutoff is disabled
136gAPAutoShutOff=0
137
138# SAP auto channel selection configuration
139# 0 = disable auto channel selection
140# 1 = enable auto channel selection, channel provided by supplicant will be ignored
141gApAutoChannelSelection=0
142
143# Listen Energy Detect Mode Configuration
144# Valid values 0-128
145# 128 means disable Energy Detect feature
146# 0-9 are threshold code and 7 is recommended value from system if feature is to be enabled.
147# 10-128 are reserved.
148# The EDET threshold mapping is as follows in 3dB step:
149# 0 = -60 dBm
150# 1 = -63 dBm
151# 2 = -66 dBm
152# ...
153# 7 = -81 dBm
154# 8 = -84 dBm
155# 9 = -87 dBm
156# Note: Any of these settings are valid. Setting 0 would yield the highest power saving (in a noisy environment) at the cost of more range. The range impact is approximately #calculated as:
157#
158# Range Loss (dB) = EDET threshold level (dBm) + 97 dBm.
159#
160gEnablePhyAgcListenMode=128
161
162#Preferred channel to start BT AMP AP mode (0 means, any channel)
163BtAmpPreferredChannel=0
164
165#Preferred band (both or 2.4 only or 5 only)
166BandCapability=0
167
168#Beacon Early Termination (1 = enable the BET feature, 0 = disable)
169enableBeaconEarlyTermination=0
170beaconEarlyTerminationWakeInterval=3
171
172#Bluetooth Alternate Mac Phy (1 = enable the BT AMP feature, 0 = disable)
Jeff Johnson43971f52012-07-17 12:26:56 -0700173gEnableBtAmp=0
Jeff Johnson295189b2012-06-20 16:38:30 -0700174
175#SOFTAP Channel Range selection
176gAPChannelSelectStartChannel=1
177gAPChannelSelectEndChannel=11
178
179#SOFTAP Channel Range selection Operating band
180# 0:2.4GHZ 1: LOW-5GHZ 2:MID-5GHZ 3:HIGH-5GHZ 4: 4.9HZ BAND
181gAPChannelSelectOperatingBand=0
182
183#Enable Keep alive with non-zero period value
184#gStaKeepAlivePeriod = 30
185
186#If set will start with active scan after driver load, otherwise will start with
187#passive scan to find out the domain
188gEnableBypass11d=1
189
190#If set to 0, will not scan DFS channels
191gEnableDFSChnlScan=1
192
193# Enable logp/SSR
194gEnableLogp=1
195
196# Enable Automatic Tx Power control
197gEnableAutomaticTxPowerControl=1
198END
199# Note: Configuration parser would not read anything past the END marker