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