blob: 2ca59747d4ca4bafb0a0503170582c62ed7d54ca [file] [log] [blame]
Stephen Warrenc5f510f2016-07-18 17:01:51 -06001/*
Stephen Warren51aa3242018-01-03 14:32:34 -07002 * Copyright (c) 2016-2018, NVIDIA CORPORATION.
Stephen Warrenc5f510f2016-07-18 17:01:51 -06003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <fdt_support.h>
9#include <fdtdec.h>
10#include <asm/arch/tegra.h>
Stephen Warren5ab72a22018-01-04 11:07:14 -070011#include <asm/armv8/mmu.h>
Stephen Warrenc5f510f2016-07-18 17:01:51 -060012
Stephen Warren51aa3242018-01-03 14:32:34 -070013#define SZ_4G 0x100000000ULL
14
15/*
16 * Size of a region that's large enough to hold the relocated U-Boot and all
17 * other allocations made around it (stack, heap, page tables, etc.)
18 * In practice, running "bdinfo" at the shell prompt, the stack reaches about
19 * 5MB from the address selected for ram_top as of the time of writing,
20 * so a 16MB region should be plenty.
21 */
22#define MIN_USABLE_RAM_SIZE SZ_16M
23/*
24 * The amount of space we expect to require for stack usage. Used to validate
25 * that all reservations fit into the region selected for the relocation target
26 */
27#define MIN_USABLE_STACK_SIZE SZ_1M
28
Stephen Warrenc5f510f2016-07-18 17:01:51 -060029DECLARE_GLOBAL_DATA_PTR;
30
31extern unsigned long nvtboot_boot_x0;
Stephen Warren5ab72a22018-01-04 11:07:14 -070032extern struct mm_region tegra_mem_map[];
Stephen Warrenc5f510f2016-07-18 17:01:51 -060033
34/*
Stephen Warren51aa3242018-01-03 14:32:34 -070035 * These variables are written to before relocation, and hence cannot be
36 * in.bss, since .bss overlaps the DTB that's appended to the U-Boot binary.
37 * The section attribute forces this into .data and avoids this issue. This
38 * also has the nice side-effect of the content being valid after relocation.
Stephen Warrenc5f510f2016-07-18 17:01:51 -060039 */
Stephen Warren51aa3242018-01-03 14:32:34 -070040
Stephen Warren51aa3242018-01-03 14:32:34 -070041/* The number of valid entries in ram_banks[] */
42static int ram_bank_count __attribute__((section(".data")));
43
44/*
45 * The usable top-of-RAM for U-Boot. This is both:
46 * a) Below 4GB to avoid issues with peripherals that use 32-bit addressing.
47 * b) At the end of a region that has enough space to hold the relocated U-Boot
48 * and all other allocations made around it (stack, heap, page tables, etc.)
49 */
50static u64 ram_top __attribute__((section(".data")));
51/* The base address of the region of RAM that ends at ram_top */
52static u64 region_base __attribute__((section(".data")));
Stephen Warrenc5f510f2016-07-18 17:01:51 -060053
54int dram_init(void)
55{
56 unsigned int na, ns;
57 const void *nvtboot_blob = (void *)nvtboot_boot_x0;
58 int node, len, i;
59 const u32 *prop;
60
Stephen Warrenc5f510f2016-07-18 17:01:51 -060061 na = fdtdec_get_uint(nvtboot_blob, 0, "#address-cells", 2);
62 ns = fdtdec_get_uint(nvtboot_blob, 0, "#size-cells", 2);
63
64 node = fdt_path_offset(nvtboot_blob, "/memory");
65 if (node < 0) {
Masahiro Yamada81e10422017-09-16 14:10:41 +090066 pr_err("Can't find /memory node in nvtboot DTB");
Stephen Warrenc5f510f2016-07-18 17:01:51 -060067 hang();
68 }
69 prop = fdt_getprop(nvtboot_blob, node, "reg", &len);
70 if (!prop) {
Masahiro Yamada81e10422017-09-16 14:10:41 +090071 pr_err("Can't find /memory/reg property in nvtboot DTB");
Stephen Warrenc5f510f2016-07-18 17:01:51 -060072 hang();
73 }
74
Stephen Warren0603dd22018-01-03 14:32:33 -070075 /* Calculate the true # of base/size pairs to read */
76 len /= 4; /* Convert bytes to number of cells */
77 len /= (na + ns); /* Convert cells to number of banks */
Stephen Warren5ab72a22018-01-04 11:07:14 -070078 if (len > CONFIG_NR_DRAM_BANKS)
79 len = CONFIG_NR_DRAM_BANKS;
Stephen Warrenc5f510f2016-07-18 17:01:51 -060080
Stephen Warren5ab72a22018-01-04 11:07:14 -070081 /* Parse the /memory node, and save useful entries */
Stephen Warrenc5f510f2016-07-18 17:01:51 -060082 gd->ram_size = 0;
Stephen Warren5ab72a22018-01-04 11:07:14 -070083 ram_bank_count = 0;
84 for (i = 0; i < len; i++) {
85 u64 bank_start, bank_end, bank_size, usable_bank_size;
Stephen Warren51aa3242018-01-03 14:32:34 -070086
Stephen Warren5ab72a22018-01-04 11:07:14 -070087 /* Extract raw memory region data from DTB */
88 bank_start = fdt_read_number(prop, na);
Stephen Warrenc5f510f2016-07-18 17:01:51 -060089 prop += na;
Stephen Warren5ab72a22018-01-04 11:07:14 -070090 bank_size = fdt_read_number(prop, ns);
Stephen Warrenc5f510f2016-07-18 17:01:51 -060091 prop += ns;
Stephen Warren5ab72a22018-01-04 11:07:14 -070092 gd->ram_size += bank_size;
93 bank_end = bank_start + bank_size;
94 debug("Bank %d: %llx..%llx (+%llx)\n", i,
95 bank_start, bank_end, bank_size);
Stephen Warren51aa3242018-01-03 14:32:34 -070096
Stephen Warren5ab72a22018-01-04 11:07:14 -070097 /*
98 * Align the bank to MMU section size. This is not strictly
99 * necessary, since the translation table construction code
100 * handles page granularity without issue. However, aligning
101 * the MMU entries reduces the size and number of levels in the
102 * page table, so is worth it.
103 */
104 bank_start = ROUND(bank_start, SZ_2M);
105 bank_end = bank_end & ~(SZ_2M - 1);
106 bank_size = bank_end - bank_start;
107 debug(" aligned: %llx..%llx (+%llx)\n",
108 bank_start, bank_end, bank_size);
109 if (bank_end <= bank_start)
110 continue;
111
112 /* Record data used to create MMU translation tables */
113 ram_bank_count++;
114 /* Index below is deliberately 1-based to skip MMIO entry */
115 tegra_mem_map[ram_bank_count].virt = bank_start;
116 tegra_mem_map[ram_bank_count].phys = bank_start;
117 tegra_mem_map[ram_bank_count].size = bank_size;
118 tegra_mem_map[ram_bank_count].attrs =
119 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_INNER_SHARE;
120
121 /* Determine best bank to relocate U-Boot into */
Stephen Warren51aa3242018-01-03 14:32:34 -0700122 if (bank_end > SZ_4G)
123 bank_end = SZ_4G;
124 debug(" end %llx (usable)\n", bank_end);
Stephen Warren5ab72a22018-01-04 11:07:14 -0700125 usable_bank_size = bank_end - bank_start;
Stephen Warren51aa3242018-01-03 14:32:34 -0700126 debug(" size %llx (usable)\n", usable_bank_size);
127 if ((usable_bank_size >= MIN_USABLE_RAM_SIZE) &&
128 (bank_end > ram_top)) {
129 ram_top = bank_end;
Stephen Warren5ab72a22018-01-04 11:07:14 -0700130 region_base = bank_start;
Stephen Warren51aa3242018-01-03 14:32:34 -0700131 debug("ram top now %llx\n", ram_top);
132 }
133 }
Stephen Warren5ab72a22018-01-04 11:07:14 -0700134
135 /* Ensure memory map contains the desired sentinel entry */
136 tegra_mem_map[ram_bank_count + 1].virt = 0;
137 tegra_mem_map[ram_bank_count + 1].phys = 0;
138 tegra_mem_map[ram_bank_count + 1].size = 0;
139 tegra_mem_map[ram_bank_count + 1].attrs = 0;
140
141 /* Error out if a relocation target couldn't be found */
Stephen Warren51aa3242018-01-03 14:32:34 -0700142 if (!ram_top) {
143 pr_err("Can't find a usable RAM top");
144 hang();
Stephen Warrenc5f510f2016-07-18 17:01:51 -0600145 }
146
147 return 0;
148}
149
Simon Glass2f949c32017-03-31 08:40:32 -0600150int dram_init_banksize(void)
Stephen Warrenc5f510f2016-07-18 17:01:51 -0600151{
152 int i;
153
Stephen Warren51aa3242018-01-03 14:32:34 -0700154 if ((gd->start_addr_sp - region_base) < MIN_USABLE_STACK_SIZE) {
155 pr_err("Reservations exceed chosen region size");
156 hang();
157 }
158
159 for (i = 0; i < ram_bank_count; i++) {
Stephen Warren5ab72a22018-01-04 11:07:14 -0700160 gd->bd->bi_dram[i].start = tegra_mem_map[1 + i].virt;
161 gd->bd->bi_dram[i].size = tegra_mem_map[1 + i].size;
Stephen Warrenc5f510f2016-07-18 17:01:51 -0600162 }
Simon Glass2f949c32017-03-31 08:40:32 -0600163
Stephen Warren0603dd22018-01-03 14:32:33 -0700164#ifdef CONFIG_PCI
Stephen Warren51aa3242018-01-03 14:32:34 -0700165 gd->pci_ram_top = ram_top;
Stephen Warren0603dd22018-01-03 14:32:33 -0700166#endif
167
Simon Glass2f949c32017-03-31 08:40:32 -0600168 return 0;
Stephen Warrenc5f510f2016-07-18 17:01:51 -0600169}
170
171ulong board_get_usable_ram_top(ulong total_size)
172{
Stephen Warren51aa3242018-01-03 14:32:34 -0700173 return ram_top;
Stephen Warrenc5f510f2016-07-18 17:01:51 -0600174}