summaryrefslogtreecommitdiff
path: root/meta-quanta/meta-gbs/recipes-quanta/fans/read-margin-temp/read-margin-temp-wait.sh
blob: 0937a9fb8c592b6cee12f7a4dcd7bc922c16f0c6 (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
#!/bin/bash

MARGIN_TABLE_FILE_IN="/usr/share/read-margin-temp/config-margin.json.in"
TEMP_FILE="$(mktemp)"
cp "$MARGIN_TABLE_FILE_IN" "$TEMP_FILE"

target_num="$(cat $TEMP_FILE | grep '"target"' | wc -l)"

# wait target dbus
for ((i = 0; i < ${target_num}; i++)); do
    line_num=$((i+1))
    path="$(cat $TEMP_FILE | grep '"target"' | head -n ${line_num} | tail -n +${line_num} | cut -d '"' -f 4)"
    mapper wait $path
done

nvmePath="/xyz/openbmc_project/sensors/temperature/nvme"
nvmeInventoryPath="/xyz/openbmc_project/inventory/system/chassis/motherboard/nvme"
nvmeList=""
# Get and Set WCTEMP
for ((i = 0; i < 16; i++)); do
    name="@WCTemp$(printf "%02d" $i)@"
    wcTemp=72000
    presentState="$(busctl get-property \
        xyz.openbmc_project.Inventory.Manager \
        ${nvmeInventoryPath}${i} \
        xyz.openbmc_project.Inventory.Item \
        Present | awk '{print $2}')"

    if [[ "$presentState" == "true" ]]; then
        actualWCTemp=0
        for ((j = 0; j < 3; j++)); do
            actualWCTemp="$(
                busctl get-property xyz.openbmc_project.nvme.manager \
                    ${nvmePath}${i} \
                    xyz.openbmc_project.Sensor.Threshold.Critical \
                    CriticalHigh | awk '{print $2}'
            )"
            if [[ "${actualWCTemp}" -ne 0 ]]; then
                break
            fi

            echo "${nvmePath}${i} WCTemp was read to be 0, retrying after 1 sec sleep"
            sleep 1
        done

        if [[ "${actualWCTemp}" -ne 0 ]]; then
            wcTemp="$((actualWCTemp * 1000))"
        else
            echo "${nvmePath}${i} WCTemp was read to be 0, using default WCTemp: ${wcTemp}"
        fi

        if [[ -z "$nvmeList" ]]; then
            nvmeList="\"nvme"${i}"\""
        else
            nvmeList="${nvmeList}"", \"nvme"${i}"\""
        fi
    fi

    sed -i "s/$name/${wcTemp}/g" "$TEMP_FILE"
done

sed -i "s/@nvmeList@/${nvmeList}/g" "$TEMP_FILE"

# Use shell parameter expansion to trim the ".in" suffix
mv "$TEMP_FILE" "${MARGIN_TABLE_FILE_IN%".in"}"

# start read margin temp
/usr/bin/read-margin-temp &

exit 0