1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Stefan Roese <sr@denx.de>
7 #include <asm/arch/reset_manager.h>
11 int board_early_init_f(void)
15 /* Reset the Marvell PHY 88E1510 */
16 ret = gpio_request(63, "PHY reset");
20 gpio_direction_output(63, 0);
22 gpio_set_value(63, 1);