09d26f7f8539d31fd2f1d433d9df9d5634a2cd5f
[openwrt/openwrt.git] / target / linux / lantiq / xrx200 / base-files / etc / hotplug.d / firmware / 12-ath9k-eeprom
1 #!/bin/sh
2
3 [ -e /lib/firmware/$FIRMWARE ] && exit 0
4
5 . /lib/functions/caldata.sh
6
7 case "$FIRMWARE" in
8 "ath9k-eeprom-pci-0000:00:0e.0.bin" | \
9 "ath9k-eeprom-pci-0000:01:00.0.bin" | \
10 "ath9k-eeprom-pci-0000:02:00.0.bin")
11 board=$(board_name)
12
13 case "$board" in
14 avm,fritz3370-rev2-hynix|\
15 avm,fritz3370-rev2-micron|\
16 avm,fritz7362sl)
17 caldata_extract_reverse "urlader" 0x1541 0x440
18 ;;
19 avm,fritz3390)
20 caldata_extract_reverse "urlader" 0x2546 0x440
21 ;;
22 avm,fritz7360sl|\
23 avm,fritz7360-v2)
24 caldata_extract "urlader" 0x985 0x1000
25 ;;
26 avm,fritz7412|\
27 avm,fritz7430)
28 /usr/bin/fritz_cal_extract -i 1 -s 0x1e000 -e 0x207 -l 4096 -o /lib/firmware/$FIRMWARE $(find_mtd_chardev "urlader")
29 ;;
30 bt,homehub-v5a)
31 caldata_extract_ubi "caldata" 0x1000 0x1000
32 ath9k_patch_mac_crc $(macaddr_add $(mtd_get_mac_binary_ubi caldata 0x110c) 2) 0x10c
33 ;;
34 tplink,tdw8970|\
35 tplink,tdw8980)
36 caldata_extract "boardconfig" 0x21000 0x1000
37 ;;
38 *)
39 caldata_die "board $board is not supported yet"
40 ;;
41 esac
42 ;;
43 esac