From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= Subject: [PATCH RESEND 0/4] mtd: extend support for "fixed-partitions" Date: Thu, 20 Apr 2017 15:57:27 +0200 Message-ID: <20170420135731.13272-1-zajec5@gmail.com> References: <20170420135431.12585-1-zajec5@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <20170420135431.12585-1-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: David Woodhouse , Brian Norris , Boris Brezillon , Marek Vasut , Richard Weinberger , Cyrille Pitchen Cc: Rob Herring , Mark Rutland , Frank Rowand , Linus Walleij , linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= List-Id: devicetree@vger.kernel.org From: Rafał Miłecki 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@0 { label = "cfe"; reg = <0x0000000 0x40000>; read-only; }; firmware@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 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html