mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
8cf9473288
Add network driver for Microsemi Ethernet switch. It is present on Serval SoCs. Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
38 lines
915 B
Text
38 lines
915 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2019 Microsemi Corporation
|
|
|
|
config MSCC_OCELOT_SWITCH
|
|
bool "Ocelot switch driver"
|
|
depends on DM_ETH && ARCH_MSCC
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Ocelot network switch device.
|
|
|
|
config MSCC_LUTON_SWITCH
|
|
bool "Luton switch driver"
|
|
depends on DM_ETH && ARCH_MSCC
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Luton network switch device.
|
|
|
|
config MSCC_JR2_SWITCH
|
|
bool "Jaguar2 switch driver"
|
|
depends on DM_ETH && ARCH_MSCC
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Jaguar2 network switch device.
|
|
|
|
config MSCC_SERVALT_SWITCH
|
|
bool "Servalt switch driver"
|
|
depends on DM_ETH && ARCH_MSCC
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Servalt network switch device.
|
|
|
|
config MSCC_SERVAL_SWITCH
|
|
bool "Serval switch driver"
|
|
depends on DM_ETH && ARCH_MSCC
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Serval network switch device.
|