summaryrefslogtreecommitdiffstats
path: root/board/aspeed/ast-g5/ast-g5.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/aspeed/ast-g5/ast-g5.c')
-rw-r--r--board/aspeed/ast-g5/ast-g5.c48
1 files changed, 48 insertions, 0 deletions
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 <common.h>
+#include <netdev.h>
+
+#include <asm/arch/ast_scu.h>
+#include <asm/arch/ast-sdmc.h>
+#include <asm/io.h>
+
+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
OpenPOWER on IntegriCloud