From: <ansuelsmth@gmail.com>
To: "'Rafał Miłecki'" <zajec5@gmail.com>,
"'Miquel Raynal'" <miquel.raynal@bootlin.com>,
"'Richard Weinberger'" <richard@nod.at>,
"'Vignesh Raghavendra'" <vigneshr@ti.com>
Cc: "'Boris Brezillon'" <bbrezillon@kernel.org>,
linux-mtd@lists.infradead.org,
"'Rafał Miłecki'" <rafal@milecki.pl>
Subject: R: [PATCH] mtd: parsers: ofpart: limit parsing of deprecated DT syntax
Date: Tue, 2 Mar 2021 20:38:23 +0100 [thread overview]
Message-ID: <000801d70f9b$9c902980$d5b07c80$@gmail.com> (raw)
In-Reply-To: <20210302190012.1255-1-zajec5@gmail.com>
> From: Rafał Miłecki <rafal@milecki.pl>
>
> For backward compatibility ofpart still supports the old syntax like:
> spi-flash@0 {
> compatible = "jedec,spi-nor";
> reg = <0x0>;
>
> partition@0 {
> label = "bootloader";
> reg = <0x0 0x100000>;
> };
> };
> (without "partitions" subnode).
>
> There is no reason however to support nested partitions without a clear
> "compatible" string like:
> partitions {
> compatible = "fixed-partitions";
> #address-cells = <1>;
> #size-cells = <1>;
>
> partition@0 {
> label = "bootloader";
> reg = <0x0 0x100000>;
>
> partition@0 {
> label = "config";
> reg = <0x80000 0x80000>;
> };
> };
> };
> (we never officially supported or documented that).
>
> Make sure ofpart doesn't attempt to parse above.
>
I have one question.
From what I can see in the new code, in this example "something"
partition won't be parsed with the fixed-partition parser. Correct?
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "bootloader";
reg = <0x0 0x100000>;
compatible = "random-parser";
partition@0 {
label = "something";
reg = <0x0 0x100>;
};
};
};
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
next prev parent reply other threads:[~2021-03-03 15:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-02 19:00 [PATCH] mtd: parsers: ofpart: limit parsing of deprecated DT syntax Rafał Miłecki
2021-03-02 19:38 ` ansuelsmth [this message]
2021-03-02 20:23 ` R: " Rafał Miłecki
2021-03-02 20:27 ` Rafał Miłecki
2021-03-11 11:42 ` Miquel Raynal
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='000801d70f9b$9c902980$d5b07c80$@gmail.com' \
--to=ansuelsmth@gmail.com \
--cc=bbrezillon@kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=miquel.raynal@bootlin.com \
--cc=rafal@milecki.pl \
--cc=richard@nod.at \
--cc=vigneshr@ti.com \
--cc=zajec5@gmail.com \
/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.