2015-07-07 13:44:53 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Based on ar71xx 11-ath10k-caldata and 10-rt2x00-eeprom
|
|
|
|
|
2015-10-03 11:57:54 +00:00
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
|
|
|
|
|
|
. /lib/functions.sh
|
|
|
|
. /lib/functions/system.sh
|
|
|
|
. /lib/functions/lantiq.sh
|
|
|
|
. /lib/upgrade/nand.sh
|
|
|
|
|
2015-07-07 13:44:53 +00:00
|
|
|
ath10k_caldata_die() {
|
|
|
|
echo "ath10k caldata: " "$*"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2015-10-03 11:57:54 +00:00
|
|
|
ath10k_caldata_extract_ubi() {
|
2015-07-07 13:44:53 +00:00
|
|
|
local part=$1
|
|
|
|
local offset=$2
|
2015-10-03 11:57:54 +00:00
|
|
|
local count=$3
|
|
|
|
local ubidev=$(nand_find_ubi $CI_UBIPART)
|
|
|
|
local ubi
|
2015-07-07 13:44:53 +00:00
|
|
|
|
2015-10-03 11:57:54 +00:00
|
|
|
ubi=$(nand_find_volume $ubidev $part)
|
|
|
|
[ -n "$ubi" ] || \
|
|
|
|
ath10k_caldata_die "no UBI volume found for $part"
|
2015-07-07 13:44:53 +00:00
|
|
|
|
2015-10-03 11:57:54 +00:00
|
|
|
dd if=/dev/$ubi of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count 2>/dev/null || \
|
|
|
|
ath10k_caldata_die "failed to extract from $ubi"
|
2015-07-07 13:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ath10k_caldata_set_macaddr() {
|
|
|
|
local macaddr=$1
|
|
|
|
|
|
|
|
macaddr_2bin $macaddr | dd of=/lib/firmware/$FIRMWARE \
|
|
|
|
conv=notrunc bs=1 seek=6 count=6
|
|
|
|
}
|
|
|
|
|
|
|
|
case "$FIRMWARE" in
|
|
|
|
"ath10k/cal-pci-0000:02:00.0.bin")
|
2016-09-23 22:07:25 +00:00
|
|
|
board=$(lantiq_board_name)
|
2015-07-07 13:44:53 +00:00
|
|
|
case $board in
|
|
|
|
BTHOMEHUBV5A)
|
2015-10-03 11:57:54 +00:00
|
|
|
ath10k_caldata_extract_ubi "caldata" 20480 2116
|
|
|
|
ath10k_caldata_set_macaddr $(macaddr_add $(mtd_get_mac_binary_ubi caldata 4364) +3)
|
2015-07-07 13:44:53 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ath10k_caldata_die "board $board is not supported yet"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|