* [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger [not found] <0da230c4-1d54-411d-ac99-93c6052c154f@zimbra> @ 2013-02-21 22:29 ` Aaron Sierra 2013-03-08 12:01 ` Artem Bityutskiy 2013-04-05 11:23 ` David Woodhouse 0 siblings, 2 replies; 5+ messages in thread From: Aaron Sierra @ 2013-02-21 22:29 UTC (permalink / raw) To: Huang Shijie, Artem Bityutskiy; +Cc: linux-mtd, Joe Schaack From: Joe Schaack <jschaack@xes-inc.com> Previously, partitions were limited to less than 4 GB in size because the address and size were read as 32-bit values. Add support for 64-bit values to support devices of 4 GB and larger. Signed-off-by: Joe Schaack <jschaack@xes-inc.com> Signed-off-by: Nate Case <ncase@xes-inc.com> Signed-off-by: Aaron Sierra <asierra@xes-inc.com> --- .../devicetree/bindings/mtd/partition.txt | 36 ++++++++++++++++++-- drivers/mtd/ofpart.c | 7 ++-- 2 files changed, 39 insertions(+), 4 deletions(-) diff --git a/Documentation/devicetree/bindings/mtd/partition.txt b/Documentation/devicetree/bindings/mtd/partition.txt index 6e1f61f..8f354bc 100644 --- a/Documentation/devicetree/bindings/mtd/partition.txt +++ b/Documentation/devicetree/bindings/mtd/partition.txt @@ -5,8 +5,12 @@ on platforms which have strong conventions about which portions of a flash are used for what purposes, but which don't use an on-flash partition table such as RedBoot. -#address-cells & #size-cells must both be present in the mtd device and be -equal to 1. +#address-cells & #size-cells must both be present in the mtd device. There are +two valid values for both: +<1>: for partitions that require a single 32-bit cell to represent their + size/address (aka the value is below 4 GB) +<2>: for partitions that require two 32-bit cells to represent their + size/address (aka the value is 4 GB or greater). Required properties: - reg : The partition's offset and size within the mtd bank. @@ -36,3 +40,31 @@ flash@0 { reg = <0x0100000 0x200000>; }; }; + +flash@1 { + #address-cells = <1>; + #size-cells = <2>; + + /* a 4 GB partition */ + partition@0 { + label = "filesystem"; + reg = <0x00000000 0x1 0x00000000>; + }; +}; + +flash@2 { + #address-cells = <2>; + #size-cells = <2>; + + /* an 8 GB partition */ + partition@0 { + label = "filesystem #1"; + reg = <0x0 0x00000000 0x2 0x00000000>; + }; + + /* a 4 GB partition */ + partition@200000000 { + label = "filesystem #2"; + reg = <0x2 0x00000000 0x1 0x00000000>; + }; +}; diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c index 30bd907..553d6d6 100644 --- a/drivers/mtd/ofpart.c +++ b/drivers/mtd/ofpart.c @@ -55,6 +55,7 @@ static int parse_ofpart_partitions(struct mtd_info *master, while ((pp = of_get_next_child(node, pp))) { const __be32 *reg; int len; + int a_cells, s_cells; reg = of_get_property(pp, "reg", &len); if (!reg) { @@ -62,8 +63,10 @@ static int parse_ofpart_partitions(struct mtd_info *master, continue; } - (*pparts)[i].offset = be32_to_cpu(reg[0]); - (*pparts)[i].size = be32_to_cpu(reg[1]); + a_cells = of_n_addr_cells(pp); + s_cells = of_n_size_cells(pp); + (*pparts)[i].offset = of_read_number(reg, a_cells); + (*pparts)[i].size = of_read_number(reg + a_cells, s_cells); partname = of_get_property(pp, "label", &len); if (!partname) -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger 2013-02-21 22:29 ` [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger Aaron Sierra @ 2013-03-08 12:01 ` Artem Bityutskiy 2013-04-05 11:23 ` David Woodhouse 1 sibling, 0 replies; 5+ messages in thread From: Artem Bityutskiy @ 2013-03-08 12:01 UTC (permalink / raw) To: Aaron Sierra; +Cc: Huang Shijie, linux-mtd, Joe Schaack On Thu, 2013-02-21 at 16:29 -0600, Aaron Sierra wrote: > From: Joe Schaack <jschaack@xes-inc.com> > > Previously, partitions were limited to less than 4 GB in size because > the address and size were read as 32-bit values. Add support for 64-bit > values to support devices of 4 GB and larger. > > Signed-off-by: Joe Schaack <jschaack@xes-inc.com> > Signed-off-by: Nate Case <ncase@xes-inc.com> > Signed-off-by: Aaron Sierra <asierra@xes-inc.com> Pushed to l2-mtd.git, thanks! -- Best Regards, Artem Bityutskiy ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger 2013-02-21 22:29 ` [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger Aaron Sierra 2013-03-08 12:01 ` Artem Bityutskiy @ 2013-04-05 11:23 ` David Woodhouse 2013-04-05 14:18 ` Aaron Sierra 1 sibling, 1 reply; 5+ messages in thread From: David Woodhouse @ 2013-04-05 11:23 UTC (permalink / raw) To: Aaron Sierra; +Cc: Huang Shijie, linux-mtd, Joe Schaack, Artem Bityutskiy [-- Attachment #1: Type: text/plain, Size: 841 bytes --] On Thu, 2013-02-21 at 16:29 -0600, Aaron Sierra wrote: > + /* an 8 GB partition */ > + partition@0 { > + label = "filesystem #1"; > + reg = <0x0 0x00000000 0x2 0x00000000>; > + }; > + > + /* a 4 GB partition */ > + partition@200000000 { > + label = "filesystem #2"; > + reg = <0x2 0x00000000 0x1 0x00000000>; > + }; > +}; The comments here don't match the actual definitions. I fixed it to read as follows: flash@2 { #address-cells = <2>; #size-cells = <2>; /* an 8 GB partition */ partition@0 { label = "filesystem #1"; reg = <0x0 0x00000000 0x1 0xdcd65000>; }; /* a 4 GB partition */ partition@200000000 { label = "filesystem #2"; reg = <0x1 0xdcd65000 0x0 0xee6b2800>; }; }; -- dwmw2 [-- Attachment #2: smime.p7s --] [-- Type: application/x-pkcs7-signature, Size: 6171 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger 2013-04-05 11:23 ` David Woodhouse @ 2013-04-05 14:18 ` Aaron Sierra 2013-04-05 14:20 ` David Woodhouse 0 siblings, 1 reply; 5+ messages in thread From: Aaron Sierra @ 2013-04-05 14:18 UTC (permalink / raw) To: David Woodhouse; +Cc: Huang Shijie, linux-mtd, Joe Schaack, Artem Bityutskiy > From: "David Woodhouse" <dwmw2@infradead.org> > Sent: Friday, April 5, 2013 6:23:22 AM > Subject: Re: [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger > > On Thu, 2013-02-21 at 16:29 -0600, Aaron Sierra wrote: > > + /* an 8 GB partition */ > > + partition@0 { > > + label = "filesystem #1"; > > + reg = <0x0 0x00000000 0x2 0x00000000>; > > + }; > > + > > + /* a 4 GB partition */ > > + partition@200000000 { > > + label = "filesystem #2"; > > + reg = <0x2 0x00000000 0x1 0x00000000>; > > + }; > > +}; > > The comments here don't match the actual definitions. I fixed it to > read > as follows: > > flash@2 { > #address-cells = <2>; > #size-cells = <2>; > > /* an 8 GB partition */ > partition@0 { > label = "filesystem #1"; > reg = <0x0 0x00000000 0x1 0xdcd65000>; > }; > > /* a 4 GB partition */ > partition@200000000 { > label = "filesystem #2"; > reg = <0x1 0xdcd65000 0x0 0xee6b2800>; > }; > }; David, Blame this on my vague use of GB. I assume things would have been crystal clear if I'd used GiB. Is this already committed with your change? Your version doesn't seem like a realistic partitioning scheme based on likely device erase block sizes. Is is possible to just update the comments? - /* an 8 GB partition */ + /* an 8 GiB partition */ ... - /* a 4 GB partition */ + /* a 4 GiB partition */ -Aaron ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger 2013-04-05 14:18 ` Aaron Sierra @ 2013-04-05 14:20 ` David Woodhouse 0 siblings, 0 replies; 5+ messages in thread From: David Woodhouse @ 2013-04-05 14:20 UTC (permalink / raw) To: Aaron Sierra; +Cc: Huang Shijie, linux-mtd, Joe Schaack, Artem Bityutskiy [-- Attachment #1: Type: text/plain, Size: 395 bytes --] On Fri, 2013-04-05 at 09:18 -0500, Aaron Sierra wrote: > > Is is possible to just update the comments? > > - /* an 8 GB partition */ > + /* an 8 GiB partition */ > ... > - /* a 4 GB partition */ > + /* a 4 GiB partition */ I have to admit that I lied in my previous email, and what you suggest here is exactly what I actually *did* commit :) -- dwmw2 [-- Attachment #2: smime.p7s --] [-- Type: application/x-pkcs7-signature, Size: 6171 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-05 14:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <0da230c4-1d54-411d-ac99-93c6052c154f@zimbra>
2013-02-21 22:29 ` [PATCH v2] mtd: ofpart: support partitions of 4 GB and larger Aaron Sierra
2013-03-08 12:01 ` Artem Bityutskiy
2013-04-05 11:23 ` David Woodhouse
2013-04-05 14:18 ` Aaron Sierra
2013-04-05 14:20 ` David Woodhouse
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox