From fb2dea60e8f355ae00d427db09112a90839c96ec Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Tue, 10 Nov 2015 19:16:25 +0300 Subject: board: axs10x switch serial port and Ethernet to driver model With this change Synopsys DesignWare SDP board is switched to driver model for both serial port (serial_dw) and Ethernet (Designware GMAC). This simplifies include/configs/axs101.h and allows for reuse of Linux's Device Tree description. For simplicity Linux's .dts files are not blindly copied but only very few extracts of them are really used (those that are supported in U-Boot at the moment). Signed-off-by: Alexey Brodkin Reviewed-by: Simon Glass Cc: Masahiro Yamada --- configs/axs103_defconfig | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'configs/axs103_defconfig') diff --git a/configs/axs103_defconfig b/configs/axs103_defconfig index b3dbb8d..cbd63fe 100644 --- a/configs/axs103_defconfig +++ b/configs/axs103_defconfig @@ -1,11 +1,20 @@ CONFIG_ARC=y CONFIG_ISA_ARCV2=y +CONFIG_DM_SERIAL=y CONFIG_SYS_CLK_FREQ=50000000 CONFIG_SYS_TEXT_BASE=0x81000000 +CONFIG_DEFAULT_DEVICE_TREE="axs10x" CONFIG_SYS_PROMPT="AXS# " # CONFIG_CMD_IMLS is not set # CONFIG_CMD_FLASH is not set # CONFIG_CMD_SETEXPR is not set -CONFIG_NETDEVICES=y +CONFIG_CMD_DHCP=y +CONFIG_CMD_PING=y +CONFIG_OF_CONTROL=y +CONFIG_OF_EMBED=y +CONFIG_NET_RANDOM_ETHADDR=y +CONFIG_DM=y +CONFIG_CLK=y +CONFIG_DM_ETH=y CONFIG_ETH_DESIGNWARE=y CONFIG_USE_PRIVATE_LIBGCC=y -- cgit v1.1