blob: 805a266f63f425d8a549ab7388e9e4b8b9bea87b [file] [log] [blame]
Macpaul Lin6cb144b2010-10-19 17:05:51 +08001/*
2 * Copyright (C) 2011 Andes Technology Corporation
3 * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
4 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Macpaul Lin6cb144b2010-10-19 17:05:51 +08007 */
8
9#include <common.h>
10#include <netdev.h>
11#include <asm/io.h>
12
13#include <faraday/ftsdc010.h>
14#include <faraday/ftsmc020.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
18/*
19 * Miscellaneous platform dependent initializations
20 */
21
22int board_init(void)
23{
24 /*
25 * refer to BOOT_PARAMETER_PA_BASE within
26 * "linux/arch/nds32/include/asm/misc_spec.h"
27 */
28 gd->bd->bi_arch_number = MACH_TYPE_ADPAG101P;
29 gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
30
Macpaul Lin6cb144b2010-10-19 17:05:51 +080031 return 0;
32}
33
34int dram_init(void)
35{
36 unsigned long sdram_base = PHYS_SDRAM_0;
ken kuo3c016702013-06-08 11:14:09 +080037 unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
Macpaul Lin6cb144b2010-10-19 17:05:51 +080038 unsigned long actual_size;
39
40 actual_size = get_ram_size((void *)sdram_base, expected_size);
41
42 gd->ram_size = actual_size;
43
44 if (expected_size != actual_size) {
45 printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
46 actual_size >> 20, expected_size >> 20);
47 }
48
49 return 0;
50}
51
Simon Glass76b00ac2017-03-31 08:40:32 -060052int dram_init_banksize(void)
ken kuo3c016702013-06-08 11:14:09 +080053{
54 gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
55 gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
56 gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
57 gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
Simon Glass76b00ac2017-03-31 08:40:32 -060058
59 return 0;
ken kuo3c016702013-06-08 11:14:09 +080060}
61
Macpaul Lin6cb144b2010-10-19 17:05:51 +080062int board_eth_init(bd_t *bd)
63{
64 return ftmac100_initialize(bd);
65}
66
67ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
68{
69 if (banknum == 0) { /* non-CFI boot flash */
70 info->portwidth = FLASH_CFI_8BIT;
71 info->chipwidth = FLASH_CFI_BY8;
72 info->interface = FLASH_CFI_X8;
73 return 1;
74 } else {
75 return 0;
76 }
77}
78
79int board_mmc_init(bd_t *bis)
80{
81 ftsdc010_mmc_init(0);
82 return 0;
83}