diff options
author | Christophe Roullier | 2019-05-17 15:08:46 +0200 |
---|---|---|
committer | Patrice Chotard | 2019-06-06 17:40:19 +0200 |
commit | b4d4fe7b9efcee134113b96e128f4f814b5c1237 (patch) | |
tree | 2bd4bfde4869bd338089982ada41ee33863916b7 /include | |
parent | c8ef95376f412606a98357bcc660f73e8838c519 (diff) |
stm32mp1: Add Ethernet support for stm32mp1 board
Add default SERVERIP address
Enable noncached memory region required by ethernet driver
Add PXE support
Signed-off-by: Christophe Roullier <christophe.roullier@st.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/stm32mp1.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h index a3f84900f21..1d385e0985c 100644 --- a/include/configs/stm32mp1.h +++ b/include/configs/stm32mp1.h @@ -77,6 +77,14 @@ /*MMC SD*/ #define CONFIG_SYS_MMC_MAX_DEVICE 3 +/* Ethernet need */ +#ifdef CONFIG_DWC_ETH_QOS +#define CONFIG_SYS_NONCACHED_MEMORY (1 * SZ_1M) /* 1M */ +#define CONFIG_SERVERIP 192.168.1.1 +#define CONFIG_BOOTP_SERVERIP +#define CONFIG_SYS_AUTOLOAD "no" +#endif + /*****************************************************************************/ #ifdef CONFIG_DISTRO_DEFAULTS /*****************************************************************************/ @@ -89,7 +97,9 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 1) \ func(MMC, mmc, 0) \ - func(MMC, mmc, 2) + func(MMC, mmc, 2) \ + func(PXE, pxe, na) + /* * bootcmd for stm32mp1: * for serial/usb: execute the stm32prog command |