From: takahiro.akashi@linaro.org (AKASHI Takahiro)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 2/4] kexec: Add common device tree routines
Date: Fri, 22 Jul 2016 16:19:25 +0900 [thread overview]
Message-ID: <20160722071924.GQ20774@linaro.org> (raw)
In-Reply-To: <8ed220ee82b4819a9107a6ce0f020497d1688c7b.1468970114.git.geoff@infradead.org>
On Tue, Jul 19, 2016 at 11:28:13PM +0000, Geoff Levand wrote:
> Common device tree routines that can be shared between all arches
> that have device tree support.
>
> Signed-off-by: Geoff Levand <geoff@infradead.org>
> ---
> kexec/Makefile | 4 ++
> kexec/dt-ops.c | 139 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> kexec/dt-ops.h | 13 ++++++
> 3 files changed, 156 insertions(+)
> create mode 100644 kexec/dt-ops.c
> create mode 100644 kexec/dt-ops.h
>
> diff --git a/kexec/Makefile b/kexec/Makefile
> index e2aee84..cc3f08b 100644
> --- a/kexec/Makefile
> +++ b/kexec/Makefile
> @@ -73,6 +73,10 @@ dist += kexec/mem_regions.c kexec/mem_regions.h
> $(ARCH)_MEM_REGIONS =
> KEXEC_SRCS += $($(ARCH)_MEM_REGIONS)
>
> +dist += kexec/dt-ops.c kexec/dt-ops.h
> +$(ARCH)_DT_OPS =
> +KEXEC_SRCS += $($(ARCH)_DT_OPS)
> +
> include $(srcdir)/kexec/arch/alpha/Makefile
> include $(srcdir)/kexec/arch/arm/Makefile
> include $(srcdir)/kexec/arch/i386/Makefile
> diff --git a/kexec/dt-ops.c b/kexec/dt-ops.c
> new file mode 100644
> index 0000000..060776a
> --- /dev/null
> +++ b/kexec/dt-ops.c
> @@ -0,0 +1,139 @@
> +#include <assert.h>
> +#include <errno.h>
> +#include <inttypes.h>
> +#include <libfdt.h>
> +#include <stdio.h>
> +#include <stdlib.h>
> +
> +#include "kexec.h"
> +#include "dt-ops.h"
> +
> +static const char n_chosen[] = "/chosen";
> +
> +static const char p_bootargs[] = "bootargs";
> +static const char p_initrd_start[] = "linux,initrd-start";
> +static const char p_initrd_end[] = "linux,initrd-end";
> +
> +int dtb_set_initrd(char **dtb, off_t *dtb_size, off_t start, off_t end)
> +{
> + int result;
> + uint64_t value;
> +
> + dbgprintf("%s: start %jd, end %jd, size %jd (%jd KiB)\n",
> + __func__, (intmax_t)start, (intmax_t)end,
> + (intmax_t)(end - start),
> + (intmax_t)(end - start) / 1024);
> +
> + value = cpu_to_fdt64(start);
> +
> + result = dtb_set_property(dtb, dtb_size, n_chosen, p_initrd_start,
> + &value, sizeof(value));
> +
> + if (result)
> + return result;
> +
> + value = cpu_to_fdt64(end);
> +
> + result = dtb_set_property(dtb, dtb_size, n_chosen, p_initrd_end,
> + &value, sizeof(value));
> +
> + if (result) {
> + dtb_delete_property(*dtb, n_chosen, p_initrd_start);
> + return result;
> + }
> +
> + return 0;
> +}
> +
> +int dtb_set_bootargs(char **dtb, off_t *dtb_size, const char *command_line)
> +{
> + return dtb_set_property(dtb, dtb_size, n_chosen, p_bootargs,
> + command_line, strlen(command_line) + 1);
> +}
> +
> +int dtb_set_property(char **dtb, off_t *dtb_size, const char *node,
> + const char *prop, const void *value, int value_len)
> +{
> + int result;
> + int nodeoffset;
> + void *new_dtb;
> + int new_size;
> +
> + value_len = FDT_TAGALIGN(value_len);
> +
> + new_size = FDT_TAGALIGN(*dtb_size + fdt_node_len(node)
> + + fdt_prop_len(prop, value_len));
As James pointed out before, this will increase the size of dtb
if kexec is executed repeatedly.
> + new_dtb = malloc(new_size);
> +
> + if (!new_dtb) {
> + dbgprintf("%s: malloc failed\n", __func__);
> + return -ENOMEM;
> + }
> +
> + result = fdt_open_into(*dtb, new_dtb, new_size);
> +
> + if (result) {
> + dbgprintf("%s: fdt_open_into failed: %s\n", __func__,
> + fdt_strerror(result));
> + goto on_error;
> + }
> +
> + nodeoffset = fdt_path_offset(new_dtb, node);
> +
> + if (nodeoffset == -FDT_ERR_NOTFOUND) {
> + result = fdt_add_subnode(new_dtb, nodeoffset, node);
> +
> + if (result) {
> + dbgprintf("%s: fdt_add_subnode failed: %s\n", __func__,
> + fdt_strerror(result));
> + goto on_error;
> + }
> + } else if (nodeoffset < 0) {
> + dbgprintf("%s: fdt_path_offset failed: %s\n", __func__,
> + fdt_strerror(nodeoffset));
> + goto on_error;
> + }
> +
> + result = fdt_setprop(new_dtb, nodeoffset, prop, value, value_len);
> +
> + if (result) {
> + dbgprintf("%s: fdt_setprop failed: %s\n", __func__,
> + fdt_strerror(result));
> + goto on_error;
> + }
> +
> + /*
> + * Can't call free on dtb since dtb may have been mmaped by
> + * slurp_file().
> + */
> +
> + *dtb = new_dtb;
> + *dtb_size = new_size;
So you might better call fdt_pack(), which will set "totalsize" of
the blob to an appropriate value.
Thanks,
-Takahiro AKASHI
> + return 0;
> +
> +on_error:
> + free(new_dtb);
> + return result;
> +}
> +
> +int dtb_delete_property(char *dtb, const char *node, const char *prop)
> +{
> + int result;
> + int nodeoffset = fdt_path_offset(dtb, node);
> +
> + if (nodeoffset < 0) {
> + dbgprintf("%s: fdt_path_offset failed: %s\n", __func__,
> + fdt_strerror(nodeoffset));
> + return nodeoffset;
> + }
> +
> + result = fdt_delprop(dtb, nodeoffset, prop);
> +
> + if (result)
> + dbgprintf("%s: fdt_delprop failed: %s\n", __func__,
> + fdt_strerror(nodeoffset));
> +
> + return result;
> +}
> diff --git a/kexec/dt-ops.h b/kexec/dt-ops.h
> new file mode 100644
> index 0000000..e70d15d
> --- /dev/null
> +++ b/kexec/dt-ops.h
> @@ -0,0 +1,13 @@
> +#if !defined(KEXEC_DT_OPS_H)
> +#define KEXEC_DT_OPS_H
> +
> +#include <sys/types.h>
> +
> +int dtb_set_initrd(char **dtb, off_t *dtb_size, off_t start, off_t end);
> +int dtb_set_bootargs(char **dtb, off_t *dtb_size, const char *command_line);
> +int dtb_set_property(char **dtb, off_t *dtb_size, const char *node,
> + const char *prop, const void *value, int value_len);
> +
> +int dtb_delete_property(char *dtb, const char *node, const char *prop);
> +
> +#endif
> --
> 2.5.0
>
>
next prev parent reply other threads:[~2016-07-22 7:19 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-19 23:28 [PATCH v1 0/4] arm64 kexec-tools patches Geoff Levand
2016-07-19 23:28 ` [PATCH v1 3/4] arm64: Add arm64 kexec support Geoff Levand
2016-07-20 15:39 ` Mark Rutland
2016-07-20 19:19 ` Geoff Levand
2016-07-21 10:31 ` Mark Rutland
2016-07-21 10:50 ` Robin Murphy
2016-07-21 21:49 ` Geoff Levand
2016-07-22 4:08 ` Pratyush Anand
2016-07-22 5:33 ` AKASHI Takahiro
2016-07-22 9:54 ` Mark Rutland
2016-07-22 10:03 ` Robin Murphy
2016-07-22 13:56 ` Pratyush Anand
2016-07-22 17:59 ` Robin Murphy
2016-07-25 21:56 ` Geoff Levand
2016-07-20 17:53 ` Pratyush Anand
2016-07-20 20:33 ` Geoff Levand
2016-07-20 20:54 ` [PATCH v1.2 " Geoff Levand
2016-07-22 7:12 ` AKASHI Takahiro
2016-07-26 0:37 ` Geoff Levand
2016-07-25 14:28 ` Ruslan Bilovol
2016-07-25 20:50 ` Geoff Levand
2016-07-26 1:36 ` Ruslan Bilovol
2016-07-26 8:16 ` AKASHI Takahiro
2016-07-26 21:26 ` Ruslan Bilovol
2016-07-26 21:54 ` Geoff Levand
2016-07-19 23:28 ` [PATCH v1 2/4] kexec: Add common device tree routines Geoff Levand
2016-07-22 7:19 ` AKASHI Takahiro [this message]
2016-07-27 18:11 ` Geoff Levand
2016-07-19 23:28 ` [PATCH v1 1/4] kexec: (bugfix) calc correct end address of memory ranges in device tree Geoff Levand
2016-07-27 22:45 ` Thiago Jung Bauermann
2016-07-27 23:23 ` Russell King - ARM Linux
2016-07-28 23:54 ` Thiago Jung Bauermann
2016-07-29 8:27 ` Russell King - ARM Linux
2016-07-29 17:12 ` Geoff Levand
2016-07-29 17:23 ` Russell King - ARM Linux
2016-08-01 4:52 ` AKASHI Takahiro
2016-09-06 0:29 ` Memory range end be inclusive or exclusive? " AKASHI Takahiro
2016-10-31 8:50 ` AKASHI Takahiro
2016-11-07 8:17 ` Simon Horman
2016-07-19 23:28 ` [PATCH v1 4/4] arm64: Add support for binary image files Geoff Levand
2016-07-20 4:30 ` [PATCH v1 0/4] arm64 kexec-tools patches AKASHI Takahiro
2016-07-26 23:05 ` Simon Horman
2016-07-27 5:57 ` AKASHI Takahiro
2016-07-28 18:09 ` Geoff Levand
2016-07-29 0:31 ` Simon Horman
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=20160722071924.GQ20774@linaro.org \
--to=takahiro.akashi@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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;
as well as URLs for NNTP newsgroup(s).