mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Weijie Gao <weijie.gao@mediatek.com> says: This patch adds PHY driver for MediaTek MT7987/MT7988 built-in 2.5Gb ethernet PHY. [trini: Change 'tristate' Kconfig to 'bool'] Link: https://lore.kernel.org/r/cover.1757315849.git.weijie.gao@mediatek.com
17 lines
480 B
Plaintext
17 lines
480 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config MTK_NET_PHYLIB
|
|
bool
|
|
|
|
config PHY_MEDIATEK_2P5GE
|
|
bool "MediaTek built-in 2.5Gb ethernet PHYs"
|
|
depends on OF_CONTROL && (TARGET_MT7987 || TARGET_MT7988)
|
|
select MTK_NET_PHYLIB
|
|
select FS_LOADER
|
|
help
|
|
Supports MediaTek SoC built-in 2.5Gb ethernet PHYs.
|
|
|
|
This driver requires firmware download for PHY to enable its
|
|
functionality. The board can override certian firmware downloading
|
|
function to provide the firmware data.
|