developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1 | #!/bin/ash |
| 2 | |
developer | 071927d | 2022-08-31 20:39:29 +0800 | [diff] [blame] | 3 | interface=$1 # phy0/phy1/ra0 |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 4 | cmd_type=$2 # set/show/e2p/mac/dump |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 5 | full_cmd=$3 |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 6 | interface_ori=${interface} |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 7 | SOC_start_idx="0" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 8 | SOC_end_idx="0" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 9 | is_eagle="0" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 10 | |
| 11 | work_mode="RUN" # RUN/PRINT/DEBUG |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 12 | iwpriv_file="/tmp/iwpriv_wrapper" |
| 13 | interface_file="/tmp/interface" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 14 | phy_idx=$(echo ${interface} | tr -dc '0-9') |
| 15 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 16 | function do_cmd() { |
| 17 | case ${work_mode} in |
| 18 | "RUN") |
| 19 | eval "$1" |
| 20 | ;; |
| 21 | "PRINT") |
| 22 | echo "$1" |
| 23 | ;; |
| 24 | "DEBUG") |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 25 | echo "$1" |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 26 | eval "$1" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 27 | ;; |
| 28 | esac |
| 29 | } |
| 30 | |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 31 | function print_debug() { |
| 32 | if [ "${work_mode}" = "DEBUG" ]; then |
| 33 | echo "$1" |
| 34 | fi |
| 35 | } |
| 36 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 37 | function write_dmesg() { |
| 38 | echo "$1" > /dev/kmsg |
| 39 | } |
| 40 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 41 | function record_config() { |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 42 | local config=$1 |
| 43 | local tmp_file=$3 |
| 44 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 45 | # check it is SOC(mt7986)/Eagle or PCIE card (mt7915/7916), and write its config |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 46 | if [ ${tmp_file} != ${interface_file} ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 47 | if [ $phy_idx -lt $SOC_start_idx ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 48 | config="${config}_PCIE" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 49 | elif [ $phy_idx -ge $SOC_start_idx ]; then |
| 50 | config="${config}_SOC" |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 51 | fi |
| 52 | fi |
| 53 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 54 | if [ -f ${tmp_file} ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 55 | if grep -q ${config} ${tmp_file}; then |
| 56 | sed -i "/${config}/c\\${config}=$2" ${tmp_file} |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 57 | else |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 58 | echo "${config}=$2" >> ${tmp_file} |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 59 | fi |
| 60 | else |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 61 | echo "${config}=$2" >> ${tmp_file} |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 62 | fi |
| 63 | } |
| 64 | |
| 65 | function get_config() { |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 66 | local config=$1 |
| 67 | local tmp_file=$2 |
| 68 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 69 | if [ ! -f ${tmp_file} ]; then |
| 70 | echo "" |
| 71 | return |
| 72 | fi |
| 73 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 74 | # check it is SOC(mt7986)/Eagle or PCIE card (mt7915/7916), and write its config |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 75 | if [ ${tmp_file} != ${interface_file} ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 76 | if [ $phy_idx -lt $SOC_start_idx ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 77 | config="${config}_PCIE" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 78 | elif [ $phy_idx -ge $SOC_start_idx ]; then |
| 79 | config="${config}_SOC" |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 80 | fi |
| 81 | fi |
| 82 | |
| 83 | if grep -q ${config} ${tmp_file}; then |
| 84 | echo "$(cat ${tmp_file} | grep ${config} | sed s/=/' '/g | cut -d " " -f 2)" |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 85 | else |
| 86 | echo "" |
| 87 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 88 | } |
| 89 | |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 90 | function parse_sku { |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 91 | SOC_start_idx=$(get_config "STARTIDX" ${interface_file}) |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 92 | SOC_end_idx=$(get_config "ENDIDX" ${interface_file}) |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 93 | is_eagle=$(get_config "IS_EAGLE" ${interface_file}) |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 94 | local eeprom_file=/sys/kernel/debug/ieee80211/phy0/mt76/eeprom |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 95 | if [ -z "${SOC_start_idx}" ] || [ -z "${SOC_end_idx}" ] || [ -z "${is_eagle}" ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 96 | if [ ! -z "$(head -c 2 ${eeprom_file} | hexdump | grep "7916")" ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 97 | SOC_start_idx="2" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 98 | SOC_end_idx="3" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 99 | is_eagle="0" |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 100 | elif [ ! -z "$(head -c 2 ${eeprom_file} | hexdump | grep "7915")" ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 101 | SOC_start_idx="1" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 102 | SOC_end_idx="2" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 103 | is_eagle="0" |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 104 | elif [ ! -z "$(head -c 2 ${eeprom_file} | hexdump | grep "7986")" ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 105 | SOC_start_idx="0" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 106 | SOC_end_idx="1" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 107 | is_eagle="0" |
| 108 | elif [ ! -z "$(head -c 2 ${eeprom_file} | hexdump | grep "7990")" ]; then |
| 109 | SOC_start_idx="0" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 110 | SOC_end_idx="2" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 111 | is_eagle="1" |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 112 | else |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 113 | echo "Interface Conversion Failed!" |
| 114 | echo "Please use iwpriv <phy0/phy1/..> set <...> or configure the sku of your board manually by the following commands" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 115 | echo "For AX6000:" |
| 116 | echo " echo STARTIDX=0 >> ${interface_file}" |
| 117 | echo " echo ENDIDX=1 >> ${interface_file}" |
| 118 | echo " echo IS_EAGLE=0 >> ${interface_file}" |
| 119 | echo "For AX7800:" |
| 120 | echo " echo STARTIDX=2 >> ${interface_file}" |
| 121 | echo " echo ENDIDX=3 >> ${interface_file}" |
| 122 | echo " echo IS_EAGLE=0 >> ${interface_file}" |
| 123 | echo "For AX8400:" |
| 124 | echo " echo STARTIDX=1 >> ${interface_file}" |
| 125 | echo " echo ENDIDX=2 >> ${interface_file}" |
| 126 | echo " echo IS_EAGLE=0 >> ${interface_file}" |
| 127 | echo "For Eagle:" |
| 128 | echo " echo STARTIDX=1 >> ${interface_file}" |
| 129 | echo " echo ENDIDX=2 >> ${interface_file}" |
| 130 | echo " echo IS_EAGLE=1 >> ${interface_file}" |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 131 | exit 0 |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 132 | fi |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 133 | record_config "STARTIDX" ${SOC_start_idx} ${interface_file} |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 134 | record_config "ENDIDX" ${SOC_end_idx} ${interface_file} |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 135 | record_config "IS_EAGLE" ${is_eagle} ${interface_file} |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 136 | fi |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 137 | } |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 138 | |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 139 | function convert_interface { |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 140 | if [ ${is_eagle} == "0" ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 141 | if [[ $1 == "raix"* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 142 | phy_idx=1 |
| 143 | elif [[ $1 == "rai"* ]]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 144 | phy_idx=0 |
| 145 | elif [[ $1 == "rax"* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 146 | phy_idx=$((SOC_start_idx+1)) |
| 147 | else |
| 148 | phy_idx=$SOC_start_idx |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 149 | fi |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 150 | |
| 151 | # convert phy index according to band idx |
| 152 | local band_idx=$(get_config "ATECTRLBANDIDX" ${iwpriv_file}) |
| 153 | if [ "${band_idx}" = "0" ]; then |
| 154 | if [[ $1 == "raix"* ]]; then |
| 155 | phy_idx=0 |
| 156 | elif [[ $1 == "rax"* ]]; then |
| 157 | phy_idx=$SOC_start_idx |
| 158 | fi |
| 159 | elif [ "${band_idx}" = "1" ]; then |
| 160 | if [[ $1 == "rai"* ]]; then |
| 161 | # AX8400: mt7915 remain phy0 |
| 162 | # AX7800: mt7916 becomes phy1 |
| 163 | phy_idx=$((SOC_start_idx-1)) |
| 164 | elif [[ $1 == "ra"* ]]; then |
| 165 | phy_idx=$((SOC_start_idx+1)) |
| 166 | fi |
| 167 | fi |
| 168 | else |
| 169 | # Eagle has different mapping method |
| 170 | # phy0: ra0 |
| 171 | # phy1: rai0 |
| 172 | # phy2: rax0 |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 173 | if [[ $1 == "rai"* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 174 | phy_idx=1 |
| 175 | elif [[ $1 == "rax"* ]]; then |
| 176 | phy_idx=2 |
| 177 | else |
| 178 | phy_idx=0 |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 179 | fi |
| 180 | fi |
| 181 | |
| 182 | interface="phy${phy_idx}" |
| 183 | } |
| 184 | |
| 185 | function change_band_idx { |
| 186 | local new_idx=$1 |
| 187 | local new_phy_idx=$phy_idx |
| 188 | |
| 189 | local old_idx=$(get_config "ATECTRLBANDIDX" ${iwpriv_file}) |
| 190 | |
| 191 | |
| 192 | if [[ ${interface_ori} == "ra"* ]]; then |
| 193 | if [ -z "${old_idx}" ] || [ "${old_idx}" != "${new_idx}" ]; then |
| 194 | if [ "${new_idx}" = "0" ]; then |
| 195 | # raix0 & rai0 becomes rai0 |
| 196 | if [[ $interface_ori == "rai"* ]]; then |
| 197 | new_phy_idx=0 |
| 198 | # rax0 & ra0 becomes ra0 |
| 199 | elif [[ $interface_ori == "ra"* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 200 | new_phy_idx=$SOC_start_idx |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 201 | fi |
| 202 | elif [ "${new_idx}" = "1" ]; then |
| 203 | # raix0 & rai0 becomes raix0 |
| 204 | if [[ $interface_ori == "rai"* ]]; then |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 205 | # For AX8400 => don't change phy idx |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 206 | if [ ${SOC_start_idx} != "1" ]; then |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 207 | new_phy_idx=1 |
| 208 | fi |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 209 | # rax0 & ra0 becomes rax0 |
| 210 | elif [[ $interface_ori == "ra"* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 211 | new_phy_idx=$((SOC_start_idx+1)) |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 212 | fi |
| 213 | fi |
| 214 | fi |
| 215 | |
| 216 | if [ ${new_phy_idx} != ${phy_idx} ]; then |
| 217 | do_ate_work "ATESTOP" |
| 218 | phy_idx=$new_phy_idx |
| 219 | interface="phy${phy_idx}" |
| 220 | do_ate_work "ATESTART" |
| 221 | fi |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 222 | fi |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 223 | record_config "ATECTRLBANDIDX" ${new_idx} ${iwpriv_file} |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 224 | } |
| 225 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 226 | function simple_convert() { |
| 227 | if [ "$1" = "ATETXCNT" ]; then |
| 228 | echo "tx_count" |
| 229 | elif [ "$1" = "ATETXLEN" ]; then |
| 230 | echo "tx_length" |
| 231 | elif [ "$1" = "ATETXMCS" ]; then |
| 232 | echo "tx_rate_idx" |
| 233 | elif [ "$1" = "ATEVHTNSS" ]; then |
| 234 | echo "tx_rate_nss" |
| 235 | elif [ "$1" = "ATETXLDPC" ]; then |
| 236 | echo "tx_rate_ldpc" |
| 237 | elif [ "$1" = "ATETXSTBC" ]; then |
| 238 | echo "tx_rate_stbc" |
| 239 | elif [ "$1" = "ATEPKTTXTIME" ]; then |
| 240 | echo "tx_time" |
| 241 | elif [ "$1" = "ATEIPG" ]; then |
| 242 | echo "tx_ipg" |
| 243 | elif [ "$1" = "ATEDUTYCYCLE" ]; then |
| 244 | echo "tx_duty_cycle" |
| 245 | elif [ "$1" = "ATETXFREQOFFSET" ]; then |
| 246 | echo "freq_offset" |
| 247 | else |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 248 | echo "undefined" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 249 | fi |
| 250 | } |
| 251 | |
| 252 | function convert_tx_mode() { |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 253 | # Remove leading zeros |
developer | 4feb101 | 2023-01-30 17:29:07 +0800 | [diff] [blame] | 254 | local tx_mode=$(echo $1 | sed -r 's/0+([0-9]+)/\1/g') |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 255 | |
| 256 | if [ "$tx_mode" = "0" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 257 | echo "cck" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 258 | elif [ "$tx_mode" = "1" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 259 | echo "ofdm" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 260 | elif [ "$tx_mode" = "2" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 261 | echo "ht" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 262 | elif [ "$tx_mode" = "4" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 263 | echo "vht" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 264 | elif [ "$tx_mode" = "8" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 265 | echo "he_su" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 266 | elif [ "$tx_mode" = "9" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 267 | echo "he_er" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 268 | elif [ "$tx_mode" = "10" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 269 | echo "he_tb" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 270 | elif [ "$tx_mode" = "11" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 271 | echo "he_mu" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 272 | elif [ "$tx_mode" = "13" ]; then |
| 273 | echo "eht_su" |
| 274 | elif [ "$tx_mode" = "14" ]; then |
| 275 | echo "eht_tb" |
| 276 | elif [ "$tx_mode" = "15" ]; then |
| 277 | echo "eht_mu" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 278 | else |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 279 | echo "undefined" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 280 | fi |
| 281 | } |
| 282 | |
| 283 | function convert_gi { |
| 284 | local tx_mode=$1 |
| 285 | local val=$2 |
| 286 | local sgi="0" |
| 287 | local he_ltf="0" |
| 288 | |
| 289 | case ${tx_mode} in |
| 290 | "ht"|"vht") |
| 291 | sgi=${val} |
| 292 | ;; |
| 293 | "he_su"|"he_er") |
| 294 | case ${val} in |
| 295 | "0") |
| 296 | ;; |
| 297 | "1") |
| 298 | he_ltf="1" |
| 299 | ;; |
| 300 | "2") |
| 301 | sgi="1" |
| 302 | he_ltf="1" |
| 303 | ;; |
| 304 | "3") |
| 305 | sgi="2" |
| 306 | he_ltf="2" |
| 307 | ;; |
| 308 | "4") |
| 309 | he_ltf="2" |
| 310 | ;; |
| 311 | *) |
| 312 | echo "unknown gi" |
| 313 | esac |
| 314 | ;; |
| 315 | "he_mu") |
| 316 | case ${val} in |
| 317 | "0") |
| 318 | he_ltf="2" |
| 319 | ;; |
| 320 | "1") |
| 321 | he_ltf="1" |
| 322 | ;; |
| 323 | "2") |
| 324 | sgi="1" |
| 325 | he_ltf="1" |
| 326 | ;; |
| 327 | "3") |
| 328 | sgi="2" |
| 329 | he_ltf="2" |
| 330 | ;; |
| 331 | *) |
| 332 | echo "unknown gi" |
| 333 | esac |
| 334 | ;; |
| 335 | "he_tb") |
| 336 | case ${val} in |
| 337 | "0") |
| 338 | sgi="1" |
| 339 | ;; |
| 340 | "1") |
| 341 | sgi="1" |
| 342 | he_ltf="1" |
| 343 | ;; |
| 344 | "2") |
| 345 | sgi="2" |
| 346 | he_ltf="2" |
| 347 | ;; |
| 348 | *) |
| 349 | echo "unknown gi" |
| 350 | esac |
| 351 | ;; |
| 352 | *) |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 353 | print_debug "legacy mode no need gi" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 354 | esac |
| 355 | |
| 356 | do_cmd "mt76-test ${interface} set tx_rate_sgi=${sgi} tx_ltf=${he_ltf}" |
| 357 | } |
| 358 | |
| 359 | function convert_channel { |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 360 | local ctrl_band_idx=$(get_config "ATECTRLBANDIDX" ${iwpriv_file}) |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 361 | local ch=$(echo $1 | sed s/:/' '/g | cut -d " " -f 1) |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 362 | local bw=$(get_config "ATETXBW" ${iwpriv_file} | cut -d ":" -f 1) |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 363 | local bw_str="HT20" |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 364 | local base_chan=1 |
| 365 | local control_freq=0 |
| 366 | local base_freq=0 |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 367 | local band=$(echo $1 | sed s/:/' '/g | cut -d " " -f 2) |
| 368 | local temp=$((phy_idx+1)) |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 369 | |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 370 | # Handle ATECTRLBANDIDX |
| 371 | if [ ! -z ${ctrl_band_idx} ]; then |
| 372 | if [ "${ctrl_band_idx}" == "1" ] && [ ${band} == "0" ]; then |
| 373 | local temp=$(cat "/etc/config/wireless"| grep "option band" | sed -n ${temp}p | cut -c 15) |
| 374 | if [ "${temp}" == "2" ]; then |
| 375 | local band=0 |
| 376 | elif [ "${temp}" == "5" ]; then |
| 377 | local band=1 |
| 378 | elif [ "${temp}" == "6" ]; then |
| 379 | local band=2 |
| 380 | else |
| 381 | echo "iwpriv wrapper band translate error!" |
| 382 | fi |
| 383 | else |
| 384 | # mt7915 in AX8400 case: band should be determined by only the input band |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 385 | if [ "${SOC_start_idx}" == "1" ] && [ ${phy_idx} == "0" ]; then |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 386 | local band=$((band)) |
| 387 | else |
| 388 | local band=$((ctrl_band_idx * band)) |
| 389 | fi |
| 390 | fi |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 391 | fi |
| 392 | |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 393 | if [[ $1 != *":"* ]] || [ "${band}" = "0" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 394 | case ${bw} in |
| 395 | "1") |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 396 | if [ "${ch}" -lt "3" ] || [ "${ch}" -gt "12" ]; then |
| 397 | local bw_str="HT20" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 398 | else |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 399 | local bw_str="HT40+" |
| 400 | ch=$(expr ${ch} - "2") |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 401 | fi |
| 402 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 403 | esac |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 404 | local base_freq=2412 |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 405 | elif [ "${band}" = "1" ]; then |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 406 | case ${bw} in |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 407 | "5") |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 408 | bw_str="160MHz" |
| 409 | if [ ${ch} -lt "68" ]; then |
| 410 | ch="36" |
| 411 | elif [ ${ch} -lt "100" ]; then |
| 412 | ch="68" |
| 413 | elif [ ${ch} -lt "132" ]; then |
| 414 | ch="100" |
| 415 | elif [ ${ch} -lt "181" ]; then |
| 416 | ch="149" |
| 417 | fi |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 418 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 419 | "2") |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 420 | bw_str="80MHz" |
| 421 | if [ ${ch} -lt "52" ]; then |
| 422 | ch="36" |
| 423 | elif [ ${ch} -lt "68" ]; then |
| 424 | ch="52" |
| 425 | elif [ ${ch} -lt "84" ]; then |
| 426 | ch="68" |
| 427 | elif [ ${ch} -lt "100" ]; then |
| 428 | ch="84" |
| 429 | elif [ ${ch} -lt "116" ]; then |
| 430 | ch="100" |
| 431 | elif [ ${ch} -lt "132" ]; then |
| 432 | ch="116" |
| 433 | elif [ ${ch} -lt "149" ]; then |
| 434 | ch="132" |
| 435 | elif [ ${ch} -lt "165" ]; then |
| 436 | ch="149" |
| 437 | elif [ ${ch} -lt "181" ]; then |
| 438 | ch="165" |
| 439 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 440 | ;; |
| 441 | "1") |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 442 | if [ ${ch} -lt "44" ]; then |
| 443 | ch=$([ "${ch}" -lt "40" ] && echo "36" || echo "40") |
| 444 | bw_str=$([ "${ch}" -le "38" ] && echo "HT40+" || echo "HT40-") |
| 445 | elif [ ${ch} -lt "52" ]; then |
| 446 | ch=$([ "${ch}" -lt "48" ] && echo "44" || echo "48") |
| 447 | bw_str=$([ "${ch}" -le "46" ] && echo "HT40+" || echo "HT40-") |
| 448 | elif [ ${ch} -lt "60" ]; then |
| 449 | ch=$([ "${ch}" -lt "56" ] && echo "52" || echo "56") |
| 450 | bw_str=$([ "${ch}" -le "54" ] && echo "HT40+" || echo "HT40-") |
| 451 | elif [ ${ch} -lt "68" ]; then |
| 452 | ch=$([ "${ch}" -lt "64" ] && echo "60" || echo "64") |
| 453 | bw_str=$([ "${ch}" -le "62" ] && echo "HT40+" || echo "HT40-") |
| 454 | elif [ ${ch} -lt "76" ]; then |
| 455 | ch=$([ "${ch}" -lt "72" ] && echo "68" || echo "72") |
| 456 | bw_str=$([ "${ch}" -le "70" ] && echo "HT40+" || echo "HT40-") |
| 457 | elif [ ${ch} -lt "84" ]; then |
| 458 | ch=$([ "${ch}" -lt "80" ] && echo "76" || echo "80") |
| 459 | bw_str=$([ "${ch}" -le "78" ] && echo "HT40+" || echo "HT40-") |
| 460 | elif [ ${ch} -lt "92" ]; then |
| 461 | ch=$([ "${ch}" -lt "88" ] && echo "84" || echo "88") |
| 462 | bw_str=$([ "${ch}" -le "86" ] && echo "HT40+" || echo "HT40-") |
| 463 | elif [ ${ch} -lt "100" ]; then |
| 464 | ch=$([ "${ch}" -lt "96" ] && echo "92" || echo "96") |
| 465 | bw_str=$([ "${ch}" -le "94" ] && echo "HT40+" || echo "HT40-") |
| 466 | elif [ ${ch} -lt "108" ]; then |
| 467 | ch=$([ "${ch}" -lt "104" ] && echo "100" || echo "104") |
| 468 | bw_str=$([ "${ch}" -le "102" ] && echo "HT40+" || echo "HT40-") |
| 469 | elif [ ${ch} -lt "116" ]; then |
| 470 | ch=$([ "${ch}" -lt "112" ] && echo "108" || echo "112") |
| 471 | bw_str=$([ "${ch}" -le "110" ] && echo "HT40+" || echo "HT40-") |
| 472 | elif [ ${ch} -lt "124" ]; then |
| 473 | ch=$([ "${ch}" -lt "120" ] && echo "116" || echo "120") |
| 474 | bw_str=$([ "${ch}" -le "118" ] && echo "HT40+" || echo "HT40-") |
| 475 | elif [ ${ch} -lt "132" ]; then |
| 476 | ch=$([ "${ch}" -lt "128" ] && echo "124" || echo "128") |
| 477 | bw_str=$([ "${ch}" -le "126" ] && echo "HT40+" || echo "HT40-") |
| 478 | elif [ ${ch} -lt "140" ]; then |
| 479 | ch=$([ "${ch}" -lt "136" ] && echo "132" || echo "136") |
| 480 | bw_str=$([ "${ch}" -le "134" ] && echo "HT40+" || echo "HT40-") |
| 481 | elif [ ${ch} -lt "149" ]; then |
| 482 | ch=$([ "${ch}" -lt "144" ] && echo "140" || echo "144") |
| 483 | bw_str=$([ "${ch}" -le "142" ] && echo "HT40+" || echo "HT40-") |
| 484 | elif [ ${ch} -lt "157" ]; then |
| 485 | ch=$([ "${ch}" -lt "153" ] && echo "149" || echo "153") |
| 486 | bw_str=$([ "${ch}" -le "151" ] && echo "HT40+" || echo "HT40-") |
| 487 | elif [ ${ch} -lt "165" ]; then |
| 488 | ch=$([ "${ch}" -lt "161" ] && echo "157" || echo "161") |
| 489 | bw_str=$([ "${ch}" -le "159" ] && echo "HT40+" || echo "HT40-") |
| 490 | elif [ ${ch} -lt "173" ]; then |
| 491 | ch=$([ "${ch}" -lt "169" ] && echo "165" || echo "169") |
| 492 | bw_str=$([ "${ch}" -le "167" ] && echo "HT40+" || echo "HT40-") |
| 493 | elif [ ${ch} -lt "181" ]; then |
| 494 | ch=$([ "${ch}" -lt "177" ] && echo "173" || echo "177") |
| 495 | bw_str=$([ "${ch}" -le "175" ] && echo "HT40+" || echo "HT40-") |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 496 | fi |
| 497 | ;; |
| 498 | "0") |
| 499 | local bw_str="HT20" |
| 500 | ;; |
| 501 | esac |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 502 | local base_freq=5180 |
| 503 | local base_chan=36 |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 504 | else |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 505 | local base_freq=5955 |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 506 | case ${bw} in |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 507 | "12") |
| 508 | local bw_str="320" |
| 509 | if [ ${ch} == "31" ]; then |
| 510 | local control_freq="5955" |
| 511 | elif [ ${ch} == "63" ]; then |
| 512 | local control_freq="6115" |
| 513 | elif [ ${ch} == "95" ]; then |
| 514 | local control_freq="6275" |
| 515 | elif [ ${ch} == "127" ]; then |
| 516 | local control_freq="6435" |
| 517 | elif [ ${ch} == "159" ]; then |
| 518 | local control_freq="6595" |
| 519 | elif [ ${ch} == "191" ]; then |
| 520 | local control_freq="6755" |
| 521 | fi |
| 522 | local center_freq=$(((ch - base_chan) * 5 + base_freq)) |
| 523 | do_cmd "iw dev mon${phy_idx} set freq ${control_freq} ${bw_str} ${center_freq}" |
| 524 | return |
| 525 | ;; |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 526 | "5") |
| 527 | bw_str="160MHz" |
| 528 | if [ ${ch} -lt "33" ]; then |
| 529 | ch="1" |
| 530 | elif [ ${ch} -lt "65" ]; then |
| 531 | ch="33" |
| 532 | elif [ ${ch} -lt "97" ]; then |
| 533 | ch="65" |
| 534 | elif [ ${ch} -lt "129" ]; then |
| 535 | ch="97" |
| 536 | elif [ ${ch} -lt "161" ]; then |
| 537 | ch="129" |
| 538 | elif [ ${ch} -lt "193" ]; then |
| 539 | ch="161" |
| 540 | elif [ ${ch} -lt "225" ]; then |
| 541 | ch="193" |
| 542 | fi |
| 543 | ;; |
| 544 | "2") |
| 545 | bw_str="80MHz" |
| 546 | if [ ${ch} -lt "17" ]; then |
| 547 | ch="1" |
| 548 | elif [ ${ch} -lt "33" ]; then |
| 549 | ch="17" |
| 550 | elif [ ${ch} -lt "49" ]; then |
| 551 | ch="33" |
| 552 | elif [ ${ch} -lt "65" ]; then |
| 553 | ch="49" |
| 554 | elif [ ${ch} -lt "81" ]; then |
| 555 | ch="65" |
| 556 | elif [ ${ch} -lt "97" ]; then |
| 557 | ch="81" |
| 558 | elif [ ${ch} -lt "113" ]; then |
| 559 | ch="97" |
| 560 | elif [ ${ch} -lt "129" ]; then |
| 561 | ch="113" |
| 562 | elif [ ${ch} -lt "145" ]; then |
| 563 | ch="129" |
| 564 | elif [ ${ch} -lt "161" ]; then |
| 565 | ch="145" |
| 566 | elif [ ${ch} -lt "177" ]; then |
| 567 | ch="161" |
| 568 | elif [ ${ch} -lt "193" ]; then |
| 569 | ch="177" |
| 570 | elif [ ${ch} -lt "209" ]; then |
| 571 | ch="193" |
| 572 | elif [ ${ch} -lt "225" ]; then |
| 573 | ch="209" |
| 574 | fi |
| 575 | ;; |
| 576 | "1") |
| 577 | if [ ${ch} -lt "9" ]; then |
| 578 | ch=$([ "${ch}" -lt "5" ] && echo "1" || echo "5") |
| 579 | bw_str=$([ "${ch}" -le "3" ] && echo "HT40+" || echo "HT40-") |
| 580 | elif [ ${ch} -lt "17" ]; then |
| 581 | ch=$([ "${ch}" -lt "13" ] && echo "9" || echo "13") |
| 582 | bw_str=$([ "${ch}" -le "11" ] && echo "HT40+" || echo "HT40-") |
| 583 | elif [ ${ch} -lt "25" ]; then |
| 584 | ch=$([ "${ch}" -lt "21" ] && echo "17" || echo "21") |
| 585 | bw_str=$([ "${ch}" -le "19" ] && echo "HT40+" || echo "HT40-") |
| 586 | elif [ ${ch} -lt "33" ]; then |
| 587 | ch=$([ "${ch}" -lt "29" ] && echo "25" || echo "29") |
| 588 | bw_str=$([ "${ch}" -le "27" ] && echo "HT40+" || echo "HT40-") |
| 589 | elif [ ${ch} -lt "33" ]; then |
| 590 | ch=$([ "${ch}" -lt "29" ] && echo "25" || echo "29") |
| 591 | bw_str=$([ "${ch}" -le "27" ] && echo "HT40+" || echo "HT40-") |
| 592 | elif [ ${ch} -lt "41" ]; then |
| 593 | ch=$([ "${ch}" -lt "37" ] && echo "33" || echo "37") |
| 594 | bw_str=$([ "${ch}" -le "35" ] && echo "HT40+" || echo "HT40-") |
| 595 | elif [ ${ch} -lt "49" ]; then |
| 596 | ch=$([ "${ch}" -lt "45" ] && echo "41" || echo "45") |
| 597 | bw_str=$([ "${ch}" -le "43" ] && echo "HT40+" || echo "HT40-") |
| 598 | elif [ ${ch} -lt "57" ]; then |
| 599 | ch=$([ "${ch}" -lt "53" ] && echo "49" || echo "53") |
| 600 | bw_str=$([ "${ch}" -le "51" ] && echo "HT40+" || echo "HT40-") |
| 601 | elif [ ${ch} -lt "65" ]; then |
| 602 | ch=$([ "${ch}" -lt "61" ] && echo "57" || echo "61") |
| 603 | bw_str=$([ "${ch}" -le "59" ] && echo "HT40+" || echo "HT40-") |
| 604 | elif [ ${ch} -lt "73" ]; then |
| 605 | ch=$([ "${ch}" -lt "69" ] && echo "65" || echo "69") |
| 606 | bw_str=$([ "${ch}" -le "67" ] && echo "HT40+" || echo "HT40-") |
| 607 | elif [ ${ch} -lt "81" ]; then |
| 608 | ch=$([ "${ch}" -lt "77" ] && echo "73" || echo "77") |
| 609 | bw_str=$([ "${ch}" -le "75" ] && echo "HT40+" || echo "HT40-") |
| 610 | elif [ ${ch} -lt "89" ]; then |
| 611 | ch=$([ "${ch}" -lt "85" ] && echo "81" || echo "85") |
| 612 | bw_str=$([ "${ch}" -le "83" ] && echo "HT40+" || echo "HT40-") |
| 613 | elif [ ${ch} -lt "97" ]; then |
| 614 | ch=$([ "${ch}" -lt "93" ] && echo "89" || echo "93") |
| 615 | bw_str=$([ "${ch}" -le "91" ] && echo "HT40+" || echo "HT40-") |
| 616 | elif [ ${ch} -lt "105" ]; then |
| 617 | ch=$([ "${ch}" -lt "101" ] && echo "97" || echo "101") |
| 618 | bw_str=$([ "${ch}" -le "99" ] && echo "HT40+" || echo "HT40-") |
| 619 | elif [ ${ch} -lt "113" ]; then |
| 620 | ch=$([ "${ch}" -lt "109" ] && echo "105" || echo "109") |
| 621 | bw_str=$([ "${ch}" -le "107" ] && echo "HT40+" || echo "HT40-") |
| 622 | elif [ ${ch} -lt "121" ]; then |
| 623 | ch=$([ "${ch}" -lt "117" ] && echo "113" || echo "117") |
| 624 | bw_str=$([ "${ch}" -le "115" ] && echo "HT40+" || echo "HT40-") |
| 625 | elif [ ${ch} -lt "129" ]; then |
| 626 | ch=$([ "${ch}" -lt "125" ] && echo "121" || echo "125") |
| 627 | bw_str=$([ "${ch}" -le "123" ] && echo "HT40+" || echo "HT40-") |
| 628 | elif [ ${ch} -lt "137" ]; then |
| 629 | ch=$([ "${ch}" -lt "133" ] && echo "129" || echo "133") |
| 630 | bw_str=$([ "${ch}" -le "131" ] && echo "HT40+" || echo "HT40-") |
| 631 | elif [ ${ch} -lt "145" ]; then |
| 632 | ch=$([ "${ch}" -lt "141" ] && echo "137" || echo "141") |
| 633 | bw_str=$([ "${ch}" -le "139" ] && echo "HT40+" || echo "HT40-") |
| 634 | elif [ ${ch} -lt "153" ]; then |
| 635 | ch=$([ "${ch}" -lt "149" ] && echo "145" || echo "149") |
| 636 | bw_str=$([ "${ch}" -le "147" ] && echo "HT40+" || echo "HT40-") |
| 637 | elif [ ${ch} -lt "161" ]; then |
| 638 | ch=$([ "${ch}" -lt "157" ] && echo "153" || echo "157") |
| 639 | bw_str=$([ "${ch}" -le "155" ] && echo "HT40+" || echo "HT40-") |
| 640 | elif [ ${ch} -lt "169" ]; then |
| 641 | ch=$([ "${ch}" -lt "165" ] && echo "161" || echo "165") |
| 642 | bw_str=$([ "${ch}" -le "163" ] && echo "HT40+" || echo "HT40-") |
| 643 | elif [ ${ch} -lt "177" ]; then |
| 644 | ch=$([ "${ch}" -lt "173" ] && echo "169" || echo "173") |
| 645 | bw_str=$([ "${ch}" -le "171" ] && echo "HT40+" || echo "HT40-") |
| 646 | elif [ ${ch} -lt "185" ]; then |
| 647 | ch=$([ "${ch}" -lt "181" ] && echo "177" || echo "181") |
| 648 | bw_str=$([ "${ch}" -le "179" ] && echo "HT40+" || echo "HT40-") |
| 649 | elif [ ${ch} -lt "193" ]; then |
| 650 | ch=$([ "${ch}" -lt "189" ] && echo "185" || echo "189") |
| 651 | bw_str=$([ "${ch}" -le "187" ] && echo "HT40+" || echo "HT40-") |
| 652 | elif [ ${ch} -lt "201" ]; then |
| 653 | ch=$([ "${ch}" -lt "197" ] && echo "193" || echo "197") |
| 654 | bw_str=$([ "${ch}" -le "195" ] && echo "HT40+" || echo "HT40-") |
| 655 | elif [ ${ch} -lt "209" ]; then |
| 656 | ch=$([ "${ch}" -lt "205" ] && echo "201" || echo "205") |
| 657 | bw_str=$([ "${ch}" -le "203" ] && echo "HT40+" || echo "HT40-") |
| 658 | elif [ ${ch} -lt "217" ]; then |
| 659 | ch=$([ "${ch}" -lt "213" ] && echo "209" || echo "213") |
| 660 | bw_str=$([ "${ch}" -le "211" ] && echo "HT40+" || echo "HT40-") |
| 661 | elif [ ${ch} -lt "225" ]; then |
| 662 | ch=$([ "${ch}" -lt "221" ] && echo "217" || echo "221") |
| 663 | bw_str=$([ "${ch}" -le "219" ] && echo "HT40+" || echo "HT40-") |
| 664 | elif [ ${ch} -lt "233" ]; then |
| 665 | ch=$([ "${ch}" -lt "229" ] && echo "225" || echo "229") |
| 666 | bw_str=$([ "${ch}" -le "227" ] && echo "HT40+" || echo "HT40-") |
| 667 | fi |
| 668 | ;; |
| 669 | "0") |
| 670 | local bw_str="HT20" |
| 671 | ;; |
| 672 | esac |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 673 | fi |
| 674 | |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 675 | local control_freq=$(((ch - base_chan) * 5 + base_freq)) |
| 676 | do_cmd "iw dev mon${phy_idx} set freq ${control_freq} ${bw_str}" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 677 | } |
| 678 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 679 | function convert_rxstat { |
| 680 | local res=$(do_cmd "mt76-test ${interface} dump stats") |
| 681 | local mdrdy=$(echo "${res}" | grep "rx_packets" | cut -d "=" -f 2) |
| 682 | local fcs_error=$(echo "${res}" | grep "rx_fcs_error" | cut -d "=" -f 2) |
| 683 | local rcpi=$(echo "${res}" | grep "last_rcpi" | cut -d "=" -f 2 | sed 's/,/ /g') |
| 684 | local ib_rssi=$(echo "${res}" | grep "last_ib_rssi" | cut -d "=" -f 2 | sed 's/,/ /g') |
| 685 | local wb_rssi=$(echo "${res}" | grep "last_wb_rssi" | cut -d "=" -f 2 | sed 's/,/ /g') |
| 686 | local rx_ok=$(expr ${mdrdy} - ${fcs_error}) |
| 687 | |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 688 | write_dmesg "rcpi: ${rcpi}" |
| 689 | write_dmesg "fagc rssi ib: ${ib_rssi}" |
| 690 | write_dmesg "fagc rssi wb: ${wb_rssi}" |
| 691 | write_dmesg "all_mac_rx_mdrdy_cnt: ${mdrdy}" |
| 692 | write_dmesg "all_mac_rx_fcs_err_cnt: ${fcs_error}" |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 693 | write_dmesg "all_mac_rx_ok_cnt : ${rx_ok}" |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 694 | } |
| 695 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 696 | function set_mac_addr { |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 697 | record_config ${cmd} ${param} ${iwpriv_file} |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 698 | |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 699 | local addr1=$(get_config "ATEDA" ${iwpriv_file}) |
| 700 | local addr2=$(get_config "ATESA" ${iwpriv_file}) |
| 701 | local addr3=$(get_config "ATEBSSID" ${iwpriv_file}) |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 702 | |
| 703 | if [ -z "${addr1}" ]; then |
| 704 | addr1="00:11:22:33:44:55" |
| 705 | fi |
| 706 | if [ -z "${addr2}" ]; then |
| 707 | addr2="00:11:22:33:44:55" |
| 708 | fi |
| 709 | if [ -z "${addr3}" ]; then |
| 710 | addr3="00:11:22:33:44:55" |
| 711 | fi |
| 712 | |
| 713 | do_cmd "mt76-test phy${phy_idx} set mac_addrs=${addr1},${addr2},${addr3}" |
| 714 | } |
| 715 | |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 716 | function convert_ibf { |
| 717 | local cmd=$1 |
| 718 | local param=$2 |
| 719 | local new_cmd="" |
| 720 | local new_param=$(echo ${param} | sed s/":"/","/g) |
| 721 | |
| 722 | case ${cmd} in |
| 723 | "ATETxBfInit") |
| 724 | new_cmd="init" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 725 | new_param="1" |
| 726 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 727 | ;; |
| 728 | "ATETxBfGdInit") |
| 729 | new_cmd="golden_init" |
| 730 | new_param="1" |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 731 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 732 | ;; |
| 733 | "ATEIBFPhaseComp") |
| 734 | new_cmd="phase_comp" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 735 | new_param="${new_param}" |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 736 | ;; |
| 737 | "ATEEBfProfileConfig") |
| 738 | new_cmd="ebf_prof_update" |
| 739 | ;; |
| 740 | "ATEIBfProfileConfig") |
| 741 | new_cmd="ibf_prof_update" |
| 742 | ;; |
| 743 | "ATEIBfInstCal") |
| 744 | new_cmd="phase_cal" |
| 745 | ;; |
| 746 | "ATEIBfGdCal") |
| 747 | new_cmd="phase_cal" |
| 748 | new_param="${new_param},00" |
| 749 | ;; |
| 750 | "TxBfTxApply") |
| 751 | new_cmd="apply_tx" |
| 752 | ;; |
| 753 | "ATETxPacketWithBf") |
| 754 | local bf_on=${new_param:0:2} |
| 755 | local aid="01" |
| 756 | local wlan_idx=${new_param:3:2} |
| 757 | local update="00" |
| 758 | local tx_len=${new_param:6} |
| 759 | |
| 760 | new_cmd="tx_prep" |
| 761 | new_param="${bf_on},${aid},${wlan_idx},${update}" |
| 762 | if [ "${tx_len}" = "00" ]; then |
| 763 | new_param="${new_param} aid=1 tx_count=10000000 tx_length=1024" |
| 764 | else |
| 765 | new_param="${new_param} aid=1 tx_count=${tx_len} tx_length=1024" |
| 766 | fi |
| 767 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 768 | ;; |
| 769 | "TxBfProfileData20MAllWrite") |
| 770 | new_cmd="prof_update_all" |
| 771 | ;; |
| 772 | "ATEIBFPhaseE2pUpdate") |
| 773 | new_cmd="e2p_update" |
| 774 | ;; |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 775 | "ATEIBFPhaseVerify") |
| 776 | local group=${new_param:0:2} |
| 777 | local group_l_m_h=${new_param:3:2} |
| 778 | local band_idx=${new_param:6:2} |
| 779 | local phase_cal_type=${new_param:9:2} |
| 780 | local LNA_gain_level=${new_param:12:2} |
| 781 | local read_from_e2p=${new_param:15:2} |
| 782 | |
| 783 | do_cmd "mt76-test phy${phy_idx} set txbf_act=phase_comp txbf_param=1,${band_idx},${group},${read_from_e2p},0" |
| 784 | new_cmd="phase_cal" |
| 785 | new_param="${group},${group_l_m_h},${band_idx},${phase_cal_type},${LNA_gain_level}" |
| 786 | ;; |
| 787 | "TxBfProfileTagRead") |
| 788 | new_cmd="pfmu_tag_read" |
| 789 | ;; |
| 790 | "TxBfProfileTagWrite") |
| 791 | new_cmd="pfmu_tag_write" |
| 792 | ;; |
| 793 | "TxBfProfileTagInValid") |
| 794 | new_cmd="set_invalid_prof" |
| 795 | ;; |
| 796 | "StaRecBfRead") |
| 797 | new_cmd="sta_rec_read" |
| 798 | ;; |
| 799 | "TriggerSounding") |
| 800 | new_cmd="trigger_sounding" |
| 801 | ;; |
| 802 | "StopSounding") |
| 803 | new_cmd="stop_sounding" |
| 804 | new_param="0" |
| 805 | ;; |
developer | 7721564 | 2023-05-15 13:52:35 +0800 | [diff] [blame] | 806 | "TxBfTxCmd") |
| 807 | new_cmd="txcmd" |
| 808 | ;; |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 809 | "ATEConTxETxBfGdProc") |
| 810 | local tx_rate_mode=$(convert_tx_mode ${new_param:0:2}) |
| 811 | local tx_rate_idx=${new_param:3:2} |
| 812 | local bw=$(echo ${new_param:6:2} | sed 's/^0//') |
| 813 | local channel=${new_param:9:3} |
| 814 | local channel2=${new_param:13:3} |
| 815 | local band=${new_param:17} |
| 816 | |
| 817 | new_cmd="ebf_golden_init" |
| 818 | do_ate_work "ATESTART" |
| 819 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 820 | record_config "ATETXBW" ${bw} ${iwpriv_file} |
| 821 | convert_channel "${channel}:${band}" |
| 822 | if [ "${bw}" = "5" ]; then |
| 823 | new_param="1,1" |
| 824 | else |
| 825 | new_param="1,0" |
| 826 | fi |
| 827 | do_cmd "mt76-test phy${phy_idx} set tx_rate_mode=${tx_rate_mode} tx_rate_idx=${tx_rate_idx} tx_rate_sgi=0" |
| 828 | ;; |
| 829 | "ATEConTxETxBfInitProc") |
| 830 | local tx_rate_mode=$(convert_tx_mode ${new_param:0:2}) |
| 831 | local tx_rate_idx=${new_param:3:2} |
| 832 | local bw=$(echo ${new_param:6:2} | sed 's/^0//') |
| 833 | local tx_rate_nss=${new_param:9:2} |
| 834 | local tx_stream=${new_param:12:2} |
| 835 | local tx_power=${new_param:15:2} |
developer | 7721564 | 2023-05-15 13:52:35 +0800 | [diff] [blame] | 836 | local channel=$(echo ${new_param:18:3} | sed 's/^0//') |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 837 | local channel2=${new_param:22:3} |
| 838 | local band=${new_param:26:1} |
developer | 7721564 | 2023-05-15 13:52:35 +0800 | [diff] [blame] | 839 | local tx_length=$(echo ${new_param:28:5} | sed 's/^0//') |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 840 | |
| 841 | new_cmd="ebf_init" |
| 842 | do_ate_work "ATESTART" |
| 843 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 844 | record_config "ATETXBW" ${bw} ${iwpriv_file} |
| 845 | convert_channel "${channel}:${band}" |
| 846 | new_param="1" |
| 847 | do_cmd "mt76-test phy${phy_idx} set tx_rate_mode=${tx_rate_mode} tx_rate_idx=${tx_rate_idx} tx_rate_nss=${tx_rate_nss} tx_rate_sgi=0 tx_rate_ldpc=1 tx_power=${tx_power},0,0,0 tx_count=10000000 tx_length=${tx_length} tx_ipg=4" |
| 848 | ;; |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 849 | *) |
| 850 | esac |
| 851 | |
| 852 | do_cmd "mt76-test phy${phy_idx} set txbf_act=${new_cmd} txbf_param=${new_param}" |
| 853 | |
| 854 | if [ "${cmd}" = "ATETxPacketWithBf" ]; then |
| 855 | do_cmd "mt76-test phy${phy_idx} set state=tx_frames" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 856 | elif [ "${cmd}" = "ATEConTxETxBfInitProc" ]; then |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 857 | local wlan_idx="1" |
| 858 | if [ ${is_eagle} == "1" ]; then |
| 859 | local wlan_idx=$((phy_idx+1)) |
| 860 | fi |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 861 | do_cmd "mt76-test phy${phy_idx} set aid=1" |
| 862 | do_cmd "mt76-test phy${phy_idx} set txbf_act=stop_sounding txbf_param=1" |
| 863 | do_cmd "mt76-test phy${phy_idx} set txbf_act=update_ch txbf_param=1" |
| 864 | do_cmd "mt76-test phy${phy_idx} set txbf_act=ebf_prof_update txbf_param=0,0,0" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 865 | do_cmd "mt76-test phy${phy_idx} set txbf_act=apply_tx txbf_param=${wlan_idx},1,0,0,0" |
| 866 | if [ ${is_eagle} == "1" ]; then |
| 867 | do_cmd "mt76-test phy${phy_idx} set txbf_act=txcmd txbf_param=1,1,1" |
| 868 | fi |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 869 | do_cmd "mt76-test phy${phy_idx} set txbf_act=pfmu_tag_read txbf_param=0,1" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 870 | do_cmd "mt76-test phy${phy_idx} set txbf_act=sta_rec_read txbf_param=${wlan_idx}" |
| 871 | do_cmd "mt76-test phy${phy_idx} set txbf_act=trigger_sounding txbf_param=0,1,0,${wlan_idx},0,0,0" |
| 872 | do_cmd "mt76-test phy${phy_idx} set txbf_act=trigger_sounding txbf_param=2,1,ff,${wlan_idx},0,0,0" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 873 | do_cmd "mt76-test phy${phy_idx} set state=rx_frames" |
| 874 | elif [ "${cmd}" = "ATEConTxETxBfGdProc" ]; then |
| 875 | do_cmd "mt76-test phy${phy_idx} set aid=1" |
| 876 | do_cmd "mt76-test phy${phy_idx} set state=rx_frames" |
| 877 | elif [ "${cmd}" = "ATETxBfInit" ]; then |
| 878 | do_cmd "mt76-test phy${phy_idx} set aid=1" |
| 879 | elif [ "${cmd}" = "ATETxBfGdInit" ]; then |
| 880 | do_cmd "mt76-test phy${phy_idx} set aid=1" |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 881 | fi |
| 882 | } |
| 883 | |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 884 | function convert_dfs { |
| 885 | local cmd=$1 |
| 886 | local param=$2 |
| 887 | |
| 888 | case ${cmd} in |
| 889 | "DfsRxCtrl") |
| 890 | local offchan_ch="$(echo $param | cut -d ':' -f1)" |
| 891 | local offchan_bw="$(echo $param | cut -d ':' -f2)" |
| 892 | |
developer | 9f84658 | 2023-03-31 17:51:46 +0800 | [diff] [blame] | 893 | if [ "$offchan_bw" = "0" ]; then |
| 894 | offchan_bw="20" |
| 895 | elif [ "$offchan_bw" = "1" ]; then |
| 896 | offchan_bw="40" |
| 897 | elif [ "$offchan_bw" = "2" ]; then |
| 898 | offchan_bw="80" |
| 899 | elif [ "$offchan_bw" = "3" ]; then |
| 900 | offchan_bw="160" |
| 901 | fi |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 902 | |
developer | 9f84658 | 2023-03-31 17:51:46 +0800 | [diff] [blame] | 903 | do_cmd "mt76-test phy${phy_idx} set state=idle" |
| 904 | do_cmd "mt76-test phy${phy_idx} set offchan_ch=${offchan_ch} offchan_bw=${offchan_bw}" |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 905 | ;; |
| 906 | "DfsRxHist") |
| 907 | local ipi_th="$(echo $param | cut -d ':' -f 1)" |
| 908 | local ipi_period="$(echo $param | cut -d ':' -f 2)" |
developer | 9f84658 | 2023-03-31 17:51:46 +0800 | [diff] [blame] | 909 | local ipi_antenna="$(echo $param | cut -d ':' -f 3)" |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 910 | |
developer | 9f84658 | 2023-03-31 17:51:46 +0800 | [diff] [blame] | 911 | if [ -z $ipi_antenna ]; then |
| 912 | do_cmd "mt76-test phy${phy_idx} set ipi_threshold=${ipi_th} ipi_period=${ipi_period}" |
| 913 | else |
| 914 | do_cmd "mt76-test phy${phy_idx} set ipi_threshold=${ipi_th} ipi_period=${ipi_period} ipi_antenna_idx=${ipi_antenna}" |
| 915 | fi |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 916 | ;; |
| 917 | *) |
| 918 | esac |
| 919 | } |
| 920 | |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 921 | function do_ate_work() { |
| 922 | local ate_cmd=$1 |
| 923 | |
| 924 | case ${ate_cmd} in |
| 925 | "ATESTART") |
| 926 | local if_str=$(ifconfig | grep mon${phy_idx}) |
| 927 | |
| 928 | if [ ! -z "${if_str}" -a "${if_str}" != " " ]; then |
| 929 | echo "ATE already starts." |
| 930 | else |
| 931 | do_cmd "iw phy ${interface} interface add mon${phy_idx} type monitor" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 932 | |
| 933 | if [ $phy_idx -ge $SOC_start_idx ]; then |
| 934 | local end_idx=$SOC_end_idx |
| 935 | local start_idx=$SOC_start_idx |
| 936 | else |
| 937 | local end_idx=$((SOC_start_idx-1)) |
| 938 | local start_idx="0" |
| 939 | fi |
| 940 | |
| 941 | for phy_index in $( seq $start_idx $end_idx ) |
| 942 | do |
| 943 | # "phy#-1" would not be in iw dev, therefore it will grep the line from the phy#${phy_index} to the end |
| 944 | local prev_phy_index=$((phy_index-1)) |
| 945 | local if_num=$(iw dev | awk "/phy#${phy_index}/,/phy#${prev_phy_index}/" | grep -c Interface) |
| 946 | local j="1" |
| 947 | # avoid del_if_count reset to 0 when start ate on another band in dbdc case |
| 948 | local del_if_count=$(get_config "DEL_IF${phy_index}_NUM" ${interface_file}) |
| 949 | if [ -z "${del_if_count}" ]; then |
| 950 | local del_if_count="0" |
| 951 | fi |
| 952 | |
| 953 | for if_count in $( seq 1 $if_num ) |
| 954 | do |
| 955 | local del_if=$(iw dev | awk "/phy#${phy_index}/,/phy#${prev_phy_index}/" | grep Interface | sed -n ${j}p | cut -d " " -f 2) |
| 956 | if [ ! -z "${del_if}" ] && [[ "$del_if" != *"mon"* ]]; then |
| 957 | do_cmd "iw dev ${del_if} del" |
| 958 | del_if_count=$((del_if_count+1)) |
| 959 | # handle the case of multiple interface in a phy |
| 960 | record_config "DEL_IF${phy_index}-${del_if_count}" ${del_if} ${interface_file} |
| 961 | else |
| 962 | # j add 1 to skip mon interface |
| 963 | j=$((j+1)) |
| 964 | fi |
| 965 | done |
| 966 | record_config "DEL_IF${phy_index}_NUM" ${del_if_count} ${interface_file} |
| 967 | done |
| 968 | |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 969 | do_cmd "ifconfig mon${phy_idx} up" |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 970 | do_cmd "iw reg set VV" |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 971 | fi |
| 972 | ;; |
| 973 | "ATESTOP") |
| 974 | local if_str=$(ifconfig | grep mon${phy_idx}) |
| 975 | |
| 976 | if [ -z "${if_str}" -a "${if_str}" != " " ]; then |
| 977 | echo "ATE does not start." |
| 978 | else |
| 979 | do_cmd "mt76-test ${interface} set state=off" |
| 980 | do_cmd "iw dev mon${phy_idx} del" |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 981 | |
| 982 | if [ $phy_idx -ge $SOC_start_idx ]; then |
| 983 | local end_idx=$SOC_end_idx |
| 984 | local start_idx=$SOC_start_idx |
| 985 | else |
| 986 | local end_idx=$((SOC_start_idx-1)) |
| 987 | local start_idx="0" |
| 988 | fi |
| 989 | |
| 990 | # first check its phy and dbdc band phy has monitor interface or not |
| 991 | # if has at lease one mon interface, then skip adding back normal interface |
| 992 | local has_mon="0" |
| 993 | for phy_index in $( seq $start_idx $end_idx ) |
| 994 | do |
| 995 | # "phy#-1" would not be in iw dev, therefore it will grep the line from the phy#${phy_index} to the end |
| 996 | local prev_phy_index=$((phy_index-1)) |
| 997 | local has_mon_phy=$(iw dev | awk "/phy#${phy_index}/,/phy#${prev_phy_index}/" | grep "Interface mon") |
| 998 | # if this phy interface has mon interface |
| 999 | if [ ! -z "${has_mon_phy}" ]; then |
| 1000 | local has_mon="1" |
| 1001 | fi |
| 1002 | done |
| 1003 | |
| 1004 | for phy_index in $( seq $start_idx $end_idx ) |
| 1005 | do |
| 1006 | # "phy#-1" would not be in iw dev, therefore it will grep the line from the phy#${phy_index} to the end |
| 1007 | local prev_phy_index=$((phy_index-1)) |
| 1008 | local j="1" |
| 1009 | local add_if_num=$(get_config "DEL_IF${phy_index}_NUM" ${interface_file}) |
| 1010 | if [ -z "${add_if_num}" ]; then |
| 1011 | local add_if_num="0" |
| 1012 | fi |
| 1013 | # if this phy interface (including its dbdc phy) has no mon interface and can find deleted interface in file, then add it back |
| 1014 | if [ "${has_mon}" == "0" ] && [ $add_if_num -ge "1" ]; then |
| 1015 | local if_index=$add_if_num |
| 1016 | # add interface backwards |
| 1017 | while [ $if_index -gt "0" ] |
| 1018 | do |
| 1019 | local add_if=$(get_config "DEL_IF${phy_index}-${if_index}" ${interface_file}) |
| 1020 | do_cmd "iw phy phy${phy_index} interface add ${add_if} type managed" |
| 1021 | # remove the deleted interface in interface_file since it is added back |
| 1022 | sed -i "/DEL_IF${phy_index}-${if_index}=/d" ${interface_file} |
| 1023 | if_index=$((if_index-1)) |
| 1024 | done |
| 1025 | # remove the number of deleted interface in interface_file since it is all added back |
| 1026 | sed -i "/DEL_IF${phy_index}_NUM=/d" ${interface_file} |
| 1027 | fi |
| 1028 | done |
| 1029 | |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 1030 | do_cmd "mt76-test ${interface} set aid=0" |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1031 | fi |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1032 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1033 | if [ ${phy_idx} -lt ${SOC_start_idx} ]; then |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1034 | sed -i '/_PCIE=/d' ${iwpriv_file} |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1035 | elif [ ${phy_idx} -ge ${SOC_start_idx} ]; then |
| 1036 | sed -i '/_SOC=/d' ${iwpriv_file} |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1037 | fi |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1038 | ;; |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 1039 | "TXCOMMIT") |
| 1040 | do_cmd "mt76-test ${interface} set aid=1" |
| 1041 | ;; |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1042 | "TXFRAME") |
| 1043 | do_cmd "mt76-test ${interface} set state=tx_frames" |
| 1044 | ;; |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 1045 | "TXSTOP"|"RXSTOP") |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1046 | do_cmd "mt76-test ${interface} set state=idle" |
| 1047 | ;; |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 1048 | "TXREVERT") |
| 1049 | do_cmd "mt76-test ${interface} set aid=0" |
| 1050 | ;; |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1051 | "RXFRAME") |
| 1052 | do_cmd "mt76-test ${interface} set state=rx_frames" |
| 1053 | ;; |
| 1054 | "TXCONT") |
| 1055 | do_cmd "mt76-test ${interface} set state=tx_cont" |
| 1056 | ;; |
developer | 071927d | 2022-08-31 20:39:29 +0800 | [diff] [blame] | 1057 | "GROUPREK") |
| 1058 | do_cmd "mt76-test ${interface} set state=group_prek" |
| 1059 | do_cmd "atenl -i ${interface} -c \"eeprom precal sync group\"" |
| 1060 | ;; |
| 1061 | "GROUPREKDump") |
| 1062 | do_cmd "mt76-test ${interface} set state=group_prek_dump" |
| 1063 | ;; |
| 1064 | "GROUPREKClean") |
| 1065 | do_cmd "mt76-test ${interface} set state=group_prek_clean" |
| 1066 | do_cmd "atenl -i ${interface} -c \"eeprom precal group clean\"" |
| 1067 | ;; |
| 1068 | "DPD2G") |
| 1069 | do_cmd "mt76-test ${interface} set state=dpd_2g" |
| 1070 | do_cmd "atenl -i ${interface} -c \"eeprom precal sync dpd 2g\"" |
| 1071 | ;; |
| 1072 | "DPD5G") |
| 1073 | do_cmd "mt76-test ${interface} set state=dpd_5g" |
| 1074 | do_cmd "atenl -i ${interface} -c \"eeprom precal sync dpd 5g\"" |
| 1075 | ;; |
| 1076 | "DPD6G") |
| 1077 | do_cmd "mt76-test ${interface} set state=dpd_6g" |
| 1078 | do_cmd "atenl -i ${interface} -c \"eeprom precal sync dpd 6g\"" |
| 1079 | ;; |
| 1080 | "DPDDump") |
| 1081 | do_cmd "mt76-test ${interface} set state=dpd_dump" |
| 1082 | ;; |
| 1083 | "DPDClean") |
| 1084 | do_cmd "mt76-test ${interface} set state=dpd_clean" |
| 1085 | do_cmd "atenl -i ${interface} -c \"eeprom precal dpd clean\"" |
| 1086 | ;; |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 1087 | *) |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 1088 | print_debug "skip ${ate_cmd}" |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1089 | ;; |
| 1090 | esac |
| 1091 | } |
| 1092 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1093 | function dump_usage { |
| 1094 | echo "Usage:" |
| 1095 | echo " mwctl <interface> set csi ctrl=<opt1>,<opt2>,<opt3>,<opt4> (macaddr=<macaddr>)" |
| 1096 | echo " mwctl <interface> set csi interval=<interval (us)>" |
| 1097 | echo " mwctl <interface> dump csi <packet num> <filename>" |
| 1098 | echo " mwctl <interface> set amnt <index>(0x0~0xf) <mac addr>(xx:xx:xx:xx:xx:xx)" |
| 1099 | echo " mwctl <interface> dump amnt <index> (0x0~0xf or 0xff)" |
| 1100 | echo " mwctl <interface> set ap_rfeatures he_gi=<val>" |
| 1101 | echo " mwctl <interface> set ap_rfeatures he_ltf=<val>" |
| 1102 | echo " mwctl <interface> set ap_rfeatures trig_type=<enable>,<val> (val: 0-7)" |
| 1103 | echo " mwctl <interface> set ap_rfeatures ack_policy=<val> (val: 0-4)" |
| 1104 | echo " mwctl <interface> set ap_wireless fixed_mcs=<val>" |
| 1105 | echo " mwctl <interface> set ap_wireless ofdma=<val> (0: disable, 1: DL, 2: UL)" |
| 1106 | echo " mwctl <interface> set ap_wireless nusers_ofdma=<val>" |
| 1107 | echo " mwctl <interface> set ap_wireless ppdu_type=<val> (0: SU, 1: MU, 4: LEGACY)" |
| 1108 | echo " mwctl <interface> set ap_wireless add_ba_req_bufsize=<val>" |
| 1109 | echo " mwctl <interface> set ap_wireless mimo=<val> (0: DL, 1: UL)" |
| 1110 | echo " mwctl <interface> set ap_wireless ampdu=<enable>" |
| 1111 | echo " mwctl <interface> set ap_wireless amsdu=<enable>" |
| 1112 | echo " mwctl <interface> set ap_wireless cert=<enable>" |
developer | 57de9b7 | 2023-02-20 11:15:54 +0800 | [diff] [blame] | 1113 | echo " mwctl <interface> set mu onoff=<val> (bitmap- UL MU-MIMO(bit3), DL MU-MIMO(bit2), UL OFDMA(bit1), DL OFDMA(bit0))" |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1114 | echo " mwctl <interface> dump phy_capa" |
| 1115 | } |
| 1116 | |
developer | e3d5e5e | 2023-01-16 16:58:29 +0800 | [diff] [blame] | 1117 | function register_handler { |
| 1118 | |
| 1119 | local phy_idx=$1 |
| 1120 | local offset=$2 |
| 1121 | local val=$3 |
| 1122 | local cmd=$4 |
| 1123 | local w_cmd="write" |
| 1124 | |
| 1125 | regidx=/sys/kernel/debug/ieee80211/phy${phy_idx}/mt76/regidx |
| 1126 | regval=/sys/kernel/debug/ieee80211/phy${phy_idx}/mt76/regval |
| 1127 | |
| 1128 | echo ${offset} > ${regidx} |
| 1129 | if [[ "${cmd}" == "${w_cmd}" ]]; then |
| 1130 | echo ${val} > ${regval} |
| 1131 | fi |
| 1132 | |
| 1133 | res=$(cat ${regval} | cut -d 'x' -f 2) |
| 1134 | printf "%s mac:[%s]:%s\n" ${interface_ori} ${offset} ${res} |
| 1135 | } |
| 1136 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1137 | # main start here |
developer | b4b2947 | 2023-01-06 19:07:21 +0800 | [diff] [blame] | 1138 | parse_sku |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1139 | if [ -z ${interface} ]; then |
| 1140 | dump_usage |
| 1141 | exit |
| 1142 | elif [[ ${interface} == "ra"* ]]; then |
developer | eebce5c | 2022-08-26 19:05:56 +0800 | [diff] [blame] | 1143 | convert_interface $interface |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1144 | elif [[ ${interface} == "phy" ]]; then |
| 1145 | # handle mwctl phy phy0 e2p ... case |
| 1146 | interface=$2 |
| 1147 | cmd_type=$3 |
| 1148 | full_cmd=$4 |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1149 | fi |
| 1150 | |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1151 | tmp_work_mode=$(get_config "WORKMODE" ${iwpriv_file}) |
| 1152 | |
| 1153 | if [ ! -z ${tmp_work_mode} ]; then |
| 1154 | work_mode=${tmp_work_mode} |
| 1155 | fi |
| 1156 | |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1157 | cmd=$(echo ${full_cmd} | sed s/=/' '/g | cut -d " " -f 1) |
| 1158 | param=$(echo ${full_cmd} | sed s/=/' '/g | cut -d " " -f 2) |
| 1159 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1160 | if [ "${cmd_type}" = "set" ]; then |
| 1161 | skip=0 |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1162 | case ${cmd} in |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1163 | ## In wifi 7 chipset, testmode & vendor command both use mwctl |
| 1164 | ## Therefore this wrapper would translate it to either mt76-test or mt76-vendor based on the attribute of the command |
| 1165 | ## Translate to mt76-vendor command |
developer | 57de9b7 | 2023-02-20 11:15:54 +0800 | [diff] [blame] | 1166 | "csi"|"amnt"|"ap_rfeatures"|"ap_wireless"|"mu") |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1167 | if [ ${is_eagle} == "1" ]; then |
developer | 8d613a6 | 2023-05-04 10:33:39 +0800 | [diff] [blame] | 1168 | hostapd_cmd="$(echo $* | sed 's/set/raw/')" |
| 1169 | do_cmd "hostapd_cli -i $hostapd_cmd" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1170 | else |
developer | 249ac1b | 2023-02-09 09:54:38 +0800 | [diff] [blame] | 1171 | do_cmd "mt76-vendor $*" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1172 | fi |
| 1173 | skip=1 |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1174 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1175 | "ATE") |
| 1176 | do_ate_work ${param} |
| 1177 | |
| 1178 | skip=1 |
| 1179 | ;; |
| 1180 | "ATETXCNT"|"ATETXLEN"|"ATETXMCS"|"ATEVHTNSS"|"ATETXLDPC"|"ATETXSTBC"| \ |
| 1181 | "ATEPKTTXTIME"|"ATEIPG"|"ATEDUTYCYCLE"|"ATETXFREQOFFSET") |
| 1182 | cmd_new=$(simple_convert ${cmd}) |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1183 | if [ "${param_new}" = "undefined" ]; then |
| 1184 | echo "unknown cmd: ${cmd}" |
| 1185 | exit |
| 1186 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1187 | param_new=${param} |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1188 | if [ "${cmd}" = "ATETXCNT" ] && [ "${param}" = "0" ]; then |
developer | 62713c8 | 2023-03-20 10:46:08 +0800 | [diff] [blame] | 1189 | param_new="0xFFFFFFFF" |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1190 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1191 | ;; |
| 1192 | "ATETXANT"|"ATERXANT") |
| 1193 | cmd_new="tx_antenna" |
| 1194 | param_new=${param} |
| 1195 | ;; |
| 1196 | "ATETXGI") |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1197 | if [ ${is_eagle} == "0" ]; then |
| 1198 | tx_mode=$(convert_tx_mode $(get_config "ATETXMODE" ${iwpriv_file})) |
| 1199 | convert_gi ${tx_mode} ${param} |
| 1200 | skip=1 |
| 1201 | else |
| 1202 | cmd_new="tx_rate_sgi" |
| 1203 | param_new=${param} |
| 1204 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1205 | ;; |
| 1206 | "ATETXMODE") |
| 1207 | cmd_new="tx_rate_mode" |
| 1208 | param_new=$(convert_tx_mode ${param}) |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1209 | if [ "${param_new}" = "undefined" ]; then |
| 1210 | echo "unknown tx mode" |
| 1211 | echo "0:cck, 1:ofdm, 2:ht, 4:vht, 8:he_su, 9:he_er, 10:he_tb, 11:he_mu" |
| 1212 | exit |
| 1213 | else |
| 1214 | record_config ${cmd} ${param} ${iwpriv_file} |
| 1215 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1216 | ;; |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1217 | "ATETXPOW0"|"ATETXPOW1"|"ATETXPOW2"|"ATETXPOW3"|"ATETXPOW") |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1218 | cmd_new="tx_power" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1219 | if [ "${param}" == "127" ]; then |
| 1220 | # for iTest verification |
| 1221 | exit |
| 1222 | fi |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1223 | param_new="${param},0,0,0" |
| 1224 | ;; |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1225 | "ATEMUAID") |
| 1226 | cmd_new="aid" |
| 1227 | param_new=${param} |
| 1228 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1229 | "ATETXBW") |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1230 | record_config ${cmd} ${param} ${iwpriv_file} |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1231 | skip=1 |
| 1232 | ;; |
| 1233 | "ATECHANNEL") |
| 1234 | convert_channel ${param} |
| 1235 | skip=1 |
| 1236 | ;; |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1237 | "ATERXSTAT") |
| 1238 | convert_rxstat |
| 1239 | skip=1 |
| 1240 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1241 | "ATECTRLBANDIDX") |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1242 | change_band_idx ${param} |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1243 | skip=1 |
| 1244 | ;; |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1245 | "ATEDA"|"ATESA"|"ATEBSSID") |
| 1246 | set_mac_addr ${cmd} ${param} |
| 1247 | skip=1 |
| 1248 | ;; |
developer | 887da63 | 2022-10-28 09:35:38 +0800 | [diff] [blame] | 1249 | "DfsRxCtrl"|"DfsRxHist") |
| 1250 | convert_dfs ${cmd} ${param} |
| 1251 | skip=1 |
| 1252 | ;; |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1253 | "ATETxBfInit"|"ATETxBfGdInit"|"ATEIBFPhaseComp"|"ATEEBfProfileConfig"|"ATEIBfProfileConfig"| \ |
| 1254 | "TxBfTxApply"|"ATETxPacketWithBf"|"TxBfProfileData20MAllWrite"|"ATEIBfInstCal"| \ |
developer | 7721564 | 2023-05-15 13:52:35 +0800 | [diff] [blame] | 1255 | "ATEIBfGdCal"|"ATEIBFPhaseE2pUpdate"|"TriggerSounding"|"StopSounding"|"TxBfTxCmd"| \ |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1256 | "StaRecBfRead"|"TxBfProfileTagInValid"|"TxBfProfileTagWrite"|"TxBfProfileTagRead"| \ |
| 1257 | "ATEIBFPhaseVerify"|"ATEConTxETxBfGdProc"|"ATEConTxETxBfInitProc") |
developer | f9843e2 | 2022-09-13 10:57:15 +0800 | [diff] [blame] | 1258 | convert_ibf ${cmd} ${param} |
| 1259 | skip=1 |
| 1260 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1261 | "bufferMode") |
| 1262 | if [ "${param}" = "2" ]; then |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 1263 | do_cmd "atenl -i ${interface} -c \"eeprom update buffermode\"" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1264 | fi |
| 1265 | skip=1 |
| 1266 | ;; |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1267 | "ResetCounter"|"ATERXSTATRESET") |
| 1268 | skip=1 |
| 1269 | ;; |
developer | 679a6aa | 2022-09-07 09:52:41 +0800 | [diff] [blame] | 1270 | "WORKMODE") |
| 1271 | record_config "WORKMODE" ${param} ${iwpriv_file} |
| 1272 | echo "Entering ${param} mode in iwpriv" |
| 1273 | skip=1 |
| 1274 | ;; |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1275 | *) |
developer | 9b7cdad | 2022-03-10 14:24:55 +0800 | [diff] [blame] | 1276 | print_debug "Unknown command to set: ${cmd}" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1277 | skip=1 |
| 1278 | esac |
| 1279 | |
| 1280 | if [ "${skip}" != "1" ]; then |
| 1281 | do_cmd "mt76-test ${interface} set ${cmd_new}=${param_new}" |
| 1282 | fi |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1283 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1284 | elif [ "${cmd_type}" = "show" ]; then |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1285 | if [ "${cmd}" = "wtbl" ]; then |
| 1286 | wlan_idx=/sys/kernel/debug/ieee80211/phy${phy_idx}/mt76/wlan_idx |
| 1287 | wtbl_info=/sys/kernel/debug/ieee80211/phy${phy_idx}/mt76/wtbl_info |
| 1288 | |
| 1289 | do_cmd "echo ${param} > ${wlan_idx}" |
| 1290 | do_cmd "cat ${wtbl_info}" |
developer | cec48ac | 2023-03-01 17:00:33 +0800 | [diff] [blame] | 1291 | elif [ "${cmd}" = "ATERXSTAT" ]; then |
| 1292 | convert_rxstat |
developer | 1346ce5 | 2022-12-15 21:36:14 +0800 | [diff] [blame] | 1293 | else |
| 1294 | do_cmd "mt76-test ${interface} dump" |
| 1295 | do_cmd "mt76-test ${interface} dump stats" |
| 1296 | fi |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1297 | |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1298 | elif [ "${cmd_type}" = "e2p" ]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1299 | # support multiple read write |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1300 | # eeprom offset write |
| 1301 | if [[ ${full_cmd} == *"="* ]]; then |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1302 | IFS=, |
| 1303 | for tuple in $full_cmd |
| 1304 | do |
| 1305 | cmd=$(echo ${tuple} | sed s/=/' '/g | cut -d " " -f 1) |
| 1306 | param=$(echo ${tuple} | sed s/=/' '/g | cut -d " " -f 2) |
| 1307 | offset=$(printf "0x%s" ${cmd}) |
| 1308 | val=$(printf "0x%s" ${param}) |
| 1309 | tmp=$((${val} & 0xff)) |
| 1310 | tmp=$(printf "0x%x" ${tmp}) |
| 1311 | do_cmd "atenl -i ${interface} -c \"eeprom set ${offset}=${tmp}\"" |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1312 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1313 | offset=$((${offset})) |
| 1314 | offset=$(expr ${offset} + "1") |
| 1315 | offset=$(printf "0x%x" ${offset}) |
| 1316 | tmp=$(((${val} >> 8) & 0xff)) |
| 1317 | tmp=$(printf "0x%x" ${tmp}) |
| 1318 | do_cmd "atenl -i ${interface} -c \"eeprom set ${offset}=${tmp}\"" |
| 1319 | done |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1320 | else |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1321 | IFS=, |
| 1322 | for tuple in $full_cmd |
| 1323 | do |
| 1324 | cmd=$(echo ${tuple} | sed s/=/' '/g | cut -d " " -f 1) |
| 1325 | param=$(echo ${tuple} | sed s/=/' '/g | cut -d " " -f 2) |
| 1326 | offset=$(printf "0x%s" ${cmd}) |
| 1327 | val=$(printf "0x%s" ${param}) |
| 1328 | v1=$(do_cmd "atenl -i ${interface} -c \"eeprom read ${param}\"") |
| 1329 | v1=$(echo "${v1}" | grep "val =" | cut -d '(' -f 2 | grep -o -E '[0-9]+') |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1330 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1331 | tmp=$(printf "0x%s" ${param}) |
| 1332 | tmp=$((${tmp})) |
| 1333 | param2=$(expr ${tmp} + "1") |
| 1334 | param2=$(printf "%x" ${param2}) |
| 1335 | v2=$(do_cmd "atenl -i ${interface} -c \"eeprom read ${param2}\"") |
| 1336 | v2=$(echo "${v2}" | grep "val =" | cut -d '(' -f 2 | grep -o -E '[0-9]+') |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1337 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1338 | param=$(printf "0x%s" ${param}) |
| 1339 | param=$(printf "%04x" ${param}) |
| 1340 | param=$(echo $param | tr 'a-z' 'A-Z') |
| 1341 | printf "%s e2p:\n" ${interface_ori} |
| 1342 | printf "[0x%s]:0x%02x%02x\n" ${param} ${v2} ${v1} |
| 1343 | done |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1344 | fi |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1345 | |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1346 | elif [ "${cmd_type}" = "mac" ]; then |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1347 | offset=$(printf "0x%s" ${cmd}) |
| 1348 | val=$(printf "0x%s" ${param}) |
| 1349 | |
developer | a626714 | 2022-01-26 20:50:22 +0800 | [diff] [blame] | 1350 | # reg write |
| 1351 | if [[ ${full_cmd} == *"="* ]]; then |
developer | e3d5e5e | 2023-01-16 16:58:29 +0800 | [diff] [blame] | 1352 | register_handler ${phy_idx} ${offset} ${val} "write" |
| 1353 | else |
| 1354 | start_addr=$(echo ${full_cmd} | sed s/-/' '/g | cut -d " " -f 1) |
| 1355 | end_addr=$(echo ${full_cmd} | sed s/-/' '/g | cut -d " " -f 2) |
| 1356 | loop=$((0x${end_addr}-0x${start_addr})) |
developer | 10946c3 | 2022-03-04 18:28:43 +0800 | [diff] [blame] | 1357 | |
developer | e3d5e5e | 2023-01-16 16:58:29 +0800 | [diff] [blame] | 1358 | if [[ ${loop} == "0" ]]; then |
| 1359 | register_handler ${phy_idx} ${offset} ${val} |
| 1360 | else |
| 1361 | i=0 |
| 1362 | while [ $i -le $loop ]; do |
| 1363 | addr=$((0x${start_addr}+$i)) |
| 1364 | offset=$(printf "0x%x" ${addr}) |
| 1365 | register_handler ${phy_idx} ${offset} ${val} |
| 1366 | i=$(($i + 4)) |
| 1367 | done |
| 1368 | fi |
| 1369 | fi |
developer | 461cb54 | 2022-04-29 18:17:44 +0800 | [diff] [blame] | 1370 | |
developer | f90c9af | 2022-12-28 22:40:23 +0800 | [diff] [blame] | 1371 | ## dump command is only for vendor commands |
| 1372 | elif [ "${cmd_type}" = "dump" ]; then |
| 1373 | do_cmd "mt76-vendor $*" |
developer | 9f84658 | 2023-03-31 17:51:46 +0800 | [diff] [blame] | 1374 | elif [ "${cmd_type}" = "switch" ]; then |
| 1375 | eeprom_mode_file=sys/kernel/debug/ieee80211/phy0/mt76/eeprom_mode |
| 1376 | eeprom_mode=$(cat ${eeprom_mode_file} | grep "mode" | sed -n 2p | cut -d " " -f 4) |
| 1377 | eeprom_testmode_offset="1af" |
| 1378 | testmode_enable="0" |
| 1379 | |
| 1380 | if [ ${is_eagle} == "0" ]; then |
| 1381 | return |
| 1382 | fi |
| 1383 | |
| 1384 | if [ "${cmd}" = "testmode" ]; then |
| 1385 | testmode_enable="1" |
| 1386 | fi |
| 1387 | |
| 1388 | if [ "${eeprom_mode}" = "flash" ]; then |
| 1389 | ## flash mode should set eeprom testmode offset bit |
| 1390 | ## efuse/bin file/default bin mode rely on module param only |
| 1391 | do_cmd "atenl -i ${interface} -c \"eeprom set 0x${eeprom_testmode_offset}=0x${testmode_enable}\"" |
| 1392 | ## If has no precal, it would not affect |
| 1393 | do_cmd "atenl -i ${interface} -c \"eeprom precal sync\"" |
| 1394 | do_cmd "atenl -i ${interface} -c \"sync eeprom all\"" |
| 1395 | fi |
| 1396 | |
| 1397 | do_cmd "rmmod mt7996e" |
| 1398 | do_cmd "rmmod mt76-connac-lib" |
| 1399 | do_cmd "rmmod mt76" |
| 1400 | do_cmd "rmmod mac80211" |
| 1401 | do_cmd "rmmod cfg80211" |
| 1402 | do_cmd "rmmod compat" |
| 1403 | do_cmd "insmod compat" |
| 1404 | do_cmd "insmod cfg80211" |
| 1405 | do_cmd "insmod mac80211" |
| 1406 | do_cmd "insmod mt76" |
| 1407 | do_cmd "insmod mt76-connac-lib" |
| 1408 | do_cmd "insmod mt7996e testmode_enable=${testmode_enable}" |
| 1409 | do_cmd "sleep 5" |
| 1410 | do_cmd "killall hostapd" |
| 1411 | do_cmd "killall netifd" |
developer | 3abe1ad | 2022-01-24 11:13:32 +0800 | [diff] [blame] | 1412 | else |
| 1413 | echo "Unknown command" |
| 1414 | fi |