
On Tue, Mar 21, 2017 at 11:26:46PM +0100, Jernej Škrabec wrote:
Hi,
Dne torek, 21. marec 2017 ob 20:34:33 CET je Maxime Ripard napisal(a):
Hi,
On Mon, Mar 20, 2017 at 11:01:25PM +0100, Jernej Skrabec wrote:
diff --git a/include/configs/sun50i.h b/include/configs/sun50i.h index 1b7bfb6c22..146f7f4e1b 100644 --- a/include/configs/sun50i.h +++ b/include/configs/sun50i.h @@ -21,6 +21,8 @@
#define GICD_BASE 0x1c81000 #define GICC_BASE 0x1c82000
+#define CONFIG_SUNXI_DE2
/*
- Include common sunxi configuration where most the settings are
*/
diff --git a/include/configs/sun8i.h b/include/configs/sun8i.h index a4c3fb69e4..c42b901107 100644 --- a/include/configs/sun8i.h +++ b/include/configs/sun8i.h @@ -25,6 +25,10 @@
#define CONFIG_SUNXI_USB_PHYS 2
#endif
+#ifdef CONFIG_MACH_SUNXI_H3_H5 +#define CONFIG_SUNXI_DE2 +#endif
/*
- Include common sunxi configuration where most the settings are
*/
diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index 8e5dc36fa7..ba0eb12665 100644 --- a/scripts/config_whitelist.txt +++ b/scripts/config_whitelist.txt @@ -3102,6 +3102,7 @@ CONFIG_STV0991_HZ_CLOCK
CONFIG_ST_SMI CONFIG_SUN4 CONFIG_SUNXI_AHCI
+CONFIG_SUNXI_DE2
CONFIG_SUNXI_EMAC CONFIG_SUNXI_GMAC CONFIG_SUNXI_GPIO
This should be a Kconfig option.
So hidden option in board/sunxi/Kconfig will probably be the best then?
Yes, I guess, but I'm not entirely sure why you need two different options there?
Maxime