From f9b2a49f57c153c7358f9769234c0cefdf4de8d4 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Wed, 13 Jul 2016 16:39:06 +0930 Subject: board/aspeed: Add ast-g5 board This adds a Aspeed fifth generation board with defconfigs for a system with NCSI and with a directly attached PHY configuration. Signed-off-by: Joel Stanley --- board/aspeed/ast-g5/Kconfig | 22 ++++++++++++++++++++ board/aspeed/ast-g5/Makefile | 1 + board/aspeed/ast-g5/ast-g5.c | 48 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 board/aspeed/ast-g5/Kconfig create mode 100644 board/aspeed/ast-g5/Makefile create mode 100644 board/aspeed/ast-g5/ast-g5.c (limited to 'board') diff --git a/board/aspeed/ast-g5/Kconfig b/board/aspeed/ast-g5/Kconfig new file mode 100644 index 0000000000..9bd3e7de49 --- /dev/null +++ b/board/aspeed/ast-g5/Kconfig @@ -0,0 +1,22 @@ +if TARGET_AST_G5 + +config SYS_ARCH + default "arm" + +config SYS_CPU + default "arm1176" + +config SYS_BOARD + default "ast-g5" + +config SYS_VENDOR + default "aspeed" + +config SYS_SOC + default "aspeed" + +config SYS_CONFIG_NAME + default "ast-g5-phy" if ASPEED_NET_PHY + default "ast-g5-ncsi" if ASPEED_NET_NCSI + +endif diff --git a/board/aspeed/ast-g5/Makefile b/board/aspeed/ast-g5/Makefile new file mode 100644 index 0000000000..d1d7f8525e --- /dev/null +++ b/board/aspeed/ast-g5/Makefile @@ -0,0 +1 @@ +obj-y = ast-g5.o diff --git a/board/aspeed/ast-g5/ast-g5.c b/board/aspeed/ast-g5/ast-g5.c new file mode 100644 index 0000000000..da79d7b79a --- /dev/null +++ b/board/aspeed/ast-g5/ast-g5.c @@ -0,0 +1,48 @@ +/* + * Copyright 2016 IBM Corporation + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version + * 2 of the License, or (at your option) any later version. + */ + +#include +#include + +#include +#include +#include + +DECLARE_GLOBAL_DATA_PTR; + +int board_init(void) +{ + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; + gd->flags = 0; + + return 0; +} + +int dram_init(void) +{ + u32 vga = ast_scu_get_vga_memsize(); + u32 dram = ast_sdmc_get_mem_size(); + gd->ram_size = dram - vga; + + return 0; +} + +#ifdef CONFIG_FTGMAC100 +int board_eth_init(bd_t *bd) +{ + return ftgmac100_initialize(bd); +} +#endif + +#ifdef CONFIG_ASPEEDNIC +int board_eth_init(bd_t *bd) +{ + return aspeednic_initialize(bd); +} +#endif -- cgit v1.2.1