104 lines
2.3 KiB
Bash
104 lines
2.3 KiB
Bash
#!/bin/sh
|
|
|
|
server_type="5280m7"
|
|
server_platform="m7"
|
|
|
|
slot_name=$1
|
|
sensor_type=$2
|
|
chip_slave=$3
|
|
param_num=$#
|
|
|
|
nic_type=""
|
|
slot_id=""
|
|
|
|
path=`pwd`
|
|
server_script="${path}/platform_${server_type}.sh"
|
|
sensor_script="${path}/plugin_${sensor_type}.sh"
|
|
i2c_script="${path}/i2c_${server_platform}.sh"
|
|
fmt_print="${path}/format_print.sh"
|
|
|
|
print_helper(){
|
|
echo "Usage : ./nicsensor.sh [slot] [sensor] [i2c slave]"
|
|
echo "For Detect: ./nicsensor.sh detect [ocp/pcie]"
|
|
}
|
|
|
|
conf_pre_check(){
|
|
|
|
if [ $param_num -lt 1 ];then
|
|
print_helper
|
|
exit 0
|
|
fi
|
|
|
|
# init debug log
|
|
if [ -e "/tmp/nicsensor_debug.log" ];then
|
|
rm /tmp/nicsensor_debug.log
|
|
fi
|
|
|
|
if [ ! -e $fmt_print ];then
|
|
echo "Missing file $fmt_print !!!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e $server_script ];then
|
|
$fmt_print "console" "Error" "Server Script $server_script not exist! Maybe unsupport for now!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e $sensor_script ];then
|
|
$fmt_print "console" "Error" "Sensor Script $sensor_script not exist! Maybe unsupport for now!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e $i2c_script ];then
|
|
$fmt_print "console" "Error" "$i2c_script not exist!"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
parse_slot_name(){
|
|
# Get nic type and slot id from slot name
|
|
case "${slot_name}" in
|
|
ocp*)
|
|
nic_type="ocp"
|
|
slot_id=`echo $slot_name | cut -c 4`
|
|
;;
|
|
pcie*)
|
|
nic_type="pcie"
|
|
slot_id=`echo $slot_name | cut -c 5-`
|
|
;;
|
|
*)
|
|
$fmt_print "log" "Warning" "Undetermined nic type, default set to pcie"
|
|
nic_type="pcie"
|
|
slot_id=$slot_name
|
|
;;
|
|
esac
|
|
}
|
|
|
|
connect_i2c(){
|
|
$server_script "connect" "$nic_type" "$slot_id"
|
|
|
|
if [ $? -ne 0 ];then
|
|
$fmt_print "console" "Error" "Can't build i2c connection"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
start_sensor_reading(){
|
|
$fmt_print "log" "Info" "start sensor reading"
|
|
|
|
$sensor_script "read" "${i2c_bus}" "${chip_slave}" "${server_platform}"
|
|
}
|
|
# ---------------------------------------------------------
|
|
# Start Execute Script
|
|
# ---------------------------------------------------------
|
|
conf_pre_check
|
|
|
|
parse_slot_name
|
|
|
|
i2c_bus=`connect_i2c`
|
|
if [ $? -ne 0 ];then
|
|
$fmt_print "console" "Error" "An Error occured when build i2c connection with ${slot_name}"
|
|
exit 1
|
|
fi
|
|
|
|
start_sensor_reading |