summaryrefslogtreecommitdiff
path: root/include/eth_phy.h
blob: 3f34a3667c05fad2bd9e5d4ab394ced06cce2d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright 2019 NXP
 *
 */

#ifndef _eth_phy_h_
#define _eth_phy_h_

#include <dm.h>
#include <phy.h>

int eth_phy_binds_nodes(struct udevice *eth_dev);
int eth_phy_set_mdio_bus(struct udevice *eth_dev, struct mii_dev *mdio_bus);
struct mii_dev * eth_phy_get_mdio_bus(struct udevice *eth_dev);
int eth_phy_get_addr(struct udevice *dev);

#endif