/src/sys/dev/fdt/ |
usbnopphy.c | 55 struct fdtbus_gpio_pin *sc_pin_reset; member in struct:usbnopphy_softc 92 if (sc->sc_pin_reset != NULL) { 93 fdtbus_gpio_write(sc->sc_pin_reset, 1); 95 fdtbus_gpio_write(sc->sc_pin_reset, 0); 98 if (sc->sc_pin_reset != NULL) 99 fdtbus_gpio_write(sc->sc_pin_reset, 1); 134 sc->sc_pin_reset = fdtbus_gpio_acquire(phandle, "reset-gpios", GPIO_PIN_OUTPUT);
|
/src/sys/arch/arm/nxp/ |
if_enet_imx.c | 46 struct fdtbus_gpio_pin *sc_pin_reset; member in struct:enet_fdt_softc 238 sc->sc_pin_reset = fdtbus_gpio_acquire(phandle, "phy-reset-gpios", GPIO_PIN_OUTPUT); 239 if (sc->sc_pin_reset == NULL) { 248 fdtbus_gpio_write(sc->sc_pin_reset, 1); 250 fdtbus_gpio_write(sc->sc_pin_reset, 0);
|
imx6_pcie.c | 70 struct fdtbus_gpio_pin *sc_pin_reset; member in struct:imxpcie_fdt_softc 155 ifsc->sc_pin_reset = fdtbus_gpio_acquire(phandle, "reset-gpio", 157 if (!ifsc->sc_pin_reset) { 271 fdtbus_gpio_write(ifsc->sc_pin_reset, 1); 273 fdtbus_gpio_write(ifsc->sc_pin_reset, 0);
|