Home
last modified time | relevance | path

Searched refs:GPIO_PIN (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/meta-ibm/meta-system1/recipes-phosphor/flash/bios-version/
H A Dpch-standby-check.sh4 GPIO_PIN=$(gpiofind "pch-ready")
6 if [ -z "${GPIO_PIN}" ]; then
12 GPIO_CHIP=$(echo "$GPIO_PIN" | cut -d' ' -f1) # Extract gpiochip
13 GPIO_LINE=$(echo "$GPIO_PIN" | cut -d' ' -f2) # Extract line offset
H A Dbios-version.sh5 GPIO_PIN=$(gpiofind "pch-ready")
7 if [ -z "${GPIO_PIN}" ]; then
13 GPIO_CHIP=$(echo "$GPIO_PIN" | cut -d' ' -f1) # Extract gpiochip
14 GPIO_LINE=$(echo "$GPIO_PIN" | cut -d' ' -f2) # Extract line offset
/openbmc/u-boot/include/configs/
H A Dcm_t335.h129 #define GPIO_PIN(_bank, _pin) ((_bank << 5) + _pin) macro
/openbmc/u-boot/board/compulab/cm_t335/
H A Dcm_t335.c74 #define GPIO_PHY_RST GPIO_PIN(3, 7)
/openbmc/linux/drivers/pinctrl/
H A Dpinctrl-ingenic.c33 #define GPIO_PIN 0x00 macro
3321 unsigned int val = ingenic_gpio_read_reg(jzgc, GPIO_PIN); in ingenic_gpio_get_value()