lin
2025-07-31 065ea569db06206874bbfa18eb25ff6121aec09b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
config WLAN_VENDOR_SWT6621S
   tristate "SWT6621S chipset support"
   depends on CFG80211
   select CFG80211_WEXT_EXPORT
   help
   This module adds support for SeekWave 802.11ax wireless adapter chipset.
 
   If you have a wireless card belonging to this class, say Y.
 
   Note that the answer to this question doesn't directly affect the
   kernel: saying N will just cause the configurator to skip all the
   questions about these cards. If you say Y, you will be asked for
   your specific card in the following questions.
 
if WLAN_VENDOR_SWT6621S
config SWT6621S_LEGACY_P2P
   bool "SWT6621S Legacy P2P"
   default n
   help
   Say Y here to create interface p2p0 default
 
config SWT6621S_REPEATER_MODE
        bool "SWT6621S Repeater Mode"
        default n
        help
        Say Y here to support repeater mode
 
config SWT6621S_EXTERNAL_REGDB
   bool "Use External Regdomain Database"
   default n
   help
   Say Y here disable regdomain database in driver
 
config SWT6621S_TDLS
   bool "SWT6621S TDLS"
   default n
   help
   Say Y here to enable TDLS
 
config SWT6621S_DFS_MASTER
   bool "SWT6621S DFS Master"
   depends on SWT6621S_EXTERNAL_REGDB
   default n
   help
   Say Y here to support DFS master
 
config SWT6621S_OFFCHAN_TX
   bool "Seekwave OFFCHAN TX"
   default n
   help
   Say Y here to support off-channel TX
 
config SWT6621S_6GHZ
   bool "Seekwave 6GHz"
   default n
   help
   Say Y here to support 6GHz
 
config SWT6621S_USB3_WORKAROUND
   bool "SWT6621S USB 3.0 workaround"
   default n
   help
   Say Y here to enable workaround for USB 3.0
 
config SWT6621S_RX_REORDER_TIMEOUT
   int "SWT6621S reorder timeout (50-500)"
   range 50 500
   default 100
 
config SWT6621S_SKB_RECYCLE
   bool "SWT6621S skb recycle"
   default n
   help
   Say Y here to support skb recycle
 
config SWT6621S_DEFAULT_COUNTRY
   string "SWT6621S Default Country Code"
   default ""
   help
   Set Default Country Code
 
config SWT6621S_CHIP_ID
   string "SWT6621S Chip ID"
   default ""
   help
   Set Chip ID
 
config SWT6621S_PROJECT_NAME
   string "SWT6621S Default Project Name"
   default "SEEKWAVE"
   help
   Set Default Project Name
 
config SWT6621S_NOT_WAKEUP_HOST
   bool "SWT6621S Wakeup Host Enable"
   default n
   help
   Say Y here to support wakeup host
 
config SWT6621S_WDS
   bool "SWT6621S Wds Support"
   default n
   help
   Say Y here to support WDS
 
config SWT6621S_PRESUSPEND_SUPPORT
   bool "SWT6621S Presuspend Support"
   default n
   help
   Say Y here to support presuspend
 
choice
   prompt "SWT6621S Log Level"
   default SWT6621S_LOG_DEBUG
   help
   SEEKWAVE Log Level
 
config SWT6621S_LOG_ERROR
   bool "ERROR"
   help
   This feature set Error log level
 
config SWT6621S_LOG_WARN
   bool "WARN"
   help
   This feature set Warnning log level
 
config SWT6621S_LOG_INFO
   bool "INFO"
   help
   This feature set INFO log level
 
config SWT6621S_LOG_DEBUG
   bool "DEBUG"
   help
   This feature set DEBUG log level
 
config SWT6621S_LOG_DETAIL
   bool "DETAIL"
   help
   This feature set DETAIL log level
 
endchoice
 
endif