Home
last modified time | relevance | path

Searched refs:GPIO_CONFIG (Results 1 – 10 of 10) sorted by relevance

/openbmc/skeleton/configs/
H A DBarreleye.py613 GPIO_CONFIG = {} variable
614 GPIO_CONFIG["FSI_CLK"] = {"gpio_pin": "A4", "direction": "out"}
615 GPIO_CONFIG["FSI_DATA"] = {"gpio_pin": "A5", "direction": "out"}
616 GPIO_CONFIG["FSI_ENABLE"] = {"gpio_pin": "D0", "direction": "out"}
617 GPIO_CONFIG["POWER_PIN"] = {"gpio_pin": "E1", "direction": "out"}
618 GPIO_CONFIG["CRONUS_SEL"] = {"gpio_pin": "A6", "direction": "out"}
619 GPIO_CONFIG["PGOOD"] = {"gpio_pin": "C7", "direction": "in"}
620 GPIO_CONFIG["POWER_BUTTON"] = {"gpio_pin": "E0", "direction": "both"}
621 GPIO_CONFIG["PCIE_RESET"] = {"gpio_pin": "B5", "direction": "out"}
622 GPIO_CONFIG["USB_RESET"] = {"gpio_pin": "B6", "direction": "out"}
[all …]
H A DGarrison.py534 GPIO_CONFIG = {} variable
535 GPIO_CONFIG["BMC_POWER_UP"] = {"gpio_pin": "D1", "direction": "out"}
536 GPIO_CONFIG["SYS_PWROK_BUFF"] = {"gpio_pin": "D2", "direction": "in"}
537 GPIO_CONFIG["BMC_WD_CLEAR_PULSE_N"] = {"gpio_pin": "N4", "direction": "out"}
538 GPIO_CONFIG["CM1_OE_R_N"] = {"gpio_pin": "Q6", "direction": "out"}
539 GPIO_CONFIG["BMC_CP0_RESET_N"] = {"gpio_pin": "O2", "direction": "out"}
540 GPIO_CONFIG["BMC_CFAM_RESET_N_R"] = {"gpio_pin": "J2", "direction": "out"}
541 GPIO_CONFIG["PEX8718_DEVICES_RESET_N"] = {"gpio_pin": "B6", "direction": "out"}
542 GPIO_CONFIG["CP0_DEVICES_RESET_N"] = {"gpio_pin": "N3", "direction": "out"}
543 GPIO_CONFIG["CP1_DEVICES_RESET_N"] = {"gpio_pin": "N5", "direction": "out"}
[all …]
H A DFirestone.py534 GPIO_CONFIG = {} variable
535 GPIO_CONFIG["BMC_POWER_UP"] = {"gpio_pin": "D1", "direction": "out"}
536 GPIO_CONFIG["SYS_PWROK_BUFF"] = {"gpio_pin": "D2", "direction": "in"}
537 GPIO_CONFIG["BMC_WD_CLEAR_PULSE_N"] = {"gpio_pin": "N4", "direction": "out"}
538 GPIO_CONFIG["CM1_OE_R_N"] = {"gpio_pin": "Q6", "direction": "out"}
539 GPIO_CONFIG["BMC_CP0_RESET_N"] = {"gpio_pin": "O2", "direction": "out"}
540 GPIO_CONFIG["BMC_CFAM_RESET_N_R"] = {"gpio_pin": "J2", "direction": "out"}
541 GPIO_CONFIG["PEX8718_DEVICES_RESET_N"] = {"gpio_pin": "B6", "direction": "out"}
542 GPIO_CONFIG["CP0_DEVICES_RESET_N"] = {"gpio_pin": "N3", "direction": "out"}
543 GPIO_CONFIG["CP1_DEVICES_RESET_N"] = {"gpio_pin": "N5", "direction": "out"}
[all …]
/openbmc/openbmc-test-automation/data/
H A DPalmetto.py364 GPIO_CONFIG = {} variable
365 GPIO_CONFIG["FSI_CLK"] = {"gpio_pin": "A4", "direction": "out"}
366 GPIO_CONFIG["FSI_DATA"] = {"gpio_pin": "A5", "direction": "out"}
367 GPIO_CONFIG["FSI_ENABLE"] = {"gpio_pin": "D0", "direction": "out"}
368 GPIO_CONFIG["POWER_PIN"] = {"gpio_pin": "E1", "direction": "out"}
369 GPIO_CONFIG["CRONUS_SEL"] = {"gpio_pin": "A6", "direction": "out"}
370 GPIO_CONFIG["PGOOD"] = {"gpio_pin": "C7", "direction": "in"}
371 GPIO_CONFIG["BMC_THROTTLE"] = {"gpio_pin": "J3", "direction": "out"}
372 GPIO_CONFIG["IDBTN"] = {"gpio_pin": "Q7", "direction": "out"}
373 GPIO_CONFIG["POWER_BUTTON"] = {"gpio_pin": "E0", "direction": "both"}
[all …]
H A DWitherspoon.py538 GPIO_CONFIG = {} variable
539 GPIO_CONFIG["BMC_POWER_UP"] = {"gpio_pin": "D1", "direction": "out"}
540 GPIO_CONFIG["SOFTWARE_PGOOD"] = {"gpio_pin": "R1", "direction": "out"}
541 GPIO_CONFIG["SYS_PWROK_BUFF"] = {"gpio_pin": "D2", "direction": "in"}
544 GPIO_CONFIG["CHECKSTOP"] = {"gpio_pin": "J2", "direction": "falling"}
546 GPIO_CONFIG["BMC_CP0_RESET_N"] = {"gpio_pin": "A1", "direction": "out"}
548 GPIO_CONFIG["BMC_VS1_PERST_N"] = {"gpio_pin": "B7", "direction": "out"}
550 GPIO_CONFIG["BMC_CP0_PERST_ENABLE_R"] = {"gpio_pin": "A3", "direction": "out"}
553 GPIO_CONFIG["FSI_DATA"] = {"gpio_pin": "E0", "direction": "out"}
555 GPIO_CONFIG["FSI_CLK"] = {"gpio_pin": "AA0", "direction": "out"}
[all …]
H A DRomulus.py491 GPIO_CONFIG = {} variable
492 GPIO_CONFIG["SOFTWARE_PGOOD"] = {"gpio_pin": "R1", "direction": "out"}
493 GPIO_CONFIG["BMC_POWER_UP"] = {"gpio_pin": "D1", "direction": "out"}
494 GPIO_CONFIG["SYS_PWROK_BUFF"] = {"gpio_pin": "D2", "direction": "in"}
495 GPIO_CONFIG["BMC_WD_CLEAR_PULSE_N"] = {"gpio_pin": "N5", "direction": "out"}
496 GPIO_CONFIG["CHECKSTOP"] = {"gpio_pin": "J2", "direction": "falling"}
497 GPIO_CONFIG["BMC_CP0_RESET_N"] = {"gpio_pin": "A1", "direction": "out"}
498 GPIO_CONFIG["BMC_CP0_PERST_ENABLE_R"] = {"gpio_pin": "A3", "direction": "out"}
499 GPIO_CONFIG["FSI_DATA"] = {"gpio_pin": "AA2", "direction": "out"}
500 GPIO_CONFIG["FSI_CLK"] = {"gpio_pin": "AA0", "direction": "out"}
[all …]
/openbmc/skeleton/pysystemmgr/
H A Dsystem_manager.py67 if name not in System.GPIO_CONFIG:
75 gpio = System.GPIO_CONFIG[name]
76 if "gpio_num" in System.GPIO_CONFIG[name]:
79 if "gpio_pin" in System.GPIO_CONFIG[name]:
/openbmc/skeleton/pytools/
H A Dgpioutil154 if (System.GPIO_CONFIG.has_key(gpio_name) == False):
157 for n in System.GPIO_CONFIG:
160 gpio_info = System.GPIO_CONFIG[gpio_name]
/openbmc/openbmc-tools/bi2cp/
H A Dbi2cp25 GPIO_CONFIG = (0xFB, 1) variable in UCD90320Command
/openbmc/docs/development/
H A Dadd-new-system.md322 GPIO_CONFIG['BMC_POWER_UP'] = \
324 GPIO_CONFIG['SYS_PWROK_BUFF'] = \