summaryrefslogtreecommitdiff
path: root/board/adi/sc573-ezkit/sc573-ezkit.c
blob: 464142b27a5ef1314e629cfd2433c9eae3cc9183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * (C) Copyright 2025 - Analog Devices, Inc.
 */

#include <phy.h>
#include <asm/u-boot.h>
#include <asm/arch/sc5xx.h>
#include <asm/arch/soc.h>

int board_phy_config(struct phy_device *phydev)
{
	fixup_dp83867_phy(phydev);
	return 0;
}

int board_init(void)
{
	sc5xx_enable_rgmii();
	return 0;
}