summaryrefslogtreecommitdiff
path: root/recipes-bsp/multitech/mts-io/mts-io.init
blob: 24b891d314268f1a754a9e635193f07cb7cf955e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash

fail=0

sysdir=/sys/devices/platform/mts-io
gpiodir=/sys/class/gpio

USBRST=${sysdir}/usbhub-reset

RST[0]="${sysdir}/wifi-bt-reset"
RST[1]="${sysdir}/ap1-reset"
RST[2]="${sysdir}/ap2-reset"
RST[3]="${sysdir}/gnss-reset"
RST[4]="${sysdir}/radio-reset"
RST[5]="${sysdir}/ap2-reset"
RST[6]="${sysdir}/ap2-reset"
RST[7]="${sysdir}/mtq-reset"
RST[8]="${sysdir}/secure-reset"
RST[9]="${sysdir}/eth-reset"
RST[10]="${sysdir}/mtq-reset"

USLPTIME=30000 # 30 milliseconds
WAIT="/bin/busybox usleep ${USLPTIME}"

reset_usb() {
	/usr/bin/logger -t "mts-io" -p info Reset the WiFi Bluetooth device
	
	if [[ -f ${USBRST} ]] ; then
		if ! ( (echo 1 >${USBRST}) && (echo 0 >${USBRST}) && ${WAIT} && (echo 1 >${USBRST}) ) ; then
			/usr/bin/logger -t "mts-io" -p error -s "Failed write to ${USBRST}"
		fi
	else
		/usr/bin/logger -t "mts-io" -p error -s "${USBRST} does not exist"
		return 1
	fi
	return 0
}
reset_array() {
	((i=${#RST[@]}-1))
	while ((i>=0)) ; do
		if [[ -f ${RST[$i]} ]] ; then
			if ! ( (echo 1 >${RST[i]}) ) ; then
				/usr/bin/logger -t "mts-io" -p error -s "Failed write to ${RST[$i]}"
			fi
		else
			/usr/bin/logger -t "mts-io" -p info -s "${RST[$i]} does not exist"
			RST[$i]=""
		fi
		((i--))
	done
	while ((i>0)) ; do
		if ((${#RST[$i] > 0)) && [[ -f ${RST[$i]} ]] ; then
			if ! ( (echo 0 >${RST[i]}) ) ; then
				/usr/bin/logger -t "mts-io" -p error -s "Failed write to ${RST[$i]}"
			fi
		else
			/usr/bin/logger -t "mts-io" -p info -s "${RST[$i]} does not exist"
		fi
	done
	${WAIT}
	while ((i>0)) ; do
		if ((${#RST[$i] > 0)) && [[ -f ${RST[$i]} ]] ; then
			if ! ( (echo 1 >${RST[i]}) ) ; then
				/usr/bin/logger -t "mts-io" -p error -s "Failed write to ${RST[$i]}"
			fi
		else
			/usr/bin/logger -t "mts-io" -p info -s "${RST[$i]} does not exist"
		fi
	done
}
read_card_info() {
  ap1_product_id=""
  ap2_product_id=""
  mts_hw_version=""

  if [[ -d $sysdir/ap1 ]]; then
    ap1_product_id=$(cat $sysdir/ap1/product-id)
  fi
  if [[ -d $sysdir/ap2 ]]; then
    ap2_product_id=$(cat $sysdir/ap2/product-id)
  fi
}

mfser_init() {
  found_ap1=0

  if [[ $ap1_product_id =~ ^MTAC-MFSER- ]]; then
    /usr/bin/logger -t "mts-io" -p info -s "Linking /dev/mfser to /dev/ttyAP1"
    ln -sf /dev/ttyAP1 /dev/mfser
    found_ap1=1
  fi

  if [[ $ap2_product_id =~ ^MTAC-MFSER- ]]; then
    if [[ $found_ap1 = 1 ]]; then
      /usr/bin/logger -t "mts-io" -p info -s "Linking /dev/mfser-2 to /dev/ttyAP2"
      ln -sf /dev/ttyAP2 /dev/mfser-2
    else
      /usr/bin/logger -t "mts-io" -p info -s "Linking /dev/mfser to /dev/ttyAP2"
      ln -sf /dev/ttyAP2 /dev/mfser
    fi
  fi

}

case $1 in
  start)
    /usr/bin/logger -t "mts-io" -p info -s "Loading mts-io module"
    if ! modprobe mts_io ; then
    	((fail++))
    fi
    read_card_info
    if ! reset_usb ; then
    	((fail++))
    fi
    reset_array
    mfser_init
    exit $fail
    ;;

  stop)
    /usr/bin/logger -t "mts-io" -p info -s "Unloading mts-io module"
    modprobe -r mts_io
    ;;
  status)
  	if [[ -d ${sysdir} ]] ; then
  		echo Driver is loaded
  		exit 0
  	else
  		echo Driver is not loaded
  		exit 3
  	fi
  	;;
  *)
    echo "Usage: $0 {start|stop}"
    exit 2
    ;;
esac