blob: 6415c90c1c1d7231de2838dcdf678f27a7f50e98 [file] [log] [blame]
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +09001// SPDX-License-Identifier: GPL-2.0
2/*
3 * u-boot/board/socionext/developerbox/developerbox.c
4 *
5 * Copyright (C) 2016-2017 Socionext Inc.
6 * Copyright (C) 2021 Linaro Ltd.
7 */
8#include <asm/types.h>
9#include <asm/armv8/mmu.h>
10#include <asm/global_data.h>
11#include <asm/io.h>
12#include <common.h>
Sughosh Ganu741ef862022-04-15 11:29:34 +053013#include <efi.h>
14#include <efi_loader.h>
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +090015#include <env_internal.h>
16#include <fdt_support.h>
17#include <log.h>
18
Sughosh Ganu741ef862022-04-15 11:29:34 +053019#include <linux/kernel.h>
20
21#if CONFIG_IS_ENABLED(EFI_HAVE_CAPSULE_SUPPORT)
22struct efi_fw_image fw_images[] = {
23 {
24 .image_type_id = DEVELOPERBOX_UBOOT_IMAGE_GUID,
25 .fw_name = u"DEVELOPERBOX-UBOOT",
26 .image_index = 1,
27 },
28 {
29 .image_type_id = DEVELOPERBOX_FIP_IMAGE_GUID,
30 .fw_name = u"DEVELOPERBOX-FIP",
31 .image_index = 2,
32 },
33 {
34 .image_type_id = DEVELOPERBOX_OPTEE_IMAGE_GUID,
35 .fw_name = u"DEVELOPERBOX-OPTEE",
36 .image_index = 3,
37 },
38};
39
40struct efi_capsule_update_info update_info = {
41 .dfu_string = "mtd nor1=u-boot.bin raw 200000 100000;"
42 "fip.bin raw 180000 78000;"
43 "optee.bin raw 500000 100000",
44 .images = fw_images,
45};
46
47u8 num_image_type_guids = ARRAY_SIZE(fw_images);
48#endif /* EFI_HAVE_CAPSULE_SUPPORT */
49
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +090050static struct mm_region sc2a11_mem_map[] = {
51 {
52 .virt = 0x0UL,
53 .phys = 0x0UL,
54 .size = 0x80000000UL,
55 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
56 PTE_BLOCK_OUTER_SHARE
57 }, {
58 /* 1st DDR block */
59 .virt = 0x80000000UL,
60 .phys = 0x80000000UL,
61 .size = PHYS_SDRAM_SIZE,
62 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
63 PTE_BLOCK_OUTER_SHARE
64 }, {
65 /* 2nd DDR place holder */
66 0,
67 }, {
68 /* 3rd DDR place holder */
69 0,
70 }, {
71 /* List terminator */
72 0,
73 }
74};
75
76struct mm_region *mem_map = sc2a11_mem_map;
77
78#define DDR_REGION_INDEX(i) (1 + (i))
79#define MAX_DDR_REGIONS 3
80
81struct draminfo_entry {
82 u64 base;
83 u64 size;
84};
85
86struct draminfo {
87 u32 nr_regions;
88 u32 reserved;
89 struct draminfo_entry entry[3];
90};
91
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +090092DECLARE_GLOBAL_DATA_PTR;
93
94#define LOAD_OFFSET 0x100
95
Masami Hiramatsu1ad3c832021-07-12 19:35:44 +090096/* SCBM System MMU is used for eMMC and NETSEC */
97#define SCBM_SMMU_ADDR (0x52e00000UL)
98#define SMMU_SCR0_OFFS (0x0)
99#define SMMU_SCR0_SHCFG_INNER (0x2 << 22)
100#define SMMU_SCR0_MTCFG (0x1 << 20)
101#define SMMU_SCR0_MEMATTR_INNER_OUTER_WB (0xf << 16)
102
103static void synquacer_setup_scbm_smmu(void)
104{
105 writel(SMMU_SCR0_SHCFG_INNER | SMMU_SCR0_MTCFG | SMMU_SCR0_MEMATTR_INNER_OUTER_WB,
106 SCBM_SMMU_ADDR + SMMU_SCR0_OFFS);
107}
108
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900109/*
110 * Miscellaneous platform dependent initialisations
111 */
112int board_init(void)
113{
114 gd->bd->bi_boot_params = CONFIG_SYS_LOAD_ADDR + LOAD_OFFSET;
115
Masami Hiramatsu0171d052021-11-18 14:45:25 +0900116 gd->env_addr = (ulong)&default_environment[0];
117
Masami Hiramatsu1ad3c832021-07-12 19:35:44 +0900118 synquacer_setup_scbm_smmu();
119
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900120 return 0;
121}
122
123int ft_board_setup(void *blob, struct bd_info *bd)
124{
125 /* Remove SPI NOR and I2C0 for making DT compatible with EDK2 */
126 fdt_del_node_and_alias(blob, "spi_nor");
127 fdt_del_node_and_alias(blob, "i2c0");
128
129 return 0;
130}
131
132/*
133 * DRAM configuration
134 */
135
136int dram_init(void)
137{
Jassi Brara70c75c2022-09-12 12:05:29 -0500138 struct draminfo *synquacer_draminfo = (void *)SQ_DRAMINFO_BASE;
139 struct draminfo_entry *ent = synquacer_draminfo->entry;
140
141 gd->ram_size = ent[0].size;
142 gd->ram_base = ent[0].base;
143
144 return 0;
145}
146
147int dram_init_banksize(void)
148{
149 struct draminfo *synquacer_draminfo = (void *)SQ_DRAMINFO_BASE;
150 struct draminfo_entry *ent = synquacer_draminfo->entry;
151 int i;
152
153 for (i = 0; i < ARRAY_SIZE(gd->bd->bi_dram); i++) {
154 if (i < synquacer_draminfo->nr_regions) {
155 debug("%s: dram[%d] = %llx@%llx\n", __func__, i, ent[i].size, ent[i].base);
156 gd->bd->bi_dram[i].start = ent[i].base;
157 gd->bd->bi_dram[i].size = ent[i].size;
158 }
159 }
160
161 return 0;
162}
163
164void build_mem_map(void)
165{
166 struct draminfo *synquacer_draminfo = (void *)SQ_DRAMINFO_BASE;
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900167 struct draminfo_entry *ent = synquacer_draminfo->entry;
168 struct mm_region *mr;
169 int i, ri;
170
171 if (synquacer_draminfo->nr_regions < 1) {
172 log_err("Failed to get correct DRAM information\n");
Jassi Brara70c75c2022-09-12 12:05:29 -0500173 return;
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900174 }
175
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900176 /* Update memory region maps */
177 for (i = 0; i < synquacer_draminfo->nr_regions; i++) {
178 if (i >= MAX_DDR_REGIONS)
179 break;
180
181 ri = DDR_REGION_INDEX(i);
182 mem_map[ri].phys = ent[i].base;
183 mem_map[ri].size = ent[i].size;
Jassi Brar41b535c2022-09-12 12:05:15 -0500184 mem_map[ri].virt = mem_map[ri].phys;
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900185 if (i == 0)
186 continue;
187
188 mr = &mem_map[DDR_REGION_INDEX(0)];
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900189 mem_map[ri].attrs = mr->attrs;
190 }
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900191}
192
Jassi Brara70c75c2022-09-12 12:05:29 -0500193void enable_caches(void)
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900194{
Jassi Brara70c75c2022-09-12 12:05:29 -0500195 build_mem_map();
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900196
Jassi Brara70c75c2022-09-12 12:05:29 -0500197 icache_enable();
198 dcache_enable();
Masami Hiramatsu5cd4a352021-06-04 18:45:10 +0900199}
200
201int print_cpuinfo(void)
202{
203 printf("CPU: SC2A11:Cortex-A53 MPCore 24cores\n");
204 return 0;
205}