123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- From 0e733f5af628210f372585e431504a7024e7b571 Mon Sep 17 00:00:00 2001
- From: Linus Walleij <[email protected]>
- Date: Sun, 4 Dec 2022 20:02:29 +0100
- Subject: [PATCH 26/29] ARM: dts: gemini: wbd111: Use RedBoot partion parser
- This is clearly a RedBoot partitioned device with 0x20000
- sized erase blocks.
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Linus Walleij <[email protected]>
- ---
- --- a/arch/arm/boot/dts/gemini-wbd111.dts
- +++ b/arch/arm/boot/dts/gemini-wbd111.dts
- @@ -86,36 +86,11 @@
- status = "okay";
- /* 8MB of flash */
- reg = <0x30000000 0x00800000>;
- - #address-cells = <1>;
- - #size-cells = <1>;
-
- - partition@0 {
- - label = "RedBoot";
- - reg = <0x00000000 0x00020000>;
- - read-only;
- - };
- - partition@20000 {
- - label = "kernel";
- - reg = <0x00020000 0x00100000>;
- - };
- - partition@120000 {
- - label = "rootfs";
- - reg = <0x00120000 0x006a0000>;
- - };
- - partition@7c0000 {
- - label = "VCTL";
- - reg = <0x007c0000 0x00010000>;
- - read-only;
- - };
- - partition@7d0000 {
- - label = "cfg";
- - reg = <0x007d0000 0x00010000>;
- - read-only;
- - };
- - partition@7e0000 {
- - label = "FIS";
- - reg = <0x007e0000 0x00010000>;
- - read-only;
- + partitions {
- + compatible = "redboot-fis";
- + /* Eraseblock at 0x7e0000 */
- + fis-index-block = <0x3f>;
- };
- };
-
|