summaryrefslogtreecommitdiff
path: root/meta-facebook/meta-bletchley/recipes-bletchley/plat-tools/files/bletchley-common-functions
blob: e3ca00a343418c03b6f5faa65914fe847c40368c (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
#!/bin/bash

get_gpio()
{
    local NET_NAME=$1
    local RET_VAL

    mapfile -t -d " " GPIO_INFO < <(gpiofind "$NET_NAME")
    if [ "${#GPIO_INFO[@]}" -ne 2 ]; then
        echo "get_gpio: can not find gpio, $NET_NAME" >&2
        return 1
    fi
    if ! RET_VAL=$(gpioget "${GPIO_INFO[0]}" "${GPIO_INFO[1]%$'\n'}") ; then
        echo "get_gpio: get ${NET_NAME} failed" >&2
        return 1
    fi
    echo "${RET_VAL}"
    return 0
}

set_gpio()
{
    local NET_NAME=$1
    local OUT_VAL=$2
    mapfile -t -d " " GPIO_INFO < <(gpiofind "$NET_NAME")
    if [ "${#GPIO_INFO[@]}" -ne 2 ]; then
        echo "set_gpio: can not find gpio, $NET_NAME"
        return 1
    fi

    echo -n "set_gpio: set $NET_NAME = $OUT_VAL"
    if ! gpioset "${GPIO_INFO[0]}" "${GPIO_INFO[1]%$'\n'}"="$OUT_VAL"; then
        echo " failed"
        return 1
    fi

    echo " success"
    return 0
}

set_fan()
{
    FAN_ID=$1
    FAN_DUTY=$2
    SYSFA_PWM_PATH=""

    for file in /sys/devices/platform/pwm-fan"$FAN_ID"/hwmon/hwmon*/pwm1
    do
        if [ -e "$file" ]; then
            SYSFA_PWM_PATH="$file"
            break
        fi
    done

    if [ -z "$SYSFA_PWM_PATH" ]; then
        echo "set_fan: pwm file not found, chekc fan id ($FAN_ID)"
        return 1
    fi

    if [ "$FAN_DUTY" -lt 0 ] || [ "$FAN_DUTY" -gt 100 ]; then
        echo "set_fan: incorrect fan duty, $FAN_DUTY"
        return 1
    fi

    # convert duty (0-100) to pwm value (0-255)
    PWM_VAL=$(printf "%.0f" $((FAN_DUTY*255/100)))

    echo -n "set_fan: set fan$FAN_ID = $FAN_DUTY"
    if ! echo "$PWM_VAL" > "$SYSFA_PWM_PATH"; then
        echo " failed"
        return 1
    fi

    echo " success"
    return 0
}


is_sled_present()
{
    local SLED_ID=$1
    local SRV_NAME="xyz.openbmc_project.Inventory.Manager"
    local OBJ_PATH="/xyz/openbmc_project/inventory/system/chassis/presence/presence_sled${SLED_ID}"
    local INTF_NAME="xyz.openbmc_project.Inventory.Item"
    local PRST_VAL

    PRST_VAL=$(busctl get-property "${SRV_NAME}" "${OBJ_PATH}" "${INTF_NAME}" Present | awk '{print $2}')
    if [ "$PRST_VAL" != "true" ]; then
        # not present
        return 1
    fi

    # present
    return 0
}