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 | |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 7 | #include <common.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 |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 17 | #include <linux/io.h> |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 18 | #include <faraday/ftsmc020.h> |
| 19 | #include <fdtdec.h> |
Rick Chen | 9e01716 | 2019-08-28 18:46:07 +0800 | [diff] [blame] | 20 | #include <dm.h> |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 21 | #include <spl.h> |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
| 25 | /* |
| 26 | * Miscellaneous platform dependent initializations |
| 27 | */ |
| 28 | |
| 29 | int board_init(void) |
| 30 | { |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 31 | gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400; |
| 32 | |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | int dram_init(void) |
| 37 | { |
Rick Chen | 9203826 | 2019-11-14 13:52:23 +0800 | [diff] [blame] | 38 | return fdtdec_setup_mem_size_base(); |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | int dram_init_banksize(void) |
| 42 | { |
Rick Chen | 9203826 | 2019-11-14 13:52:23 +0800 | [diff] [blame] | 43 | return fdtdec_setup_memory_banksize(); |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 47 | int board_eth_init(struct bd_info *bd) |
Rick Chen | 36cb27c | 2017-12-26 13:55:53 +0800 | [diff] [blame] | 48 | { |
| 49 | return ftmac100_initialize(bd); |
| 50 | } |
| 51 | #endif |
| 52 | |
| 53 | ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info) |
| 54 | { |
| 55 | return 0; |
| 56 | } |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 57 | |
Leo Yu-Chi Liang | 4150eec | 2022-06-01 10:01:49 +0800 | [diff] [blame] | 58 | #define ANDES_HW_DTB_ADDRESS 0xF2000000 |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 59 | void *board_fdt_blob_setup(int *err) |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 60 | { |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 61 | *err = 0; |
Leo Yu-Chi Liang | 4150eec | 2022-06-01 10:01:49 +0800 | [diff] [blame] | 62 | |
| 63 | if (IS_ENABLED(CONFIG_OF_SEPARATE) || IS_ENABLED(CONFIG_OF_BOARD)) { |
Rick Chen | 206feaa | 2022-10-20 13:56:17 +0800 | [diff] [blame] | 64 | 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] | 65 | return (void *)(ulong)gd->arch.firmware_fdt_addr; |
| 66 | } |
| 67 | |
| 68 | if (fdt_magic(CONFIG_SYS_FDT_BASE) == FDT_MAGIC) |
| 69 | return (void *)CONFIG_SYS_FDT_BASE; |
| 70 | return (void *)ANDES_HW_DTB_ADDRESS; |
| 71 | |
Ilias Apalodimas | ab5348a | 2021-10-26 09:12:33 +0300 | [diff] [blame] | 72 | *err = -EINVAL; |
Ilias Apalodimas | dc35df4 | 2021-10-12 00:00:13 +0300 | [diff] [blame] | 73 | return NULL; |
Rick Chen | 40a6fe7 | 2018-03-29 10:08:33 +0800 | [diff] [blame] | 74 | } |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 75 | |
Yu Chien Peter Lin | 39689a9 | 2023-02-06 16:10:45 +0800 | [diff] [blame] | 76 | #ifdef CONFIG_SPL_BOARD_INIT |
| 77 | void spl_board_init() |
| 78 | { |
| 79 | /* enable v5l2 cache */ |
| 80 | enable_caches(); |
| 81 | } |
| 82 | #endif |
| 83 | |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 84 | int smc_init(void) |
| 85 | { |
| 86 | int node = -1; |
| 87 | const char *compat = "andestech,atfsmc020"; |
| 88 | void *blob = (void *)gd->fdt_blob; |
| 89 | fdt_addr_t addr; |
| 90 | struct ftsmc020_bank *regs; |
| 91 | |
| 92 | node = fdt_node_offset_by_compatible(blob, -1, compat); |
| 93 | if (node < 0) |
| 94 | return -FDT_ERR_NOTFOUND; |
| 95 | |
Rick Chen | ca3e5e4 | 2020-07-17 16:24:44 +0800 | [diff] [blame] | 96 | addr = fdtdec_get_addr_size_auto_noparent(blob, node, |
| 97 | "reg", 0, NULL, false); |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 98 | |
| 99 | if (addr == FDT_ADDR_T_NONE) |
| 100 | return -EINVAL; |
| 101 | |
Bin Meng | 65d5995 | 2021-01-31 20:36:01 +0800 | [diff] [blame] | 102 | regs = (struct ftsmc020_bank *)(uintptr_t)addr; |
Rick Chen | cea16d0 | 2018-05-29 11:07:53 +0800 | [diff] [blame] | 103 | regs->cr &= ~FTSMC020_BANK_WPROT; |
| 104 | |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 109 | int board_early_init_f(void) |
| 110 | { |
| 111 | smc_init(); |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | #endif |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 116 | |
| 117 | #ifdef CONFIG_SPL |
| 118 | void board_boot_order(u32 *spl_boot_list) |
| 119 | { |
| 120 | u8 i; |
| 121 | u32 boot_devices[] = { |
| 122 | #ifdef CONFIG_SPL_RAM_SUPPORT |
| 123 | BOOT_DEVICE_RAM, |
| 124 | #endif |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 125 | #ifdef CONFIG_SPL_MMC |
Rick Chen | c3027d0 | 2019-11-14 13:52:22 +0800 | [diff] [blame] | 126 | BOOT_DEVICE_MMC1, |
| 127 | #endif |
| 128 | }; |
| 129 | |
| 130 | for (i = 0; i < ARRAY_SIZE(boot_devices); i++) |
| 131 | spl_boot_list[i] = boot_devices[i]; |
| 132 | } |
| 133 | #endif |
| 134 | |
| 135 | #ifdef CONFIG_SPL_LOAD_FIT |
| 136 | int board_fit_config_name_match(const char *name) |
| 137 | { |
| 138 | /* boot using first FIT config */ |
| 139 | return 0; |
| 140 | } |
| 141 | #endif |