diff options
author | Alexey Brodkin | 2015-11-10 19:16:25 +0300 |
---|---|---|
committer | Alexey Brodkin | 2015-11-18 00:39:22 +0300 |
commit | fb2dea60e8f355ae00d427db09112a90839c96ec (patch) | |
tree | 3d1e605b91438b8b096de5ca0f2d6872a0ae1e41 /configs/axs101_defconfig | |
parent | db1f17f894b15402f3d1d43f7d273a42668b8ab4 (diff) |
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 <abrodkin@synopsys.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'configs/axs101_defconfig')
-rw-r--r-- | configs/axs101_defconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configs/axs101_defconfig b/configs/axs101_defconfig index fdb31490135..8e5d2e5c30e 100644 --- a/configs/axs101_defconfig +++ b/configs/axs101_defconfig @@ -1,12 +1,21 @@ CONFIG_ARC=y CONFIG_SYS_DCACHE_OFF=y CONFIG_ARC_CACHE_LINE_SHIFT=5 +CONFIG_DM_SERIAL=y CONFIG_SYS_CLK_FREQ=750000000 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 |