c5d0d6978b45ea75d5f6b9746028270fec1613e3
[openwrt/openwrt.git] / target / linux / ramips / base-files / etc / hotplug.d / firmware / 10-rt2x00-eeprom
1 #!/bin/sh
2
3 rt2x00_eeprom_die() {
4 echo "rt2x00 eeprom: " "$*"
5 exit 1
6 }
7
8 rt2x00_eeprom_extract() {
9 local part=$1
10 local offset=$2
11 local count=$3
12 local mtd
13
14 . /etc/functions.sh
15
16 mtd=$(find_mtd_part $part)
17 [ -n "$mtd" ] || \
18 rt2x00_eeprom_die "no mtd device found for partition $part"
19
20 dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count 2>/dev/null || \
21 rt2x00_eeprom_die "failed to extract from $mtd"
22 }
23
24 [ -e /lib/firmware/$FIRMWARE ] && exit 0
25
26 . /lib/ramips.sh
27
28 board=$(ramips_board_name)
29
30 case "$FIRMWARE" in
31 "RT288X.eeprom" | \
32 "RT305X.eeprom" | \
33 "RT3883.eeprom")
34 case $board in
35 dir-300-b1 | \
36 dir-600-b1 | \
37 dir-600-b2)
38 rt2x00_eeprom_extract "devdata" 16384 272
39 ;;
40
41 rt-n10-plus | \
42 rt-g32-b1)
43 rt2x00_eeprom_extract "devconf" 0 272
44 ;;
45
46 f5d8235-v1 | \
47 f5d8235-v2)
48 rt2x00_eeprom_extract "u-boot" 262144 272
49 ;;
50
51 all0256n | \
52 argus-atp52b | \
53 bc2 | \
54 esr-9753 | \
55 fonera20n | \
56 freestation5 | \
57 hw550-3g | \
58 mofi3500-3gn | \
59 pwh2004 | \
60 nbg-419n | \
61 nw718 | \
62 omni-emb | \
63 psr-680w | \
64 rt-n15 | \
65 rt-n56u | \
66 sl-r7205 | \
67 v11st-fe | \
68 v22rw-2x2 | \
69 w306r-v20 | \
70 w502u | \
71 wcr-150gn | \
72 whr-g300n | \
73 wl-330n | \
74 wl-330n3g | \
75 wl-351 | \
76 wli-tx4-ag300n | \
77 wr512-3gn | \
78 wr6202 | \
79 ur-336un | \
80 xdxrn502j)
81 rt2x00_eeprom_extract "factory" 0 272
82 ;;
83
84 wl341v3)
85 rt2x00_eeprom_extract "board-nvram" 64880 272
86 ;;
87
88 *)
89 rt2x00_eeprom_die "board $board is not supported yet"
90 ;;
91 esac
92 ;;
93
94 "rt2x00pci_1_0.eeprom")
95 case $board in
96 rt-n56u)
97 rt2x00_eeprom_extract "factory" 32768 272
98 ;;
99 esac
100 ;;
101 esac