]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b841b6e9 | 2 | /* |
3 | * Copyright (C) 2011 Andes Technology Corporation | |
4 | * Shawn Lin, Andes Technology Corporation <[email protected]> | |
5 | * Macpaul Lin, Andes Technology Corporation <[email protected]> | |
b841b6e9 | 6 | */ |
7 | ||
9b4a205f | 8 | #include <init.h> |
d573b364 | 9 | #include <asm/mach-types.h> |
b841b6e9 | 10 | #include <common.h> |
b79fdc76 | 11 | #include <flash.h> |
be71a179 | 12 | #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) |
b841b6e9 | 13 | #include <netdev.h> |
14 | #endif | |
15 | #include <linux/io.h> | |
b841b6e9 | 16 | #include <faraday/ftsmc020.h> |
17 | ||
18 | DECLARE_GLOBAL_DATA_PTR; | |
19 | ||
20 | /* | |
21 | * Miscellaneous platform dependent initializations | |
22 | */ | |
23 | int board_init(void) | |
24 | { | |
25 | /* | |
26 | * refer to BOOT_PARAMETER_PA_BASE within | |
27 | * "linux/arch/nds32/include/asm/misc_spec.h" | |
28 | */ | |
29 | printf("Board: %s\n" , CONFIG_SYS_BOARD); | |
30 | gd->bd->bi_arch_number = MACH_TYPE_ADPAE3XX; | |
31 | gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400; | |
32 | return 0; | |
33 | } | |
34 | ||
35 | int dram_init(void) | |
36 | { | |
37 | unsigned long sdram_base = PHYS_SDRAM_0; | |
38 | unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE; | |
39 | unsigned long actual_size; | |
40 | actual_size = get_ram_size((void *)sdram_base, expected_size); | |
41 | gd->ram_size = actual_size; | |
42 | if (expected_size != actual_size) { | |
43 | printf("Warning: Only %lu of %lu MiB SDRAM is working\n", | |
44 | actual_size >> 20, expected_size >> 20); | |
45 | } | |
46 | ||
47 | return 0; | |
48 | } | |
49 | ||
50 | int dram_init_banksize(void) | |
51 | { | |
52 | gd->bd->bi_dram[0].start = PHYS_SDRAM_0; | |
53 | gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE; | |
54 | gd->bd->bi_dram[1].start = PHYS_SDRAM_1; | |
55 | gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE; | |
56 | ||
57 | return 0; | |
58 | } | |
59 | ||
be71a179 | 60 | #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) |
b841b6e9 | 61 | int board_eth_init(bd_t *bd) |
62 | { | |
63 | return ftmac100_initialize(bd); | |
64 | } | |
65 | #endif | |
66 | ||
67 | ulong 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 | } |