From: Thierry Reding <thierry.reding@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 19/19] ARM: tegra: Import cbootargs value from cboot DTB
Date: Thu, 21 Mar 2019 19:01:18 +0100 [thread overview]
Message-ID: <20190321180118.26475-20-thierry.reding@gmail.com> (raw)
In-Reply-To: <20190321180118.26475-1-thierry.reding@gmail.com>
From: Thierry Reding <treding@nvidia.com>
Read the boot arguments passed by cboot via the /chosen/bootargs
property and store it in the cbootargs environment variable.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/mach-tegra/cboot.c | 47 +++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/arch/arm/mach-tegra/cboot.c b/arch/arm/mach-tegra/cboot.c
index 9735380bda59..8bfcbcdc6e6d 100644
--- a/arch/arm/mach-tegra/cboot.c
+++ b/arch/arm/mach-tegra/cboot.c
@@ -8,7 +8,9 @@
#include <fdt_support.h>
#include <fdtdec.h>
#include <stdlib.h>
+#include <string.h>
+#include <linux/ctype.h>
#include <linux/sizes.h>
#include <asm/arch/tegra.h>
@@ -536,10 +538,49 @@ out:
return err;
}
+static char *strip(const char *ptr)
+{
+ const char *end;
+
+ while (*ptr && isblank(*ptr))
+ ptr++;
+
+ /* empty string */
+ if (*ptr == '\0')
+ return strdup(ptr);
+
+ end = ptr;
+
+ while (end[1])
+ end++;
+
+ while (isblank(*end))
+ end--;
+
+ return strndup(ptr, end - ptr + 1);
+}
+
+static char *cboot_get_bootargs(const void *fdt)
+{
+ const char *args;
+ int offset, len;
+
+ offset = fdt_path_offset(fdt, "/chosen");
+ if (offset < 0)
+ return NULL;
+
+ args = fdt_getprop(fdt, offset, "bootargs", &len);
+ if (!args)
+ return NULL;
+
+ return strip(args);
+}
+
int cboot_late_init(void)
{
const void *fdt = (const void *)cboot_boot_x0;
uint8_t mac[ETH_ALEN];
+ char *bootargs;
int err;
set_calculated_env_vars();
@@ -554,5 +595,11 @@ int cboot_late_init(void)
if (!err)
eth_env_set_enetaddr("ethaddr", mac);
+ bootargs = cboot_get_bootargs(fdt);
+ if (bootargs) {
+ env_set("cbootargs", bootargs);
+ free(bootargs);
+ }
+
return 0;
}
--
2.21.0
prev parent reply other threads:[~2019-03-21 18:01 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-21 18:00 [U-Boot] [PATCH v3 00/19] ARM: tegra: Miscellaneous improvements Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 01/19] ARM: tegra: Use common header for PMU declarations Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 02/19] ARM: tegra: Guard clock code with a Kconfig symbol Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 03/19] ARM: tegra: Guard GP pad control " Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 04/19] ARM: tegra: Guard memory controller " Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 05/19] ARM: tegra: Guard pin " Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 06/19] ARM: tegra: Guard powergate " Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 07/19] ARM: tegra: Fix save_boot_params() prototype Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 08/19] ARM: tegra: Allow boards to override boot target devices Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 09/19] ARM: tegra: Support TZ-only access to PMC Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 10/19] ARM: tegra: Workaround UDC boot issues only if necessary Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 11/19] ARM: tegra: Restore DRAM bank count Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 12/19] ARM: tegra: Unify Tegra186 builds Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 13/19] ARM: tegra: Implement cboot_save_boot_params() in C Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 14/19] ARM: tegra: Implement cboot_get_ethaddr() Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 15/19] ARM: tegra: Enable position independent build for 64-bit Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 16/19] p2371-2180: Pass Ethernet MAC to the kernel Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 17/19] p2771-0000: " Thierry Reding
2019-03-21 18:01 ` [U-Boot] [PATCH v3 18/19] lib: Implement strndup() Thierry Reding
2019-03-21 18:01 ` Thierry Reding [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190321180118.26475-20-thierry.reding@gmail.com \
--to=thierry.reding@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox