1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017 Andes Technology Corporation
4 * Rick Chen, Andes Technology Corporation <rick@andestech.com>
8 #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
12 #include <faraday/ftsmc020.h>
15 DECLARE_GLOBAL_DATA_PTR;
17 extern phys_addr_t prior_stage_fdt_address;
19 * Miscellaneous platform dependent initializations
24 gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
31 unsigned long sdram_base = PHYS_SDRAM_0;
32 unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
33 unsigned long actual_size;
35 actual_size = get_ram_size((void *)sdram_base, expected_size);
36 gd->ram_size = actual_size;
38 if (expected_size != actual_size) {
39 printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
40 actual_size >> 20, expected_size >> 20);
46 int dram_init_banksize(void)
48 gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
49 gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
50 gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
51 gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
56 #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
57 int board_eth_init(bd_t *bd)
59 return ftmac100_initialize(bd);
63 ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
68 void *board_fdt_blob_setup(void)
70 return (void *)CONFIG_SYS_FDT_BASE;
76 const char *compat = "andestech,atfsmc020";
77 void *blob = (void *)gd->fdt_blob;
79 struct ftsmc020_bank *regs;
81 node = fdt_node_offset_by_compatible(blob, -1, compat);
83 return -FDT_ERR_NOTFOUND;
85 addr = fdtdec_get_addr(blob, node, "reg");
87 if (addr == FDT_ADDR_T_NONE)
90 regs = (struct ftsmc020_bank *)addr;
91 regs->cr &= ~FTSMC020_BANK_WPROT;
96 #ifdef CONFIG_BOARD_EARLY_INIT_F
97 int board_early_init_f(void)