-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[platform-celestica]: Add new fancontrol service for haliburton device (
- Loading branch information
Showing
7 changed files
with
728 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Configuration file generated by pwmconfig, changes will be lost | ||
INTERVAL=2 | ||
DEVPATH=hwmon3=devices/pci0000:00/0000:00:13.0/i2c-0/i2c-8/i2c-23/23-004d hwmon2=devices/pci0000:00/0000:00:13.0/i2c-0/i2c-8/i2c-11/11-001a | ||
DEVNAME=hwmon3=emc2305 hwmon2=max6697 | ||
FCTEMPS=hwmon3/device/pwm1=hwmon2/temp1_input hwmon3/device/pwm2=hwmon2/temp1_input hwmon3/device/pwm4=hwmon2/temp1_input | ||
FCFANS=hwmon3/device/pwm1=hwmon3/device/fan1_input hwmon3/device/pwm2=hwmon3/device/fan2_input hwmon3/device/pwm4=hwmon3/device/fan4_input | ||
MINTEMP=hwmon3/device/pwm1=27 hwmon3/device/pwm2=27 hwmon3/device/pwm4=27 | ||
MAXTEMP=hwmon3/device/pwm1=46 hwmon3/device/pwm2=46 hwmon3/device/pwm4=46 | ||
MINSTART=hwmon3/device/pwm1=102 hwmon3/device/pwm2=102 hwmon3/device/pwm4=102 | ||
MINSTOP=hwmon3/device/pwm1=102 hwmon3/device/pwm2=102 hwmon3/device/pwm4=102 | ||
MINPWM=hwmon3/device/pwm1=102 hwmon3/device/pwm2=102 hwmon3/device/pwm4=102 | ||
MAXPWM=hwmon3/device/pwm1=255 hwmon3/device/pwm2=255 hwmon3/device/pwm4=255 | ||
THYST=hwmon3/device/pwm1=2 hwmon3/device/pwm2=2 hwmon3/device/pwm4=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
platform/broadcom/sonic-platform-modules-cel/debian/platform-modules-haliburton.install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
haliburton/cfg/haliburton-modules.conf etc/modules-load.d | ||
haliburton/systemd/platform-modules-haliburton.service lib/systemd/system | ||
haliburton/script/fancontrol.sh etc/init.d | ||
services/fancontrol/fancontrol.service lib/systemd/system | ||
services/fancontrol/fancontrol usr/local/bin |
3 changes: 3 additions & 0 deletions
3
platform/broadcom/sonic-platform-modules-cel/debian/platform-modules-haliburton.postinst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
depmod -a | ||
systemctl enable platform-modules-haliburton.service | ||
systemctl enable fancontrol.service | ||
|
||
systemctl start platform-modules-haliburton.service | ||
systemctl start fancontrol.service |
78 changes: 78 additions & 0 deletions
78
platform/broadcom/sonic-platform-modules-cel/haliburton/script/fancontrol.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#! /bin/sh | ||
|
||
### BEGIN INIT INFO | ||
# Provides: fancontrol | ||
# Required-Start: $remote_fs | ||
# Required-Stop: $remote_fs | ||
# Default-Start: 2 3 4 5 | ||
# Default-Stop: | ||
# Short-Description: fancontrol | ||
# Description: fan speed regulator | ||
### END INIT INFO | ||
|
||
. /lib/lsb/init-functions | ||
|
||
[ -f /etc/default/rcS ] && . /etc/default/rcS | ||
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin | ||
DAEMON=/usr/local/bin/fancontrol | ||
DESC="fan speed regulator" | ||
NAME="fancontrol" | ||
PIDFILE=/var/run/fancontrol.pid | ||
PLATFORMPATH=/sys/devices/platform/e1031.smc | ||
MAIN_CONF=/usr/share/sonic/device/x86_64-cel_e1031-r0/fancontrol | ||
DEVPATH=/sys/devices/pci0000:00/0000:00:13.0/i2c-0/i2c-8/i2c-23/23-004d | ||
|
||
test -x $DAEMON || exit 0 | ||
|
||
for i in 1 2 3 | ||
do | ||
j=$i | ||
[ $i -eq 3 ] && j=4 | ||
FANFAULT=$(cat ${DEVPATH}/fan${j}_fault) | ||
[ $FANFAULT = 1 ] && continue | ||
FANDIR=$(cat ${PLATFORMPATH}/fan${i}_dir) | ||
done | ||
CONF=${MAIN_CONF}-${FANDIR} | ||
|
||
case "$1" in | ||
start) | ||
if [ -f $CONF ] ; then | ||
if $DAEMON --check $CONF 1>/dev/null 2>/dev/null ; then | ||
log_daemon_msg "Starting $DESC" "$NAME\n" | ||
start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON $CONF | ||
log_end_msg $? | ||
else | ||
log_failure_msg "Not starting fancontrol, broken configuration file; please re-run pwmconfig." | ||
fi | ||
else | ||
if [ "$VERBOSE" != no ]; then | ||
log_warning_msg "Not starting fancontrol; run pwmconfig first." | ||
fi | ||
fi | ||
;; | ||
stop) | ||
log_daemon_msg "Stopping $DESC" "$NAME" | ||
start-stop-daemon --stop --quiet --pidfile $PIDFILE --oknodo --startas $DAEMON $CONF | ||
rm -f $PIDFILE | ||
log_end_msg $? | ||
;; | ||
restart) | ||
$0 stop | ||
sleep 3 | ||
$0 start | ||
;; | ||
force-reload) | ||
if start-stop-daemon --stop --test --quiet --pidfile $PIDFILE --startas $DAEMON $CONF ; then | ||
$0 restart | ||
fi | ||
;; | ||
status) | ||
status_of_proc $DAEMON $NAME $CONF && exit 0 || exit $? | ||
;; | ||
*) | ||
log_success_msg "Usage: /etc/init.d/fancontrol {start|stop|restart|force-reload|status}" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
exit 0 |
Oops, something went wrong.