All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8
@ 2016-07-18 23:01 Stephen Warren
  2016-07-18 23:01 ` [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size Stephen Warren
  2016-07-20  2:21 ` [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Tom Rini
  0 siblings, 2 replies; 6+ messages in thread
From: Stephen Warren @ 2016-07-18 23:01 UTC (permalink / raw)
  To: u-boot

From: Stephen Warren <swarren@nvidia.com>

Implement a hook to allow boards to save boot-time CPU state for later
use. When U-Boot is chain-loaded by another bootloader, CPU registers may
contain useful information such as system configuration information. This
feature mirrors the equivalent ARMv7 feature.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 arch/arm/cpu/armv8/start.S | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/cpu/armv8/start.S b/arch/arm/cpu/armv8/start.S
index dfce46920668..f77fa44ad6c3 100644
--- a/arch/arm/cpu/armv8/start.S
+++ b/arch/arm/cpu/armv8/start.S
@@ -53,6 +53,11 @@ _bss_end_ofs:
 	.quad	__bss_end - _start
 
 reset:
+	/* Allow the board to save important registers */
+	b	save_boot_params
+.globl	save_boot_params_ret
+save_boot_params_ret:
+
 #ifdef CONFIG_SYS_RESET_SCTRL
 	bl reset_sctrl
 #endif
@@ -288,3 +293,7 @@ ENTRY(c_runtime_cpu_setup)
 
 	ret
 ENDPROC(c_runtime_cpu_setup)
+
+WEAK(save_boot_params)
+	b	save_boot_params_ret	/* back to my caller */
+ENDPROC(save_boot_params)
-- 
2.9.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size
  2016-07-18 23:01 [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Stephen Warren
@ 2016-07-18 23:01 ` Stephen Warren
  2016-07-23  2:08   ` Simon Glass
  2016-07-20  2:21 ` [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Tom Rini
  1 sibling, 1 reply; 6+ messages in thread
From: Stephen Warren @ 2016-07-18 23:01 UTC (permalink / raw)
  To: u-boot

From: Stephen Warren <swarren@nvidia.com>

On Tegra186, U-Boot is booted by the binary firmware as if it were a
Linux kernel. Consequently, a DTB is passed to U-Boot. Cache the address
of that DTB, and parse the /memory/reg property to determine the actual
RAM regions that U-Boot and subsequent EL2/EL1 SW may actually use.

Given the binary FW passes a DTB to U-Boot, I anticipate the suggestion
that U-Boot use that DTB as its control DTB. I don't believe that would
work well, so I do not plan to put any effort into this. By default the
FW-supplied DTB is the L4T kernel's DTB, which uses non-upstreamed DT
bindings. U-Boot aims to use only upstreamed DT bindings, or as close as
it can get. Replacing this DTB with a DTB using upstream bindings is
physically quite easy; simply replace the content of one of the GPT
partitions on the eMMC. However, the binary FW at least partially relies
on the existence/content of some nodes in the DTB, and that requires the
DTB to be written according to downstream bindings. Equally, if U-Boot
continues to use appended DTBs built from its own source tree, as it does
for all other Tegra platforms, development and deployment is much easier.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 arch/arm/mach-tegra/board186.c             | 12 ----
 arch/arm/mach-tegra/tegra186/Makefile      |  2 +
 arch/arm/mach-tegra/tegra186/nvtboot_ll.S  | 20 +++++++
 arch/arm/mach-tegra/tegra186/nvtboot_mem.c | 88 ++++++++++++++++++++++++++++++
 4 files changed, 110 insertions(+), 12 deletions(-)
 create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_ll.S
 create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_mem.c

diff --git a/arch/arm/mach-tegra/board186.c b/arch/arm/mach-tegra/board186.c
index f4b6152a7937..876ccba5e599 100644
--- a/arch/arm/mach-tegra/board186.c
+++ b/arch/arm/mach-tegra/board186.c
@@ -11,12 +11,6 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-int dram_init(void)
-{
-	gd->ram_size = (1.5 * 1024 * 1024 * 1024);
-	return 0;
-}
-
 int board_early_init_f(void)
 {
 	return 0;
@@ -32,12 +26,6 @@ int board_late_init(void)
 	return 0;
 }
 
-void dram_init_banksize(void)
-{
-	gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
-	gd->bd->bi_dram[0].size = gd->ram_size;
-}
-
 void pad_init_mmc(struct mmc_host *host)
 {
 }
diff --git a/arch/arm/mach-tegra/tegra186/Makefile b/arch/arm/mach-tegra/tegra186/Makefile
index 188b097d2c7f..033d6005fb44 100644
--- a/arch/arm/mach-tegra/tegra186/Makefile
+++ b/arch/arm/mach-tegra/tegra186/Makefile
@@ -3,3 +3,5 @@
 # SPDX-License-Identifier: GPL-2.0
 
 obj-y += ../board186.o
+obj-y += nvtboot_ll.o
+obj-y += nvtboot_mem.o
diff --git a/arch/arm/mach-tegra/tegra186/nvtboot_ll.S b/arch/arm/mach-tegra/tegra186/nvtboot_ll.S
new file mode 100644
index 000000000000..1eab890958c7
--- /dev/null
+++ b/arch/arm/mach-tegra/tegra186/nvtboot_ll.S
@@ -0,0 +1,20 @@
+/*
+ * Save nvtboot-related boot-time CPU state
+ *
+ * (C) Copyright 2015-2016 NVIDIA Corporation <www.nvidia.com>
+ *
+ * SPDX-License-Identifier:	GPL-2.0+
+ */
+
+#include <config.h>
+#include <linux/linkage.h>
+
+.globl	nvtboot_boot_x0
+nvtboot_boot_x0:
+	.dword 0
+
+ENTRY(save_boot_params)
+	adr	x8, nvtboot_boot_x0
+	str	x0, [x8]
+	b	save_boot_params_ret
+ENDPROC(save_boot_params)
diff --git a/arch/arm/mach-tegra/tegra186/nvtboot_mem.c b/arch/arm/mach-tegra/tegra186/nvtboot_mem.c
new file mode 100644
index 000000000000..37dd8d43348a
--- /dev/null
+++ b/arch/arm/mach-tegra/tegra186/nvtboot_mem.c
@@ -0,0 +1,88 @@
+/*
+ * Copyright (c) 2016, NVIDIA CORPORATION.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+#include <fdt_support.h>
+#include <fdtdec.h>
+#include <asm/arch/tegra.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+extern unsigned long nvtboot_boot_x0;
+
+/*
+ * A parsed version of /memory/reg from the DTB that is passed to U-Boot in x0.
+ *
+ * We only support up to two banks since that's all the binary  bootloader
+ * ever sets. We assume bank 0 is RAM below 4G and bank 1 is RAM  above 4G.
+ * This is all a fairly safe assumption, since the L4T kernel makes  the same
+ * assumptions, so the bootloader is unlikely to change.
+ *
+ * This is written to before relocation, and hence cannot be in .bss, since
+ * .bss overlaps the DTB that's appended to the U-Boot binary. The initializer
+ * forces this into .data and avoids this issue. This also has the nice side-
+ * effect of the content being valid after relocation.
+ */
+static struct {
+	u64 start;
+	u64 size;
+} ram_banks[2] = {{1}};
+
+int dram_init(void)
+{
+	unsigned int na, ns;
+	const void *nvtboot_blob = (void *)nvtboot_boot_x0;
+	int node, len, i;
+	const u32 *prop;
+
+	memset(ram_banks, 0, sizeof(ram_banks));
+
+	na = fdtdec_get_uint(nvtboot_blob, 0, "#address-cells", 2);
+	ns = fdtdec_get_uint(nvtboot_blob, 0, "#size-cells", 2);
+
+	node = fdt_path_offset(nvtboot_blob, "/memory");
+	if (node < 0) {
+		error("Can't find /memory node in nvtboot DTB");
+		hang();
+	}
+	prop = fdt_getprop(nvtboot_blob, node, "reg", &len);
+	if (!prop) {
+		error("Can't find /memory/reg property in nvtboot DTB");
+		hang();
+	}
+
+	len /= (na + ns);
+	if (len > ARRAY_SIZE(ram_banks))
+		len = ARRAY_SIZE(ram_banks);
+
+	gd->ram_size = 0;
+	for (i = 0; i < len; i++) {
+		ram_banks[i].start = of_read_number(prop, na);
+		prop += na;
+		ram_banks[i].size = of_read_number(prop, ns);
+		prop += ns;
+		gd->ram_size += ram_banks[i].size;
+	}
+
+	return 0;
+}
+
+extern unsigned long nvtboot_boot_x0;
+
+void dram_init_banksize(void)
+{
+	int i;
+
+	for (i = 0; i < 2; i++) {
+		gd->bd->bi_dram[i].start = ram_banks[i].start;
+		gd->bd->bi_dram[i].size = ram_banks[i].size;
+	}
+}
+
+ulong board_get_usable_ram_top(ulong total_size)
+{
+	return ram_banks[0].start + ram_banks[0].size;
+}
-- 
2.9.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8
  2016-07-18 23:01 [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Stephen Warren
  2016-07-18 23:01 ` [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size Stephen Warren
@ 2016-07-20  2:21 ` Tom Rini
  2016-07-21 16:16   ` Tom Warren
  1 sibling, 1 reply; 6+ messages in thread
From: Tom Rini @ 2016-07-20  2:21 UTC (permalink / raw)
  To: u-boot

On Mon, Jul 18, 2016 at 05:01:50PM -0600, Stephen Warren wrote:

> From: Stephen Warren <swarren@nvidia.com>
> 
> Implement a hook to allow boards to save boot-time CPU state for later
> use. When U-Boot is chain-loaded by another bootloader, CPU registers may
> contain useful information such as system configuration information. This
> feature mirrors the equivalent ARMv7 feature.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160719/080b3473/attachment.sig>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8
  2016-07-20  2:21 ` [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Tom Rini
@ 2016-07-21 16:16   ` Tom Warren
  2016-07-21 19:15     ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Warren @ 2016-07-21 16:16 UTC (permalink / raw)
  To: u-boot

Tom,

I'm going to take these 2 in via Tegra if that's OK with you. Expect a PR later today.

Tom

> -----Original Message-----
> From: Tom Rini [mailto:trini at konsulko.com]
> Sent: Tuesday, July 19, 2016 7:22 PM
> To: Stephen Warren <swarren@wwwdotorg.org>
> Cc: u-boot at lists.denx.de; Simon Glass <sjg@chromium.org>; Tom Warren
> <TWarren@nvidia.com>; Stephen Warren <swarren@nvidia.com>; Albert
> Aribaud <albert.u.boot@aribaud.net>
> Subject: Re: [PATCH 1/2] ARM: Add save_boot_params for ARMv8
> 
> * PGP Signed by an unknown key
> 
> On Mon, Jul 18, 2016 at 05:01:50PM -0600, Stephen Warren wrote:
> 
> > From: Stephen Warren <swarren@nvidia.com>
> >
> > Implement a hook to allow boards to save boot-time CPU state for later
> > use. When U-Boot is chain-loaded by another bootloader, CPU registers
> > may contain useful information such as system configuration
> > information. This feature mirrors the equivalent ARMv7 feature.
> >
> > Signed-off-by: Stephen Warren <swarren@nvidia.com>
> 
> Reviewed-by: Tom Rini <trini@konsulko.com>
> 
> --
> Tom
> 
> * Unknown Key
> * 0xD31D7652
--
nvpublic

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8
  2016-07-21 16:16   ` Tom Warren
@ 2016-07-21 19:15     ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2016-07-21 19:15 UTC (permalink / raw)
  To: u-boot

On Thu, Jul 21, 2016 at 04:16:57PM +0000, Tom Warren wrote:

> Tom,
> 
> I'm going to take these 2 in via Tegra if that's OK with you. Expect a PR later today.

Sounds good, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160721/31b9d6e4/attachment.sig>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size
  2016-07-18 23:01 ` [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size Stephen Warren
@ 2016-07-23  2:08   ` Simon Glass
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Glass @ 2016-07-23  2:08 UTC (permalink / raw)
  To: u-boot

On 18 July 2016 at 17:01, Stephen Warren <swarren@wwwdotorg.org> wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> On Tegra186, U-Boot is booted by the binary firmware as if it were a
> Linux kernel. Consequently, a DTB is passed to U-Boot. Cache the address
> of that DTB, and parse the /memory/reg property to determine the actual
> RAM regions that U-Boot and subsequent EL2/EL1 SW may actually use.
>
> Given the binary FW passes a DTB to U-Boot, I anticipate the suggestion
> that U-Boot use that DTB as its control DTB. I don't believe that would
> work well, so I do not plan to put any effort into this. By default the
> FW-supplied DTB is the L4T kernel's DTB, which uses non-upstreamed DT
> bindings. U-Boot aims to use only upstreamed DT bindings, or as close as
> it can get. Replacing this DTB with a DTB using upstream bindings is
> physically quite easy; simply replace the content of one of the GPT
> partitions on the eMMC. However, the binary FW at least partially relies
> on the existence/content of some nodes in the DTB, and that requires the
> DTB to be written according to downstream bindings. Equally, if U-Boot
> continues to use appended DTBs built from its own source tree, as it does
> for all other Tegra platforms, development and deployment is much easier.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>  arch/arm/mach-tegra/board186.c             | 12 ----
>  arch/arm/mach-tegra/tegra186/Makefile      |  2 +
>  arch/arm/mach-tegra/tegra186/nvtboot_ll.S  | 20 +++++++
>  arch/arm/mach-tegra/tegra186/nvtboot_mem.c | 88 ++++++++++++++++++++++++++++++
>  4 files changed, 110 insertions(+), 12 deletions(-)
>  create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_ll.S
>  create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_mem.c

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-07-23  2:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-18 23:01 [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Stephen Warren
2016-07-18 23:01 ` [U-Boot] [PATCH 2/2] ARM: tegra: pick up actual memory size Stephen Warren
2016-07-23  2:08   ` Simon Glass
2016-07-20  2:21 ` [U-Boot] [PATCH 1/2] ARM: Add save_boot_params for ARMv8 Tom Rini
2016-07-21 16:16   ` Tom Warren
2016-07-21 19:15     ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.