diff options
author | Dmitry Lifshitz <lifshitz@compulab.co.il> | 2016-12-28 18:28:35 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-02 11:14:07 -0500 |
commit | fc300e2c5d9b6217400d89a58e35a69b362ad288 (patch) | |
tree | c612e3719583bff2e349799e69acac409cd9805d /board/compulab/cl-som-am57x/Makefile | |
parent | 965c509f0a06ea506432e1f90fdd43a0faff6c23 (diff) | |
download | u-boot-fc300e2c5d9b6217400d89a58e35a69b362ad288.tar.gz |
arm: am57xx: cl-som-am57x: add ETH support
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>
Diffstat (limited to 'board/compulab/cl-som-am57x/Makefile')
-rw-r--r-- | board/compulab/cl-som-am57x/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/compulab/cl-som-am57x/Makefile b/board/compulab/cl-som-am57x/Makefile index 0c59781a8b..566366bf6e 100644 --- a/board/compulab/cl-som-am57x/Makefile +++ b/board/compulab/cl-som-am57x/Makefile @@ -13,3 +13,5 @@ obj-y += spl.o mux.o else obj-y += cl-som-am57x.o mux.o endif + +obj-$(CONFIG_DRIVER_TI_CPSW) += eth.o |