From f8de583c3e948ae8a819b0b531ad17cf3cc713d7 Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Mon, 6 Feb 2017 17:21:21 +0800 Subject: MLK-14418-5 imx: mx7dsabresd: reset ENET_RST_B Reset ENET_RST_B to make ENET function stable. Since DM_GPIO enabled, we use "gpio_spi@0_5" which corresponds to ENET_RST_B. Signed-off-by: Peng Fan --- board/freescale/mx7dsabresd/mx7dsabresd.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'board/freescale') diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 9796049..5c70b48 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -210,6 +210,22 @@ int mmc_map_to_kernel_blk(int dev_no) int board_eth_init(bd_t *bis) { int ret; + unsigned int gpio; + + ret = gpio_lookup_name("gpio_spi@0_5", NULL, NULL, &gpio); + if (ret) { + printf("GPIO: 'gpio_spi@0_5' not found\n"); + } + + ret = gpio_request(gpio, "fec_rst"); + if (ret && ret != -EBUSY) { + printf("gpio: requesting pin %u failed\n", gpio); + return -1; + } + + gpio_direction_output(gpio, 0); + udelay(500); + gpio_direction_output(gpio, 1); setup_iomux_fec(); -- cgit v1.1