summaryrefslogtreecommitdiff
path: root/io-tool/mts-io-sysfs
blob: 3961c03051598c2cf04c01b4f8be02670a4fb371 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#!/usr/bin/env bash
#
# vim: set sw=2 ts=2 expandtab:
#
# Copyright (C) 2010 by Multi-Tech Systems
#
# Author: James Maki <jmaki@multitech.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

PATH=${PATH}:.

source /usr/lib/mts-io-sysfs/mts-io-sysfs-inc.sh

trap "exit_handler" EXIT
exit_handler() {
  local exit_code=$?
  if [ ${exit_code} -ne 0 ]; then
    log_error "exiting with ${exit_code}"
  fi
}

reset_short_handler() {
  echo "reset short signal received"
}
reset_long_handler() {
  echo "reset long signal received"
}
RESET_SHORT_CMD="reset_short_handler"
RESET_LONG_CMD="reset_long_handler"
RESET_SHORT_SIGNAL=$(kill -l SIGUSR1)
RESET_LONG_SIGNAL=$(kill -l SIGUSR2)

PROGRAM=$(basename $0)
VERSION="0.0.2"

print_version() {
  printf "${PROGRAM} ${VERSION}\n"
  printf "Copyright (C) 2010 by Multi-Tech Systems\n"
cat <<EOF
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 2 or (at your option) any later version.
This program has absolutely no warranty.
EOF
}

usage() {

  MTS_IO_DIR="/sys/devices/platform/mts-io"

  local out=1
  if [ $# -eq 1 ]; then
    out=${1}
  fi

  #header
  printf "Usage: ${PROGRAM} [ OPTIONS ] OBJECT [--] [ ARGUMENTS ]\n" >&${out}
  printf "where  OBJECT := {\n" >&${out}
  printf "         show SHOW-NAME |\n" >&${out}
  printf "         store STORE-NAME |\n" >&${out}
  printf "       }\n" >&${out}
  printf "\n" >&${out}

  #items for SHOW
  printf "       SHOW-NAME := {\n" >&${out}
  for f in $MTS_IO_DIR/*;
  do
    FILENAME=${f##*/}
    case $FILENAME in
      modalias )
        ;;
      power )
        ;;
      subsystem )
        ;;
      uevent )
        ;;
      * )
        printf "         $FILENAME\n" >&${out} ;;
    esac
  done
  printf "       }\n" >&${out}
  printf "\n" >&${out}

  #items for STORE
  printf "       STORE-NAME := {\n" >&${out}
  for f in $MTS_IO_DIR/*;
  do
    FILENAME=${f##*/}
    case $FILENAME in
      #mac addresses are read-only
      mac-* )
        ;;
      #product-id, device-id, vendor-id are all read-only
      *-id )
        ;;
      #hw-version is read-only
      hw-version )
        ;;
      #imei is read-only
      imei )
        ;;
      modalias )
        ;;
      power )
        ;;
      subsystem )
        ;;
      uevent )
        ;;
      board-temperature )
        ;;
      extserial-dtr )
        ;;
      adc[0-9] )
        ;;
      din[0-9] )
        ;;
      gpi[0-9] )
        ;;
      gpi[0-9][0-9] )
        ;;
      reset )
        ;;
      led3 )
        ;;
      led-ls )
        ;;
      usbhd-ps-oc )
        ;;
      radio-reset )
        printf "         $FILENAME { 0 }\n" >&${out} ;;
      reset-monitor )
        printf "         $FILENAME { pid short-signal long-signal [extra-long-signal] }\n" >&${out} ;;
      serial-mode )
        printf "         $FILENAME { loopback | rs232 | rs422 | rs485 }\n" >&${out} ;;
      * )
        printf "         $FILENAME BOOLEAN\n" >&${out} ;;
    esac
  done
  printf "       }\n" >&${out}
  printf "\n" >&${out}


  #footer
  printf "       OPTIONS := {\n" >&${out}
  printf "         --verbose\n" >&${out}
  printf "       }\n" >&${out}
  printf "\n" >&${out}
  printf "       BOOLEAN := { OFF | ON }\n" >&${out}
  printf "       OFF := 0\n" >&${out}
  printf "       ON := 1\n" >&${out}
  printf "\n" >&${out}
}

ARGS=$(getopt -o "" --long verbose,version,help -n $0 -- "$@")
if [ $? != 0 ]; then
  usage 2
  exit 1
fi
eval set -- "${ARGS}"

while true; do
  case "$1" in
  --version)
    print_version
    exit 0
    shift
    ;;

  --help)
    usage 1
    exit 0
    shift
    ;;

  --verbose)
    VERBOSE=true
    shift
    ;;
  --)
    shift
    break
  ;;
  *)
    usage 2
    exit 1
  ;;
  esac
done

if [ $# -lt 1 ]; then
  usage 2
  exit 1
fi

cmd=${1}
shift

case "${cmd}" in
show)
  show "$@"
  ;;
store)
  store "$@"
  ;;
show-trigger)
  show_trigger "$@"
  ;;
store-trigger)
  store_trigger "$@"
  ;;
reset-monitor-trap)
  while true; do
    if [ $# -eq 0 ]; then
      break
    fi

    if [ $# -ne 3 ]; then
      usage 2
      exit 1
    fi

    case "${1}" in
    short-cmd)
      RESET_SHORT_CMD=${2}
      RESET_SHORT_SIGNAL=$(kill -l ${3})
      if [ $? -ne 0 ]; then
        exit 1
      fi
      ;;
    long-cmd)
      RESET_LONG_CMD=${2}
      RESET_LONG_SIGNAL=$(kill -l ${3})
      if [ $? -ne 0 ]; then
        exit 1
      fi
      ;;
    *)
      usage 2
      exit 1
      ;;
    esac

    shift; shift; shift
  done

  trap "${RESET_SHORT_CMD}" ${RESET_SHORT_SIGNAL}
  trap "${RESET_LONG_CMD}" ${RESET_LONG_SIGNAL}

  store reset-monitor "$$ ${RESET_SHORT_SIGNAL} ${RESET_LONG_SIGNAL}"

  while true; do
    sleep 1
  done
  ;;
*)
  usage 2
  exit 1
  ;;
esac

exit 0