123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #!/bin/sh
- [ -e /lib/firmware/$FIRMWARE ] && exit 0
- . /lib/functions/caldata.sh
- board=$(board_name)
- dt_base64_extract() {
- local target_dir="/sys$DEVPATH"
- local source="$target_dir/../../of_node/qcom,ath10k-calibration-data-base64"
- [ -e "$source" ] || caldata_die "cannot find base64 calibration data: $source"
- [ -d "$target_dir" ] || \
- caldata_die "no sysfs dir to write: $target"
- echo 1 > "$target_dir/loading"
- base64decode.uc "$source" > "$target_dir/data"
- if [ $? != 0 ]; then
- echo 1 > "$target_dir/loading"
- caldata_die \
- "failed to write calibration data to $target_dir/data"
- else
- echo 0 > "$target_dir/loading"
- fi
- }
- case "$FIRMWARE" in
- "ath10k/cal-pci-0000:01:00.0.bin")
- case "$board" in
- asus,onhub |\
- tplink,onhub)
- dt_base64_extract
- ;;
- meraki,mr52)
- CI_UBIPART=art
- caldata_extract_ubi "ART" 0x1000 0x844
- ;;
- esac
- ;;
- "ath10k/pre-cal-pci-0000:01:00.0.bin")
- case $board in
- asrock,g10)
- caldata_extract "0:art" 0x1000 0x2f20
- ;;
- linksys,ea7500-v1 |\
- linksys,ea8500)
- caldata_extract "art" 0x1000 0x2f20
- ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) 1)
- ;;
- meraki,mr42)
- CI_UBIPART=art
- caldata_extract_ubi "ART" 0x1000 0x2f20
- ;;
- zyxel,nbg6817)
- caldata_extract "0:art" 0x1000 0x2f20
- ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii 0:appsblenv ethaddr) 1)
- ;;
- esac
- ;;
- "ath10k/cal-pci-0001:01:00.0.bin")
- case "$board" in
- asus,onhub |\
- tplink,onhub)
- dt_base64_extract
- ;;
- esac
- ;;
- "ath10k/pre-cal-pci-0001:01:00.0.bin")
- case $board in
- asrock,g10)
- caldata_extract "0:art" 0x5000 0x2f20
- ;;
- edgecore,ecw5410)
- caldata_extract "0:art" 0x1000 0x2f20
- ;;
- linksys,ea7500-v1 |\
- linksys,ea8500)
- caldata_extract "art" 0x5000 0x2f20
- ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) 2)
- ;;
- meraki,mr42 |\
- meraki,mr52)
- CI_UBIPART=art
- caldata_extract_ubi "ART" 0x5000 0x2f20
- ;;
- zyxel,nbg6817)
- caldata_extract "0:art" 0x5000 0x2f20
- ath10k_patch_mac $(mtd_get_mac_ascii 0:appsblenv ethaddr)
- ;;
- esac
- ;;
- "ath10k/cal-pci-0002:01:00.0.bin")
- case "$board" in
- asus,onhub |\
- tplink,onhub)
- dt_base64_extract
- ;;
- meraki,mr42)
- CI_UBIPART=art
- caldata_extract_ubi "ART" 0x9000 0x844
- ;;
- esac
- ;;
- "ath10k/pre-cal-pci-0002:01:00.0.bin")
- case $board in
- edgecore,ecw5410)
- caldata_extract "0:art" 0x5000 0x2f20
- ;;
- meraki,mr52)
- CI_UBIPART=art
- caldata_extract_ubi "ART" 0x9000 0x2f20
- ;;
- esac
- ;;
- *)
- exit 1
- ;;
- esac
|