blob: 1aa0872d53d52f8fcb900d78fdcfebab3b273364 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Neil Armstrongef441cb2017-11-27 10:16:16 +01002/*
3 * Copyright (C) 2016 BayLibre, SAS
4 * Author: Neil Armstrong <narmstrong@baylibre.com>
Neil Armstrongef441cb2017-11-27 10:16:16 +01005 */
6
7#ifndef __MESON_ETH_H__
8#define __MESON_ETH_H__
9
10#include <phy.h>
11
12enum {
13 /* Use GXL Internal RMII PHY */
14 MESON_GXL_USE_INTERNAL_RMII_PHY = 1,
15};
16
17/* Configure the Ethernet MAC with the requested interface mode
18 * with some optional flags.
19 */
20void meson_gx_eth_init(phy_interface_t mode, unsigned int flags);
21
22#endif /* __MESON_ETH_H__ */