mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 08:27:23 +00:00
fc300e2c5d
Add MAC support. Use PHY, connected to RGMII1 as a default Eth adapter, by appropriate setting of 'cpsw_data.active_slave'. 'cpsw_phy' env variable can override this setting. Set the MAC addresses in the U-Boot environment. The addresses are retrieved from the on-board EEPROM or from the SOC's MAC fuses. Set the following PHYs RGMII clock delays: - Enable RX delay - Disable TX delay Signed-off-by: Dmitry Lifshitz <lifshitz@compulab.co.il> [uri.mashiach@compulab.co.il: add RGMII clock delays] Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il> Acked-by: Igor Grinberg <grinberg@compulab.co.il> Reviewed-by: Tom Rini <trini@konsulko.com>
17 lines
295 B
Makefile
17 lines
295 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# (C) Copyright 2016 CompuLab, Ltd. <www.compulab.co.il>
|
|
#
|
|
# Author: Dmitry Lifshitz <lifshitz@compulab.co.il>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o mux.o
|
|
else
|
|
obj-y += cl-som-am57x.o mux.o
|
|
endif
|
|
|
|
obj-$(CONFIG_DRIVER_TI_CPSW) += eth.o
|