mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
c5620aeea4
Add network driver for Microsemi Ethernet switch, it is present on Luton SoCs. Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
17 lines
412 B
Text
17 lines
412 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.
|