summaryrefslogtreecommitdiff
path: root/meta-facebook/recipes-fb/fb-powerctrl/files/setup_gpio.sh
blob: cac3b20c7d0f7b6691c5e29c87fe1345f21e1cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

# Set all output GPIOs as such and drive them with reasonable values.
function set_gpio_active_low() {
  if [ $# -ne 2 ]; then
    echo "set_gpio_active_low: need both GPIO# and initial level";
    return;
  fi

  echo "$1" > /sys/class/gpio/export
  echo "$2" > "/sys/class/gpio/gpio$1/direction"
}

GPIO_BASE=$(cat /sys/class/gpio/gpio*/base)

# FM_BMC_READY_N, GPIO S1, active low
set_gpio_active_low $((GPIO_BASE + 144 +1)) low

# FP_PECI_MUX, active low
set_gpio_active_low $((GPIO_BASE + 212)) high

exit 0;