mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 12:46:14 +02:00
The implementation of FW_LOADER requires CMDLINE to be enabled, and expressses this. In order to not have to have every users also depends on CMDLINE introduce SUPPORTS_FW_LOADER. This depends on CMDLINE and ENV_SUPPORT and then we have all users depends on SUPPORTS_FW_LOADER. Signed-off-by: Tom Rini <trini@konsulko.com>
18 lines
511 B
Plaintext
18 lines
511 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)
|
|
depends on SUPPORTS_FW_LOADER
|
|
select FW_LOADER
|
|
select MTK_NET_PHYLIB
|
|
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.
|