Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 7 | #include <linux/libfdt.h> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 8 | #include <linux/err.h> |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 9 | #include <asm/arch/gx.h> |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 10 | #include <asm/arch/sm.h> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 11 | #include <asm/armv8/mmu.h> |
| 12 | #include <asm/unaligned.h> |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 13 | #include <linux/sizes.h> |
| 14 | #include <efi_loader.h> |
| 15 | #include <asm/io.h> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | int dram_init(void) |
| 20 | { |
| 21 | const fdt64_t *val; |
| 22 | int offset; |
| 23 | int len; |
| 24 | |
| 25 | offset = fdt_path_offset(gd->fdt_blob, "/memory"); |
| 26 | if (offset < 0) |
| 27 | return -EINVAL; |
| 28 | |
| 29 | val = fdt_getprop(gd->fdt_blob, offset, "reg", &len); |
| 30 | if (len < sizeof(*val) * 2) |
| 31 | return -EINVAL; |
| 32 | |
| 33 | /* Use unaligned access since cache is still disabled */ |
| 34 | gd->ram_size = get_unaligned_be64(&val[1]); |
| 35 | |
| 36 | return 0; |
| 37 | } |
| 38 | |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 39 | phys_size_t get_effective_memsize(void) |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 40 | { |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 41 | /* Size is reported in MiB, convert it in bytes */ |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 42 | return ((readl(GX_AO_SEC_GP_CFG0) & GX_AO_MEM_SIZE_MASK) |
| 43 | >> GX_AO_MEM_SIZE_SHIFT) * SZ_1M; |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static void meson_board_add_reserved_memory(void *fdt, u64 start, u64 size) |
| 47 | { |
| 48 | int ret; |
| 49 | |
| 50 | ret = fdt_add_mem_rsv(fdt, start, size); |
| 51 | if (ret) |
| 52 | printf("Could not reserve zone @ 0x%llx\n", start); |
| 53 | |
| 54 | if (IS_ENABLED(CONFIG_EFI_LOADER)) { |
| 55 | efi_add_memory_map(start, |
| 56 | ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT, |
| 57 | EFI_RESERVED_MEMORY_TYPE, false); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | void meson_gx_init_reserved_memory(void *fdt) |
| 62 | { |
| 63 | u64 bl31_size, bl31_start; |
| 64 | u64 bl32_size, bl32_start; |
| 65 | u32 reg; |
| 66 | |
| 67 | /* |
| 68 | * Get ARM Trusted Firmware reserved memory zones in : |
| 69 | * - AO_SEC_GP_CFG3: bl32 & bl31 size in KiB, can be 0 |
| 70 | * - AO_SEC_GP_CFG5: bl31 physical start address, can be NULL |
| 71 | * - AO_SEC_GP_CFG4: bl32 physical start address, can be NULL |
| 72 | */ |
| 73 | |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 74 | reg = readl(GX_AO_SEC_GP_CFG3); |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 75 | |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 76 | bl31_size = ((reg & GX_AO_BL31_RSVMEM_SIZE_MASK) |
| 77 | >> GX_AO_BL31_RSVMEM_SIZE_SHIFT) * SZ_1K; |
| 78 | bl32_size = (reg & GX_AO_BL32_RSVMEM_SIZE_MASK) * SZ_1K; |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 79 | |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 80 | bl31_start = readl(GX_AO_SEC_GP_CFG5); |
| 81 | bl32_start = readl(GX_AO_SEC_GP_CFG4); |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 82 | |
| 83 | /* |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 84 | * Early Meson GX Firmware revisions did not provide the reserved |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 85 | * memory zones in the registers, keep fixed memory zone handling. |
| 86 | */ |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 87 | if (IS_ENABLED(CONFIG_MESON_GX) && |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 88 | !reg && !bl31_start && !bl32_start) { |
| 89 | bl31_start = 0x10000000; |
| 90 | bl31_size = 0x200000; |
| 91 | } |
| 92 | |
| 93 | /* Add first 16MiB reserved zone */ |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 94 | meson_board_add_reserved_memory(fdt, 0, GX_FIRMWARE_MEM_SIZE); |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 95 | |
| 96 | /* Add BL31 reserved zone */ |
| 97 | if (bl31_start && bl31_size) |
| 98 | meson_board_add_reserved_memory(fdt, bl31_start, bl31_size); |
| 99 | |
| 100 | /* Add BL32 reserved zone */ |
| 101 | if (bl32_start && bl32_size) |
| 102 | meson_board_add_reserved_memory(fdt, bl32_start, bl32_size); |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void reset_cpu(ulong addr) |
| 106 | { |
Alexander Graf | 51bfb5b | 2016-08-16 21:08:46 +0200 | [diff] [blame] | 107 | psci_system_reset(); |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 110 | static struct mm_region gx_mem_map[] = { |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 111 | { |
York Sun | cd4b0c5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 112 | .virt = 0x0UL, |
| 113 | .phys = 0x0UL, |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 114 | .size = 0x80000000UL, |
| 115 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 116 | PTE_BLOCK_INNER_SHARE |
| 117 | }, { |
York Sun | cd4b0c5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 118 | .virt = 0x80000000UL, |
| 119 | .phys = 0x80000000UL, |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 120 | .size = 0x80000000UL, |
| 121 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 122 | PTE_BLOCK_NON_SHARE | |
| 123 | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
| 124 | }, { |
| 125 | /* List terminator */ |
| 126 | 0, |
| 127 | } |
| 128 | }; |
| 129 | |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 130 | struct mm_region *mem_map = gx_mem_map; |