From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 7/9] libfdt: Add overlay application function
Date: Mon, 13 Jun 2016 11:51:50 +0200 [thread overview]
Message-ID: <20160613095150.GG4481@lukather> (raw)
In-Reply-To: <34997AD3-B621-4823-920E-22E4A6F0E0D1@konsulko.com>
Hi Pantelis,
On Fri, Jun 10, 2016 at 05:28:11PM +0300, Pantelis Antoniou wrote:
> Hi Maxime,
>
> > On May 27, 2016, at 12:13 , Maxime Ripard <maxime.ripard@free-electrons.com> wrote:
> >
> > The device tree overlays are a good way to deal with user-modifyable
> > boards or boards with some kind of an expansion mechanism where we can
> > easily plug new board in (like the BBB, the Raspberry Pi or the CHIP).
> >
> > Add a new function to merge overlays with a base device tree.
> >
> > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> > ---
> > include/libfdt.h | 30 ++++
> > lib/libfdt/Makefile | 2 +-
> > lib/libfdt/fdt_overlay.c | 414 +++++++++++++++++++++++++++++++++++++++++++++++
> > 3 files changed, 445 insertions(+), 1 deletion(-)
> > create mode 100644 lib/libfdt/fdt_overlay.c
> >
> > diff --git a/include/libfdt.h b/include/libfdt.h
> > index 1e01b2c7ebdf..783067e841a1 100644
> > --- a/include/libfdt.h
> > +++ b/include/libfdt.h
> > @@ -1698,6 +1698,36 @@ int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
> > */
> > int fdt_del_node(void *fdt, int nodeoffset);
> >
> > +/**
> > + * fdt_overlay_apply - Applies a DT overlay on a base DT
> > + * @fdt: pointer to the base device tree blob
> > + * @fdto: pointer to the device tree overlay blob
> > + *
> > + * fdt_overlay_apply() will apply the given device tree overlay on the
> > + * given base device tree.
> > + *
> > + * Expect the base device tree to be modified, even if the function
> > + * returns an error.
> > + *
>
> If the base tree has been modified on an error it is unsafe to use it
> for booting. A valid strategy would be to scribble over the DT magic
> number so that that blob is invalidated.
>
> What are the other people?s opinion on this?
That would probably be safer yes, I'll change that.
> > +static int fdt_overlay_get_target(const void *fdt, const void *fdto,
> > + int fragment)
> > +{
> > + uint32_t phandle;
> > + const char *path;
> > +
> > + /* Try first to do a phandle based lookup */
> > + phandle = fdt_overlay_get_target_phandle(fdto, fragment);
> > + if (phandle)
> > + return fdt_node_offset_by_phandle(fdt, phandle);
> > +
> > + /* And then a path based lookup */
> > + path = fdt_getprop(fdto, fragment, "target-path", NULL);
> > + if (!path)
> > + return -FDT_ERR_NOTFOUND;
> > +
> > + return fdt_path_offset(fdt, path);
> > +}
> > +
>
> Those targets are fine; beware there are patches with more target options.
Ack.
> > +static int fdt_overlay_merge(void *dt, void *dto)
> > +{
> > + int root, fragment;
> > +
> > + root = fdt_path_offset(dto, "/");
> > + if (root < 0)
> > + return root;
> > +
> > + fdt_for_each_subnode(dto, fragment, root) {
> > + const char *name = fdt_get_name(dto, fragment, NULL);
> > + uint32_t target;
> > + int overlay;
> > + int ret;
> > +
> > + if (strncmp(name, "fragment", 8))
> > + continue;
> > +
>
> This is incorrect. The use of ?fragment? is a convention only.
> The real test whether the node is an overlay fragment is that
> it contains a target property.
>
> > + target = fdt_overlay_get_target(dt, dto, fragment);
> > + if (target < 0)
> > + return target;
> > +
>
> So you could do ?if (target < 0) continue;? or handle a more complex error code.
Ok, will change.
> I would caution against the liberal use of malloc in libfdt. We?re
> possibly running in a constrained environment; a custom extents
> based (non freeing) allocator should be better.
David had the same comments, and I will drop the mallocs entirely.
> We need some figures about memory consumption when this is enabled,
> and a CONFIG option to disable it.
The current code (before and after that patch) adds 18kB to a
sandbox_defconfig.
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160613/2e1c13a3/attachment.sig>
next prev parent reply other threads:[~2016-06-13 9:51 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-27 9:13 [U-Boot] [PATCH v2 0/9] cmd: fdt: Add device tree overlays support Maxime Ripard
2016-05-27 9:13 ` [U-Boot] [PATCH v2 1/9] cmd: fdt: Narrow the check for fdt addr Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 13:55 ` Pantelis Antoniou
2016-05-27 9:13 ` [U-Boot] [PATCH v2 2/9] scripts: Makefile.lib: Sanitize DTB names Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 13:59 ` Pantelis Antoniou
2016-05-27 9:13 ` [U-Boot] [PATCH v2 3/9] vsprintf: Include stdarg for va_list Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 14:00 ` Pantelis Antoniou
2016-05-27 9:13 ` [U-Boot] [PATCH v2 4/9] libfdt: Add new headers and defines Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 14:03 ` Pantelis Antoniou
2016-06-11 10:30 ` David Gibson
2016-06-13 9:28 ` Maxime Ripard
2016-06-16 0:39 ` Simon Glass
2016-05-27 9:13 ` [U-Boot] [PATCH v2 5/9] libfdt: Add iterator over properties Maxime Ripard
2016-06-10 2:51 ` Stefan Agner
2016-06-10 14:04 ` Pantelis Antoniou
2016-06-13 9:35 ` Maxime Ripard
2016-05-27 9:13 ` [U-Boot] [PATCH v2 6/9] libfdt: Add max phandle retrieval function Maxime Ripard
2016-06-10 2:55 ` Stefan Agner
2016-06-10 15:13 ` Pantelis Antoniou
2016-05-27 9:13 ` [U-Boot] [PATCH v2 7/9] libfdt: Add overlay application function Maxime Ripard
2016-06-10 3:38 ` Stefan Agner
2016-06-10 14:28 ` Pantelis Antoniou
2016-06-13 9:51 ` Maxime Ripard [this message]
2016-06-14 0:25 ` David Gibson
2016-06-14 9:22 ` Pantelis Antoniou
2016-06-15 3:14 ` David Gibson
2016-06-15 9:34 ` Pantelis Antoniou
2016-06-15 10:19 ` David Gibson
2016-06-15 10:23 ` Pantelis Antoniou
2016-06-15 14:49 ` Warner Losh
2016-05-27 9:13 ` [U-Boot] [PATCH v2 8/9] cmd: fdt: add fdt overlay application subcommand Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 3:45 ` Stefan Agner
2016-06-10 13:56 ` Pantelis Antoniou
2016-05-27 9:13 ` [U-Boot] [PATCH v2 9/9] tests: Introduce DT overlay tests Maxime Ripard
2016-06-10 0:34 ` Simon Glass
2016-06-10 15:20 ` Pantelis Antoniou
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=20160613095150.GG4481@lukather \
--to=maxime.ripard@free-electrons.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