From: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
To: Vincent Pelletier <plr.vincent-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: dtc 1.6.0 overlay full-path reference in array produces broken property names
Date: Sun, 31 Jul 2022 22:12:10 +1000 [thread overview]
Message-ID: <YuZxmtlBclJnNYGO@yekko> (raw)
In-Reply-To: <YX+G6PE7fWx/x3QR@yekko>
[-- Attachment #1: Type: text/plain, Size: 3300 bytes --]
On Mon, Nov 01, 2021 at 05:19:20PM +1100, David Gibson wrote:
> On Mon, Sep 27, 2021 at 02:04:56PM +0000, Vincent Pelletier wrote:
> > (please keep me cc'ed in replies)
> >
> > Hello,
> >
> > I suspect this may be a dtc bug, but I am not too familiar with
> > devicetree specs to tell.
> >
> > Here is a simplified example reproducing this issue:
> >
> > (SNIP)
> > /dts-v1/;
> > /plugin/;
> >
> > / {
> > compatible = "foo";
> > };
> >
> > &{/soc/gpio@7e200000} {
> > status = "okay";
> > };
> >
> > &{/soc/spi@7e204000} {
> > cs-gpios = <&{/soc/gpio@7e200000} 8 0x01>;
> > };
> > (SNIP)
> >
> > This code builds fine:
> > $ dtc -I dts -O dtb -o test.dtbo test.dts
> > $
> > But then when disassembling the output, I get:
> > $ dtc -I dtb -O dts test.dtbo
> > <stdout>: ERROR (property_name_chars): /__fixups__:/soc/gpio@7e200000: Bad character '/' in property name
> > ERROR: Input tree has errors, aborting (use -f to force output)
> > And forcing output:
> > $ dtc -I dtb -O dts -f test.dtbo
> > <stdout>: ERROR (property_name_chars): /__fixups__:/soc/gpio@7e200000: Bad character '/' in property name
> > Warning: Input tree has errors, output forced
> > /dts-v1/;
> >
> > / {
> > compatible = "foo";
> >
> > fragment@0 {
> > target-path = "/soc/gpio@7e200000";
> >
> > __overlay__ {
> > status = "okay";
> > };
> > };
> >
> > fragment@1 {
> > target-path = "/soc/spi@7e204000";
> >
> > __overlay__ {
> > cs-gpios = <0xffffffff 0x08 0x01>;
> > };
> > };
> >
> > __fixups__ {
> > /soc/gpio@7e200000 = "/fragment@1/__overlay__:cs-gpios:0";
> > };
> > };
> >
> > Indeed, the node in __fixups__ has an invalid name.
> >
> > I suspect this is uncommon because:
> > - it probably only occurs in overlays and not in self-contained trees,
> > as a self-contained tree would likely produce an internal phandle and
> > never store the full path anywhere.
> > - ...which does not attach to labels but full paths
> > Labels being (probably ?) valid node names, they would avoid the issue.
> > - ...in arrays
> > In a node overlay, the full path ends up as a quoted string, not as a
> > name, so it is safe.
> >
> > Is this a dtc bug ?
>
> I've looked at this again and... not really.
>
> Unfortunately, such a reference can't work given the specification of
> the overlay format. The property name in fixups is the target of the
> reference, which works fine for labels, but will necessarily result in
> an invalid property name for path references.
>
> dtc should, of course, have a less ugly failure mode.
I finally got a chance to tackle this, and just sent out a patch which
should make this case fail on attempting to build the dtbo in the
first place, rather than later when processing the bad output.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2022-07-31 12:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-27 14:04 dtc 1.6.0 overlay full-path reference in array produces broken property names Vincent Pelletier
[not found] ` <20210927140456.4e45f05b-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2021-09-28 11:28 ` Vincent Pelletier
[not found] ` <20210928112859.79b55d5a-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2021-09-29 1:40 ` David Gibson
2021-11-01 6:19 ` David Gibson
2022-07-31 12:12 ` David Gibson [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=YuZxmtlBclJnNYGO@yekko \
--to=david-xt8fgy+axnrb3ne2bgzf6laj5h9x9tb+@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=plr.vincent-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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 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.