Message ID | 1444915191-28350-1-git-send-email-linus.walleij@linaro.org |
---|---|
State | New |
Headers | show |
+ others Hi Linus, On Thu, Oct 15, 2015 at 03:19:51PM +0200, Linus Walleij wrote: > The Linux code in drivers/mtd/maps/physmap_of.c will optionally > look for this binding for hints on a partition type to look for > in the MTD. It was added in commit 9d5da3a9b849 > "mtd: extend physmap_of to let the device tree specify the parition probe" > but no corresponding device tree binding was added. Fix this. > > Cc: devicetree@vger.kernel.org > Cc: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> > Cc: Liviu Dudau <Liviu.Dudau@arm.com> > Reported-by: Liviu Dudau <Liviu.Dudau@arm.com> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Are you trying to use this binding, or is this just purely a mechanical documentation issue? I ask, because it seems that binding never really got reviewed at all, and others have recently tried to extend support for it generically [1], but a few objections came up [2][3]. Unfortunately I/we dropped the ball a bit on that thread, but we'd ideally like to address those concerns in a new binding that is supported for all MTDs, and deprecate the old one. The new one would probably not directly use the parser name as used by Linux, but define some list of compatible strings that fit DT conventions better. Also, I don't want people including things like "cmdlinepart" in DT, but it should be available as an override if necessary. IOW, DT shouldn't supersede the kernel command line. That's not to say we can't document the old one, but I'm curious if there are real users. I'd also like to encourage new users to avoid the old one if we can make that feasible. > --- > Documentation/devicetree/bindings/mtd/mtd-physmap.txt | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/Documentation/devicetree/bindings/mtd/mtd-physmap.txt b/Documentation/devicetree/bindings/mtd/mtd-physmap.txt > index 4a0a48bf4ecb..0dee084651da 100644 > --- a/Documentation/devicetree/bindings/mtd/mtd-physmap.txt > +++ b/Documentation/devicetree/bindings/mtd/mtd-physmap.txt > @@ -26,6 +26,9 @@ file systems on embedded devices. > - linux,mtd-name: allow to specify the mtd name for retro capability with > physmap-flash drivers as boot loader pass the mtd partition via the old > device name physmap-flash. > + - linux,part-probe: a flash partition type to look for, using the > + Linux-internal partition naming scheme, e.g. "afs" for the ARM > + Flash footers. IIUC, this property actually supports a list of parsers, not just a single partition type. Also, if we're really going to support this, we should list exactly what strings we support. And that's one of the problems with the existing binding; it supports any old string Linux supports, which doesn't match how we typically want to add bindings (i.e., via proposal + review). > - use-advanced-sector-protection: boolean to enable support for the > advanced sector protection (Spansion: PPB - Persistent Protection > Bits) locking. Brian [1] http://lists.infradead.org/pipermail/linux-mtd/2015-May/059226.html [2] http://lists.infradead.org/pipermail/linux-mtd/2015-May/059276.html [3] Tail end of Arnd's comments here: http://thread.gmane.org/gmane.linux.drivers.devicetree/122479/focus=122788 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, Oct 15, 2015 at 09:22:10AM -0700, Brian Norris wrote: > Are you trying to use this binding, or is this just purely a mechanical > documentation issue? I ask, because it seems that binding never really > got reviewed at all, and others have recently tried to extend > support I wrote it before ARM started down the DT direction and all these formalities were developed. > That's not to say we can't document the old one, but I'm curious if > there are real users. I'd also like to encourage new users to avoid the > old one if we can make that feasible. We continue to use it here, there is just no way to autodetect flash partition layouts. I'm not fussed about having to change to something else in future. The reason the original patch exposed the cmdline parser is because that is how the internal mechanisms work - but realistically, the cmdline parser is a hack to get around the lack of DT partition description. If the DT can describe the partitions it should supersede and obsolete the old command line hack. IMHO > Also, if we're really going to support this, we should list exactly what > strings we support. And that's one of the problems with the existing > binding; it supports any old string Linux supports, which doesn't match > how we typically want to add bindings (i.e., via proposal + review). That is why it is prefixed with linux, the review of the part parser name is the responsibility of the MTD crew, not the DT folks. bcm47xxpart seems like a terrible name for a partition scheme. Really, almost any scheme can be used on any SOC, naming a partition parser after a SOC family makes very little sense to me.. Jason -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Jason, On Thu, Oct 15, 2015 at 11:04:28AM -0600, Jason Gunthorpe wrote: > On Thu, Oct 15, 2015 at 09:22:10AM -0700, Brian Norris wrote: > > > Are you trying to use this binding, or is this just purely a mechanical > > documentation issue? I ask, because it seems that binding never really > > got reviewed at all, and others have recently tried to extend > > support > > I wrote it before ARM started down the DT direction and all these > formalities were developed. > > > That's not to say we can't document the old one, but I'm curious if > > there are real users. I'd also like to encourage new users to avoid the > > old one if we can make that feasible. > > We continue to use it here, Good to know. > there is just no way to autodetect flash > partition layouts. Right. It'd be lovely if things were more standardized, and we could just build all parsers in for all MTDs, like how block devices do it, but sadly that's probably not feasible, given the quirks of various parsers, and how they often require scanning a large portion of the device :( > I'm not fussed about having to change to something > else in future. OK, good to know. Recent developments have put maintainers in a tough position sometimes, since as soon as there's a DT binding used in the wild, some people like to claim that it is ABI and must never change. This ties the hands when wanting to deprecate/improve/replace features. In reality, there are few (my guess: a negligible near-zero-percent) DT users that actually have DTs locked into some kind of firmware in a way that they (1) can never update their DT and (2) expect to be able to run mainline kernels, so this all just becomes a lot of fuss over nothing. > The reason the original patch exposed the cmdline parser is because > that is how the internal mechanisms work Right. And that's why it's best these days not to directly expose internal mechanisms via DT. > - but realistically, the > cmdline parser is a hack to get around the lack of DT partition > description. If the DT can describe the partitions it should supersede > and obsolete the old command line hack. IMHO Hmm, I don't know. I wouldn't expect people should really be using cmdlineparts as a production solution, but I'd consider it more of a debugging/development option -- if I want to override the DT (which is sometimes a bit harder to change) or the on-flash layout (e.g., RedBoot), then I can fiddle with the command line. So I wouldn't quite qualify it as a hack (though many might use it in a hacky way) nor would I suggest that the DT should override it. > > Also, if we're really going to support this, we should list exactly what > > strings we support. And that's one of the problems with the existing > > binding; it supports any old string Linux supports, which doesn't match > > how we typically want to add bindings (i.e., via proposal + review). > > That is why it is prefixed with linux, the review of the part parser name is > the responsibility of the MTD crew, not the DT folks. OK. That works for now. But I don't want to extend this binding to any other drivers, if I can help it. And I don't want to encourage it (lest it *really* becomes ABI). I don't think it would be too hard to fix this to not be so Linux-specific. I think any partition layouts that people would want to specify in DT can be reasonably well-defined to not consider them Linux-specific. Some probably didn't even have a Linux target in mind when they were developed. We'd just need to give them better names and a short description and/or pointers to documentation. e.g. [1][2]. > bcm47xxpart seems like a terrible name for a partition scheme. Really, > almost any scheme can be used on any SOC, naming a partition parser > after a SOC family makes very little sense to me.. I believe it was defined purely by Broadcom, for use with their firmwares mostly seen on that SoC family. And in the spirit of DT naming, IP often gets named after the first SoC that implements it, even if later revs aren't the same SoC (or SoC family) but are still compatible. So I can see the name being reasonable, even if not perfect. Any better nominations for names? Brian [1] http://infocenter.arm.com/help/topic/com.arm.doc.dui0102g/DUI0102F_afs1_4_rg.pdf [2] https://sourceware.org/redboot/ -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, Oct 15, 2015 at 10:47:09AM -0700, Brian Norris wrote: > Hmm, I don't know. I wouldn't expect people should really be using > cmdlineparts as a production solution, but I'd consider it more of a > debugging/development option -- if I want to override the DT (which is > sometimes a bit harder to change) or the on-flash layout (e.g., > RedBoot), then I can fiddle with the command line. We don't have cmdline overrides for very much (if any?) of DT. The DT is supposed to describe the hardware/boot environment, if overriding the partition layout is really common, then is the DT binding really describing the hardware at all? The partition layout is already very border line to support in DT, it is really very close to a software configuration which is strongly discouraged from DT files. I justify it as the boot loader communicating the partition scheme it understands to the OS, so the OS can have a hope of setting up the flash in a way the bootloader understands. I've never used the cmdline option, so maybe I don't see the use case, but it seems like a really weird desire to change the partitioning away from what the bootloader supports. > Any better nominations for names? bcrm-part-table-43 ? Jason -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Documentation/devicetree/bindings/mtd/mtd-physmap.txt b/Documentation/devicetree/bindings/mtd/mtd-physmap.txt index 4a0a48bf4ecb..0dee084651da 100644 --- a/Documentation/devicetree/bindings/mtd/mtd-physmap.txt +++ b/Documentation/devicetree/bindings/mtd/mtd-physmap.txt @@ -26,6 +26,9 @@ file systems on embedded devices. - linux,mtd-name: allow to specify the mtd name for retro capability with physmap-flash drivers as boot loader pass the mtd partition via the old device name physmap-flash. + - linux,part-probe: a flash partition type to look for, using the + Linux-internal partition naming scheme, e.g. "afs" for the ARM + Flash footers. - use-advanced-sector-protection: boolean to enable support for the advanced sector protection (Spansion: PPB - Persistent Protection Bits) locking.
The Linux code in drivers/mtd/maps/physmap_of.c will optionally look for this binding for hints on a partition type to look for in the MTD. It was added in commit 9d5da3a9b849 "mtd: extend physmap_of to let the device tree specify the parition probe" but no corresponding device tree binding was added. Fix this. Cc: devicetree@vger.kernel.org Cc: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> Cc: Liviu Dudau <Liviu.Dudau@arm.com> Reported-by: Liviu Dudau <Liviu.Dudau@arm.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> --- Documentation/devicetree/bindings/mtd/mtd-physmap.txt | 3 +++ 1 file changed, 3 insertions(+)