Home
last modified time | relevance | path

Searched refs:rst_gpio (Results 1 – 4 of 4) sorted by relevance

/external/u-boot/board/ti/evm/
Devm.c274 int rst_gpio; in reset_net_chip() local
277 rst_gpio = OMAP3EVM_GPIO_ETH_RST_GEN1; in reset_net_chip()
279 rst_gpio = OMAP3EVM_GPIO_ETH_RST_GEN2; in reset_net_chip()
282 ret = gpio_request(rst_gpio, ""); in reset_net_chip()
284 printf("Unable to get GPIO %d\n", rst_gpio); in reset_net_chip()
289 gpio_direction_output(rst_gpio, 0); in reset_net_chip()
292 gpio_set_value(rst_gpio, 1); in reset_net_chip()
294 gpio_set_value(rst_gpio, 0); in reset_net_chip()
296 gpio_set_value(rst_gpio, 1); in reset_net_chip()
/external/u-boot/board/compulab/common/
Domap3_smc911x.c75 int (*reset)(int), int rst_gpio) in cl_omap3_smc911x_init() argument
82 reset(rst_gpio); in cl_omap3_smc911x_init()
84 cl_omap3_smc911x_reset_net_chip(rst_gpio); in cl_omap3_smc911x_init()
Dcommon.h28 int (*reset)(int), int rst_gpio);
31 int (*reset)(int), int rst_gpio) in cl_omap3_smc911x_init() argument
/external/u-boot/drivers/net/
Dpic32_eth.c34 struct gpio_desc rst_gpio; member
41 if (!dm_gpio_is_valid(&priv->rst_gpio)) in board_netphy_reset()
45 dm_gpio_set_value(&priv->rst_gpio, 0); in board_netphy_reset()
47 dm_gpio_set_value(&priv->rst_gpio, 1); in board_netphy_reset()
564 &priv->rst_gpio, GPIOD_IS_OUT); in pic32_eth_probe()
581 dm_gpio_free(dev, &priv->rst_gpio); in pic32_eth_remove()