diff options
Diffstat (limited to 'board/olimex/am335x_som/board.c')
-rw-r--r-- | board/olimex/am335x_som/board.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/board/olimex/am335x_som/board.c b/board/olimex/am335x_som/board.c index 5413cca6b4..c828d6c7c5 100644 --- a/board/olimex/am335x_som/board.c +++ b/board/olimex/am335x_som/board.c @@ -151,8 +151,23 @@ int board_init(void) } #ifdef CONFIG_BOARD_LATE_INIT + +#define GPIO_PHY_RST 29 + +static void board_phy_init(void) +{ + puts("phy reset\n"); + gpio_request(GPIO_PHY_RST, "phy_rst"); + gpio_direction_output(GPIO_PHY_RST, 0); + mdelay(2); + gpio_set_value(GPIO_PHY_RST, 1); + mdelay(2); +} + int board_late_init(void) { + board_phy_init(); + return 0; } #endif |