blob: 5a165a9d8e346346dc8e825800e8450d39d1feab [file] [log] [blame]
Stephen Warrenc5f510f2016-07-18 17:01:51 -06001/*
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
12DECLARE_GLOBAL_DATA_PTR;
13
14extern 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 *
Stephen Warren0603dd22018-01-03 14:32:33 -070019 * 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.
Stephen Warrenc5f510f2016-07-18 17:01:51 -060023 *
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 */
29static struct {
30 u64 start;
31 u64 size;
Stephen Warren0603dd22018-01-03 14:32:33 -070032} ram_banks[CONFIG_NR_DRAM_BANKS] = {{1}};
Stephen Warrenc5f510f2016-07-18 17:01:51 -060033
34int 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) {
Masahiro Yamada81e10422017-09-16 14:10:41 +090048 pr_err("Can't find /memory node in nvtboot DTB");
Stephen Warrenc5f510f2016-07-18 17:01:51 -060049 hang();
50 }
51 prop = fdt_getprop(nvtboot_blob, node, "reg", &len);
52 if (!prop) {
Masahiro Yamada81e10422017-09-16 14:10:41 +090053 pr_err("Can't find /memory/reg property in nvtboot DTB");
Stephen Warrenc5f510f2016-07-18 17:01:51 -060054 hang();
55 }
56
Stephen Warren0603dd22018-01-03 14:32:33 -070057 /* 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 */
Stephen Warrenc5f510f2016-07-18 17:01:51 -060060 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++) {
Simon Glassbb7c01e2017-05-18 20:09:26 -060065 ram_banks[i].start = fdt_read_number(prop, na);
Stephen Warrenc5f510f2016-07-18 17:01:51 -060066 prop += na;
Simon Glassbb7c01e2017-05-18 20:09:26 -060067 ram_banks[i].size = fdt_read_number(prop, ns);
Stephen Warrenc5f510f2016-07-18 17:01:51 -060068 prop += ns;
69 gd->ram_size += ram_banks[i].size;
70 }
71
72 return 0;
73}
74
75extern unsigned long nvtboot_boot_x0;
76
Simon Glass2f949c32017-03-31 08:40:32 -060077int dram_init_banksize(void)
Stephen Warrenc5f510f2016-07-18 17:01:51 -060078{
79 int i;
80
Stephen Warren0603dd22018-01-03 14:32:33 -070081 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
Stephen Warrenc5f510f2016-07-18 17:01:51 -060082 gd->bd->bi_dram[i].start = ram_banks[i].start;
83 gd->bd->bi_dram[i].size = ram_banks[i].size;
84 }
Simon Glass2f949c32017-03-31 08:40:32 -060085
Stephen Warren0603dd22018-01-03 14:32:33 -070086#ifdef CONFIG_PCI
87 gd->pci_ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
88#endif
89
Simon Glass2f949c32017-03-31 08:40:32 -060090 return 0;
Stephen Warrenc5f510f2016-07-18 17:01:51 -060091}
92
93ulong board_get_usable_ram_top(ulong total_size)
94{
95 return ram_banks[0].start + ram_banks[0].size;
96}