blob: 3c4a27d63f6a151c5686a6e694b8ed71ccc0310c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
rickf1113c92017-05-18 14:37:53 +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>
rickf1113c92017-05-18 14:37:53 +08006 */
7
Simon Glass8e16b1e2019-12-28 10:45:05 -07008#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <net.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
rick4671cf72017-08-28 11:04:40 +080011#include <asm/mach-types.h>
rickf1113c92017-05-18 14:37:53 +080012#include <common.h>
Simon Glass8e201882020-05-10 11:39:54 -060013#include <flash.h>
rickdc24dac2017-05-23 13:48:27 +080014#if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
rickf1113c92017-05-18 14:37:53 +080015#include <netdev.h>
16#endif
17#include <linux/io.h>
rickf1113c92017-05-18 14:37:53 +080018#include <faraday/ftsmc020.h>
19
20DECLARE_GLOBAL_DATA_PTR;
21
22/*
23 * Miscellaneous platform dependent initializations
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 */
31 printf("Board: %s\n" , CONFIG_SYS_BOARD);
32 gd->bd->bi_arch_number = MACH_TYPE_ADPAE3XX;
33 gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
34 return 0;
35}
36
37int dram_init(void)
38{
39 unsigned long sdram_base = PHYS_SDRAM_0;
40 unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
41 unsigned long actual_size;
42 actual_size = get_ram_size((void *)sdram_base, expected_size);
43 gd->ram_size = actual_size;
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
52int dram_init_banksize(void)
53{
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;
58
59 return 0;
60}
61
rickdc24dac2017-05-23 13:48:27 +080062#if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090063int board_eth_init(struct bd_info *bd)
rickf1113c92017-05-18 14:37:53 +080064{
65 return ftmac100_initialize(bd);
66}
67#endif
68
69ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
70{
71 if (banknum == 0) { /* non-CFI boot flash */
72 info->portwidth = FLASH_CFI_8BIT;
73 info->chipwidth = FLASH_CFI_BY8;
74 info->interface = FLASH_CFI_X8;
75 return 1;
76 } else {
77 return 0;
78 }
79}