blob: 79608f4efe861e9fceedfc050e0965a0f7acacf1 [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>
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
17#include <faraday/ftsdc010.h>
18#include <faraday/ftsmc020.h>
19
20DECLARE_GLOBAL_DATA_PTR;
21
22/*
23 * Miscellaneous platform dependent initializations
24 */
25
26int board_init(void)
27{
28 /*
29 * refer to BOOT_PARAMETER_PA_BASE within
30 * "linux/arch/nds32/include/asm/misc_spec.h"
31 */
rickb841b6e2017-05-18 14:37:53 +080032 printf("Board: %s\n" , CONFIG_SYS_BOARD);
Macpaul Lin6cb144b2010-10-19 17:05:51 +080033 gd->bd->bi_arch_number = MACH_TYPE_ADPAG101P;
34 gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
35
Macpaul Lin6cb144b2010-10-19 17:05:51 +080036 return 0;
37}
38
39int dram_init(void)
40{
41 unsigned long sdram_base = PHYS_SDRAM_0;
ken kuo3c016702013-06-08 11:14:09 +080042 unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
Macpaul Lin6cb144b2010-10-19 17:05:51 +080043 unsigned long actual_size;
44
45 actual_size = get_ram_size((void *)sdram_base, expected_size);
46
47 gd->ram_size = actual_size;
48
49 if (expected_size != actual_size) {
50 printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
51 actual_size >> 20, expected_size >> 20);
52 }
53
54 return 0;
55}
56
Simon Glass76b00ac2017-03-31 08:40:32 -060057int dram_init_banksize(void)
ken kuo3c016702013-06-08 11:14:09 +080058{
59 gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
60 gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
61 gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
62 gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
Simon Glass76b00ac2017-03-31 08:40:32 -060063
64 return 0;
ken kuo3c016702013-06-08 11:14:09 +080065}
66
rickbe71a172017-05-23 13:48:27 +080067#if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
Macpaul Lin6cb144b2010-10-19 17:05:51 +080068int board_eth_init(bd_t *bd)
69{
70 return ftmac100_initialize(bd);
71}
rickb841b6e2017-05-18 14:37:53 +080072#endif
Macpaul Lin6cb144b2010-10-19 17:05:51 +080073
74ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
75{
76 if (banknum == 0) { /* non-CFI boot flash */
77 info->portwidth = FLASH_CFI_8BIT;
78 info->chipwidth = FLASH_CFI_BY8;
79 info->interface = FLASH_CFI_X8;
80 return 1;
81 } else {
82 return 0;
83 }
84}
85
86int board_mmc_init(bd_t *bis)
87{
rickb841b6e2017-05-18 14:37:53 +080088#ifdef CONFIG_FTSDC010
Macpaul Lin6cb144b2010-10-19 17:05:51 +080089 ftsdc010_mmc_init(0);
rickb841b6e2017-05-18 14:37:53 +080090#endif
Macpaul Lin6cb144b2010-10-19 17:05:51 +080091 return 0;
92}