blob: ff0ec3c2f3b8eaba4edf03582a305b274fae4368 [file] [log] [blame]
Delphine CC Chiu177e9872023-09-22 10:30:23 +08001#!/bin/bash -e
2# shellcheck source=meta-facebook/meta-yosemite4/recipes-yosemite4/plat-tool/files/yosemite4-common-functions
3source /usr/libexec/yosemite4-common-functions
4
Tim Lee1b847b22024-07-18 14:29:03 +08005check_nuvoton_board
6is_nuvoton_board=$?
Allen.Wang1fd57fe2024-04-03 18:03:11 +08007
8enable_all_fan_input()
9{
10 for file in /sys/bus/i2c/devices/*/hwmon/*/fan*_enable
11 do
12 echo 1 > "${file}"
13 done
14}
15
Erica29bca52023-12-05 10:27:41 +080016# probe devices behind mux for management board cpld
17
18rev_id_gpiochip=$(basename "/sys/bus/i2c/devices/13-0020/"*gpiochip*)
19rev_id_bit0=$(gpioget "$rev_id_gpiochip" 0)
20rev_id_bit1=$(gpioget "$rev_id_gpiochip" 1)
21rev_id_bit2=$(gpioget "$rev_id_gpiochip" 2)
22rev_id_bit3=$(gpioget "$rev_id_gpiochip" 3)
23
24# Default devicetree was set for EVT and later, only POC will do following manual devices' probing
25if [ "$rev_id_bit0" -eq 0 ] && [ "$rev_id_bit1" -eq 0 ] && [ "$rev_id_bit2" -eq 0 ] && [ "$rev_id_bit3" -eq 0 ]
26then
27 echo 24c128 "0x50" > /sys/bus/i2c/devices/i2c-12/new_device
28 echo 24c64 "0x54" > /sys/bus/i2c/devices/i2c-12/new_device
29 echo tmp75 "0x48" > /sys/bus/i2c/devices/i2c-12/new_device
30 echo nct3018y "0x6f" > /sys/bus/i2c/devices/i2c-12/new_device
31fi
32
Delphine CC Chiu177e9872023-09-22 10:30:23 +080033# set initial value for GPIO output pins
34set_gpio EN_P5V_USB_CPLD_R 1
35set_gpio EN_NIC0_POWER_BMC_R 1
36set_gpio EN_NIC1_POWER_BMC_R 1
37set_gpio EN_NIC2_POWER_BMC_R 1
38set_gpio EN_NIC3_POWER_BMC_R 1
39set_gpio FM_BMC_RTCRST_R 0
40set_gpio RST_USB_HUB_R_N 1
41set_gpio FM_BMC_READY_R2 1
42set_gpio SPI_LOCK_REQ_BMC_N 1
43set_gpio EN_P3V_BAT_SCALED_R 0
44
Delphine CC Chiu177e9872023-09-22 10:30:23 +080045set_gpio NIC0_MAIN_PWR_EN 1
46set_gpio NIC1_MAIN_PWR_EN 1
47set_gpio NIC2_MAIN_PWR_EN 1
48set_gpio NIC3_MAIN_PWR_EN 1
49
Tim Lee1b847b22024-07-18 14:29:03 +080050if [ "$is_nuvoton_board" -ne "1" ]
51then
52 # short-term set gpio v0~v3 to input pin for slot5~8 reset button
53 mknod -m 660 /dev/mem c 1 1
54 chown root:kmem /dev/mem
55 devmem 0x1e78008c 32 0x19000000
56fi
Delphine CC Chiu05c30e12024-03-06 13:21:47 +080057
Allen.Wang1fd57fe2024-04-03 18:03:11 +080058# Enable all fan input as early as possible
59enable_all_fan_input
60
Delphine CC Chiu177e9872023-09-22 10:30:23 +080061exit 0