]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-tegra/tegra186/nvtboot_mem.c
ARM: Tegra186: mem parsing fixes from downstream
[u-boot] / arch / arm / mach-tegra / tegra186 / nvtboot_mem.c
1 /*
2  * Copyright (c) 2016, NVIDIA CORPORATION.
3  *
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>
11
12 DECLARE_GLOBAL_DATA_PTR;
13
14 extern unsigned long nvtboot_boot_x0;
15
16 /*
17  * A parsed version of /memory/reg from the DTB that is passed to U-Boot in x0.
18  *
19  * We assume bank 0 is RAM completely below 4G mostly ignore other banks;
20  * assuming they contain RAM above 4G. This is all a fairly safe assumption,
21  * since the L4T kernel makes the same assumption, so the bootloader is
22  * unlikely to change.
23  *
24  * This is written to before relocation, and hence cannot be in .bss, since
25  * .bss overlaps the DTB that's appended to the U-Boot binary. The initializer
26  * forces this into .data and avoids this issue. This also has the nice side-
27  * effect of the content being valid after relocation.
28  */
29 static struct {
30         u64 start;
31         u64 size;
32 } ram_banks[CONFIG_NR_DRAM_BANKS] = {{1}};
33
34 int dram_init(void)
35 {
36         unsigned int na, ns;
37         const void *nvtboot_blob = (void *)nvtboot_boot_x0;
38         int node, len, i;
39         const u32 *prop;
40
41         memset(ram_banks, 0, sizeof(ram_banks));
42
43         na = fdtdec_get_uint(nvtboot_blob, 0, "#address-cells", 2);
44         ns = fdtdec_get_uint(nvtboot_blob, 0, "#size-cells", 2);
45
46         node = fdt_path_offset(nvtboot_blob, "/memory");
47         if (node < 0) {
48                 pr_err("Can't find /memory node in nvtboot DTB");
49                 hang();
50         }
51         prop = fdt_getprop(nvtboot_blob, node, "reg", &len);
52         if (!prop) {
53                 pr_err("Can't find /memory/reg property in nvtboot DTB");
54                 hang();
55         }
56
57         /* Calculate the true # of base/size pairs to read */
58         len /= 4;               /* Convert bytes to number of cells */
59         len /= (na + ns);       /* Convert cells to number of banks */
60         if (len > ARRAY_SIZE(ram_banks))
61                 len = ARRAY_SIZE(ram_banks);
62
63         gd->ram_size = 0;
64         for (i = 0; i < len; i++) {
65                 ram_banks[i].start = fdt_read_number(prop, na);
66                 prop += na;
67                 ram_banks[i].size = fdt_read_number(prop, ns);
68                 prop += ns;
69                 gd->ram_size += ram_banks[i].size;
70         }
71
72         return 0;
73 }
74
75 extern unsigned long nvtboot_boot_x0;
76
77 int dram_init_banksize(void)
78 {
79         int i;
80
81         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
82                 gd->bd->bi_dram[i].start = ram_banks[i].start;
83                 gd->bd->bi_dram[i].size = ram_banks[i].size;
84         }
85
86 #ifdef CONFIG_PCI
87         gd->pci_ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
88 #endif
89
90         return 0;
91 }
92
93 ulong board_get_usable_ram_top(ulong total_size)
94 {
95         return ram_banks[0].start + ram_banks[0].size;
96 }