[PATCH RESEND 0/4] mtd: extend support for "fixed-partitions"
Rafał Miłecki
zajec5 at gmail.com
Thu Apr 20 06:57:27 PDT 2017
From: Rafał Miłecki <rafal at milecki.pl>
RESENDING with DT guys included, sorry for the mistake.
My recent work on adding wide support for linux,part-probe was reviewed and
kind of Nack-ed, but fortunately I was pointed to the old (!) patchset from
Brian doing similar thing in a cleaner way.
This patchset picks the important changes from Brian, cleans them and rebases.
At this point this simply adds a full support for "fixed-partitions" binding.
It should also make adding new bindings easier in the future.
I've successfully tested this with bcm47xxsflash driver on Tenda AC9 device. I
used following DT node to get "ofpart" driver parse & register my partitions.
&bcma-sflash {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition at 0 {
label = "cfe";
reg = <0x0000000 0x40000>;
read-only;
};
firmware at 40000 {
label = "firmware";
reg = <0x40000 0x7f0000>;
};
};
};
Brian: I took your patches so I preserved your Signed-off-by, but please review
these changes to make sure I didn't do anything nasty there.
Brian Norris (3):
dt-bindings: mtd: make partitions doc a bit more generic
mtd: partitions: factor out code calling parser
mtd: partitions: add of_match_table parser matching
Rafał Miłecki (1):
mtd: ofpart: add of_match_table with "fixed-partitions"
.../devicetree/bindings/mtd/partition.txt | 28 ++++++--
drivers/mtd/mtdpart.c | 80 +++++++++++++++++++---
drivers/mtd/ofpart.c | 7 ++
include/linux/mtd/partitions.h | 1 +
4 files changed, 101 insertions(+), 15 deletions(-)
--
2.11.0
More information about the linux-mtd
mailing list