blob: faf39b4ba6aa8412fbddc7b415d90db6c619d1e1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Macpaul Lin6cb144b2010-10-19 17:05:51 +08002/*
3 * Copyright (C) 2011 Andes Technology Corporation
4 * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
5 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
Macpaul Lin6cb144b2010-10-19 17:05:51 +08006 */
7
8#include <common.h>
Simon Glass9b4a2052019-12-28 10:45:05 -07009#include <init.h>
rickbe71a172017-05-23 13:48:27 +080010#if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
Macpaul Lin6cb144b2010-10-19 17:05:51 +080011#include <netdev.h>
rickb841b6e2017-05-18 14:37:53 +080012#endif
13#include <linux/io.h>
Simon Glass3a53e992017-05-17 08:22:57 -060014#include <asm/io.h>
15#include <asm/mach-types.h>
Macpaul Lin6cb144b2010-10-19 17:05:51 +080016
Macpaul Lin6cb144b2010-10-19 17:05:51 +080017#include <faraday/ftsmc020.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
21/*
22 * Miscellaneous platform dependent initializations
23 */
24
25int board_init(void)
26{
27 /*
28 * refer to BOOT_PARAMETER_PA_BASE within
29 * "linux/arch/nds32/include/asm/misc_spec.h"
30 */
rickb841b6e2017-05-18 14:37:53 +080031 printf("Board: %s\n" , CONFIG_SYS_BOARD);
Macpaul Lin6cb144b2010-10-19 17:05:51 +080032 gd->bd->bi_arch_number = MACH_TYPE_ADPAG101P;
33 gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
34
Macpaul Lin6cb144b2010-10-19 17:05:51 +080035 return 0;
36}
37
38int dram_init(void)
39{
40 unsigned long sdram_base = PHYS_SDRAM_0;
ken kuo3c016702013-06-08 11:14:09 +080041 unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
Macpaul Lin6cb144b2010-10-19 17:05:51 +080042 unsigned long actual_size;
43
44 actual_size = get_ram_size((void *)sdram_base, expected_size);
45
46 gd->ram_size = actual_size;
47
48 if (expected_size != actual_size) {
49 printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
50 actual_size >> 20, expected_size >> 20);
51 }
52
53 return 0;
54}
55
Simon Glass76b00ac2017-03-31 08:40:32 -060056int dram_init_banksize(void)
ken kuo3c016702013-06-08 11:14:09 +080057{
58 gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
59 gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
60 gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
61 gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
Simon Glass76b00ac2017-03-31 08:40:32 -060062
63 return 0;
ken kuo3c016702013-06-08 11:14:09 +080064}
65
rickbe71a172017-05-23 13:48:27 +080066#if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
Macpaul Lin6cb144b2010-10-19 17:05:51 +080067int board_eth_init(bd_t *bd)
68{
69 return ftmac100_initialize(bd);
70}
rickb841b6e2017-05-18 14:37:53 +080071#endif
Macpaul Lin6cb144b2010-10-19 17:05:51 +080072
73ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
74{
75 if (banknum == 0) { /* non-CFI boot flash */
76 info->portwidth = FLASH_CFI_8BIT;
77 info->chipwidth = FLASH_CFI_BY8;
78 info->interface = FLASH_CFI_X8;
79 return 1;
80 } else {
81 return 0;
82 }
83}