Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Andes Technology Corporation |
| 4 | * Rick Chen, Andes Technology Corporation <rick@andestech.com> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
Tom Rini | b6b9900 | 2023-10-12 19:03:59 -0400 | [diff] [blame] | 7 | #include <config.h> |
Yu Chien Peter Lin | 39689a9 | 2023-02-06 16:10:45 +0800 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 8e20188 | 2020-05-10 11:39:54 -0600 | [diff] [blame] | 9 | #include <flash.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 10 | #include <image.h> |
Simon Glass | 8e16b1e | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <net.h> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 13 | #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) |
| 14 | #include <netdev.h> |
| 15 | #endif |
Leo Yu-Chi Liang | cec100f | 2023-12-26 14:54:27 +0800 | [diff] [blame] | 16 | #include <asm/csr.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Leo Yu-Chi Liang | cec100f | 2023-12-26 14:54:27 +0800 | [diff] [blame] | 18 | #include <asm/sbi.h> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 19 | #include <linux/io.h> |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 20 | #include <faraday/ftsmc020.h> |
| 21 | #include <fdtdec.h> |
Rick Chen | 9e01716 | 2019-08-28 18:46:07 +0800 | [diff] [blame] | 22 | #include <dm.h> |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 23 | #include <spl.h> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | /* |
| 28 | * Miscellaneous platform dependent initializations |
| 29 | */ |
Leo Yu-Chi Liang | cec100f | 2023-12-26 14:54:27 +0800 | [diff] [blame] | 30 | #if IS_ENABLED(CONFIG_MISC_INIT_R) |
| 31 | int misc_init_r(void) |
| 32 | { |
| 33 | long csr_marchid = 0; |
| 34 | const long mask_64 = 0x8000; |
| 35 | const long mask_cpu = 0xff; |
| 36 | char cpu_name[10] = {}; |
| 37 | |
| 38 | #if CONFIG_IS_ENABLED(RISCV_SMODE) |
| 39 | sbi_get_marchid(&csr_marchid); |
| 40 | #elif CONFIG_IS_ENABLED(RISCV_MMODE) |
| 41 | csr_marchid = csr_read(CSR_MARCHID); |
| 42 | #endif |
| 43 | if (mask_64 & csr_marchid) |
| 44 | snprintf(cpu_name, sizeof(cpu_name), "ax%lx", (mask_cpu & csr_marchid)); |
| 45 | else |
| 46 | snprintf(cpu_name, sizeof(cpu_name), "a%lx", (mask_cpu & csr_marchid)); |
| 47 | |
| 48 | return env_set("cpu", cpu_name); |
| 49 | } |
| 50 | #endif |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 51 | |
| 52 | int board_init(void) |
| 53 | { |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 54 | gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400; |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | int dram_init(void) |
| 60 | { |
Rick Chen | 9203826 | 2019-11-14 13:52:23 +0800 | [diff] [blame] | 61 | return fdtdec_setup_mem_size_base(); |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | int dram_init_banksize(void) |
| 65 | { |
Rick Chen | 9203826 | 2019-11-14 13:52:23 +0800 | [diff] [blame] | 66 | return fdtdec_setup_memory_banksize(); |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 70 | int board_eth_init(struct bd_info *bd) |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 71 | { |
| 72 | return ftmac100_initialize(bd); |
| 73 | } |
| 74 | #endif |
| 75 | |
| 76 | ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info) |
| 77 | { |
| 78 | return 0; |
| 79 | } |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 80 | |
Leo Yu-Chi Liang | 4150eec | 2022-06-01 10:01:49 +0800 | [diff] [blame] | 81 | #define ANDES_HW_DTB_ADDRESS 0xF2000000 |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 82 | void *board_fdt_blob_setup(int *err) |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 83 | { |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 84 | *err = 0; |
Leo Yu-Chi Liang | 4150eec | 2022-06-01 10:01:49 +0800 | [diff] [blame] | 85 | |
| 86 | if (IS_ENABLED(CONFIG_OF_SEPARATE) || IS_ENABLED(CONFIG_OF_BOARD)) { |
Rick Chen | 206feaa | 2022-10-20 13:56:17 +0800 | [diff] [blame] | 87 | if (fdt_magic((uintptr_t)gd->arch.firmware_fdt_addr) == FDT_MAGIC) |
Leo Yu-Chi Liang | 4150eec | 2022-06-01 10:01:49 +0800 | [diff] [blame] | 88 | return (void *)(ulong)gd->arch.firmware_fdt_addr; |
| 89 | } |
| 90 | |
| 91 | if (fdt_magic(CONFIG_SYS_FDT_BASE) == FDT_MAGIC) |
| 92 | return (void *)CONFIG_SYS_FDT_BASE; |
| 93 | return (void *)ANDES_HW_DTB_ADDRESS; |
| 94 | |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 95 | *err = -EINVAL; |
Ilias Apalodimas | dc35df4 | 2021-10-12 00:00:13 +0300 | [diff] [blame] | 96 | return NULL; |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 97 | } |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 98 | |
Yu Chien Peter Lin | 39689a9 | 2023-02-06 16:10:45 +0800 | [diff] [blame] | 99 | #ifdef CONFIG_SPL_BOARD_INIT |
| 100 | void spl_board_init() |
| 101 | { |
Leo Yu-Chi Liang | 5d0bbea | 2024-05-14 17:50:11 +0800 | [diff] [blame] | 102 | /* enable andes-l2 cache */ |
Leo Yu-Chi Liang | 1eb9f91 | 2023-12-26 14:17:33 +0800 | [diff] [blame] | 103 | if (!CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
| 104 | enable_caches(); |
Yu Chien Peter Lin | 39689a9 | 2023-02-06 16:10:45 +0800 | [diff] [blame] | 105 | } |
| 106 | #endif |
| 107 | |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 108 | int smc_init(void) |
| 109 | { |
| 110 | int node = -1; |
| 111 | const char *compat = "andestech,atfsmc020"; |
| 112 | void *blob = (void *)gd->fdt_blob; |
| 113 | fdt_addr_t addr; |
| 114 | struct ftsmc020_bank *regs; |
| 115 | |
| 116 | node = fdt_node_offset_by_compatible(blob, -1, compat); |
| 117 | if (node < 0) |
| 118 | return -FDT_ERR_NOTFOUND; |
| 119 | |
Rick Chen | ca3e5e4 | 2020-07-17 16:24:44 +0800 | [diff] [blame] | 120 | addr = fdtdec_get_addr_size_auto_noparent(blob, node, |
| 121 | "reg", 0, NULL, false); |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 122 | |
| 123 | if (addr == FDT_ADDR_T_NONE) |
| 124 | return -EINVAL; |
| 125 | |
Bin Meng | 65d5995 | 2021-01-31 20:36:01 +0800 | [diff] [blame] | 126 | regs = (struct ftsmc020_bank *)(uintptr_t)addr; |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 127 | regs->cr &= ~FTSMC020_BANK_WPROT; |
| 128 | |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 133 | int board_early_init_f(void) |
| 134 | { |
| 135 | smc_init(); |
| 136 | |
| 137 | return 0; |
| 138 | } |
| 139 | #endif |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 140 | |
| 141 | #ifdef CONFIG_SPL |
| 142 | void board_boot_order(u32 *spl_boot_list) |
| 143 | { |
| 144 | u8 i; |
| 145 | u32 boot_devices[] = { |
| 146 | #ifdef CONFIG_SPL_RAM_SUPPORT |
| 147 | BOOT_DEVICE_RAM, |
| 148 | #endif |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 149 | #ifdef CONFIG_SPL_MMC |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 150 | BOOT_DEVICE_MMC1, |
| 151 | #endif |
| 152 | }; |
| 153 | |
| 154 | for (i = 0; i < ARRAY_SIZE(boot_devices); i++) |
| 155 | spl_boot_list[i] = boot_devices[i]; |
| 156 | } |
| 157 | #endif |
| 158 | |
| 159 | #ifdef CONFIG_SPL_LOAD_FIT |
| 160 | int board_fit_config_name_match(const char *name) |
| 161 | { |
| 162 | /* boot using first FIT config */ |
| 163 | return 0; |
| 164 | } |
| 165 | #endif |