kernel: backport mtd dynamic partition patch
authorChristian Marangi <ansuelsmth@gmail.com>
Wed, 29 Jun 2022 15:34:51 +0000 (17:34 +0200)
committerRafał Miłecki <rafal@milecki.pl>
Fri, 8 Jul 2022 08:19:58 +0000 (10:19 +0200)
Backport upstream solution that permits to declare nvmem cells with
dynamic partition defined by special parser.

This provide an OF node for NVMEM and connect it to the defined dynamic
partition.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
target/linux/ath79/patches-5.10/401-mtd-nor-support-mtd-name-from-device-tree.patch
target/linux/ath79/patches-5.15/401-mtd-nor-support-mtd-name-from-device-tree.patch
target/linux/generic/backport-5.10/413-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch [new file with mode: 0644]
target/linux/generic/backport-5.15/402-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch [new file with mode: 0644]
target/linux/generic/hack-5.10/402-mtd-blktrans-call-add-disks-after-mtd-device.patch
target/linux/generic/hack-5.10/420-mtd-set-rootfs-to-be-root-dev.patch
target/linux/generic/hack-5.15/402-mtd-blktrans-call-add-disks-after-mtd-device.patch
target/linux/generic/hack-5.15/420-mtd-set-rootfs-to-be-root-dev.patch
target/linux/generic/pending-5.10/495-mtd-core-add-get_mtd_device_by_node.patch
target/linux/generic/pending-5.15/495-mtd-core-add-get_mtd_device_by_node.patch
target/linux/pistachio/patches-5.10/401-mtd-nor-support-mtd-name-from-device-tree.patch

index d7ee9e56fc64d4b4c8076b0f432d97afc6b0ff95..63c05e84bdab968531ce5f40a1be0a50a660d4bb 100644 (file)
@@ -34,7 +34,7 @@ Signed-off-by: Abhimanyu Vishwakarma <Abhimanyu.Vishwakarma@imgtec.com>
        mtd->type = MTD_NORFLASH;
 --- a/drivers/mtd/mtdcore.c
 +++ b/drivers/mtd/mtdcore.c
-@@ -788,6 +788,17 @@ out_error:
+@@ -849,6 +849,17 @@ out_error:
   */
  static void mtd_set_dev_defaults(struct mtd_info *mtd)
  {
index 22a6d95462bf75ad2b3123375133eac0874ae253..afedf0be884e9cb11be36cf49832f5455dffb012 100644 (file)
@@ -34,7 +34,7 @@ Signed-off-by: Abhimanyu Vishwakarma <Abhimanyu.Vishwakarma@imgtec.com>
        mtd->type = MTD_NORFLASH;
 --- a/drivers/mtd/mtdcore.c
 +++ b/drivers/mtd/mtdcore.c
-@@ -788,6 +788,17 @@ out_error:
+@@ -849,6 +849,17 @@ out_error:
   */
  static void mtd_set_dev_defaults(struct mtd_info *mtd)
  {
diff --git a/target/linux/generic/backport-5.10/413-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch b/target/linux/generic/backport-5.10/413-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch
new file mode 100644 (file)
index 0000000..801d9a1
--- /dev/null
@@ -0,0 +1,106 @@
+From ad9b10d1eaada169bd764abcab58f08538877e26 Mon Sep 17 00:00:00 2001
+From: Christian Marangi <ansuelsmth@gmail.com>
+Date: Wed, 22 Jun 2022 03:06:28 +0200
+Subject: mtd: core: introduce of support for dynamic partitions
+
+We have many parser that register mtd partitions at runtime. One example
+is the cmdlinepart or the smem-part parser where the compatible is defined
+in the dts and the partitions gets detected and registered by the
+parser. This is problematic for the NVMEM subsystem that requires an OF
+node to detect NVMEM cells.
+
+To fix this problem, introduce an additional logic that will try to
+assign an OF node to the MTD if declared.
+
+On MTD addition, it will be checked if the MTD has an OF node and if
+not declared will check if a partition with the same label / node name is
+declared in DTS. If an exact match is found, the partition dynamically
+allocated by the parser will have a connected OF node.
+
+The NVMEM subsystem will detect the OF node and register any NVMEM cells
+declared statically in the DTS.
+
+Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
+Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
+Link: https://lore.kernel.org/linux-mtd/20220622010628.30414-4-ansuelsmth@gmail.com
+---
+ drivers/mtd/mtdcore.c | 61 +++++++++++++++++++++++++++++++++++++++++++
+ 1 file changed, 61 insertions(+)
+
+--- a/drivers/mtd/mtdcore.c
++++ b/drivers/mtd/mtdcore.c
+@@ -561,6 +561,66 @@ static int mtd_nvmem_add(struct mtd_info
+       return 0;
+ }
++static void mtd_check_of_node(struct mtd_info *mtd)
++{
++      struct device_node *partitions, *parent_dn, *mtd_dn = NULL;
++      const char *pname, *prefix = "partition-";
++      int plen, mtd_name_len, offset, prefix_len;
++      struct mtd_info *parent;
++      bool found = false;
++
++      /* Check if MTD already has a device node */
++      if (dev_of_node(&mtd->dev))
++              return;
++
++      /* Check if a partitions node exist */
++      parent = mtd->parent;
++      parent_dn = dev_of_node(&parent->dev);
++      if (!parent_dn)
++              return;
++
++      partitions = of_get_child_by_name(parent_dn, "partitions");
++      if (!partitions)
++              goto exit_parent;
++
++      prefix_len = strlen(prefix);
++      mtd_name_len = strlen(mtd->name);
++
++      /* Search if a partition is defined with the same name */
++      for_each_child_of_node(partitions, mtd_dn) {
++              offset = 0;
++
++              /* Skip partition with no/wrong prefix */
++              if (!of_node_name_prefix(mtd_dn, "partition-"))
++                      continue;
++
++              /* Label have priority. Check that first */
++              if (of_property_read_string(mtd_dn, "label", &pname)) {
++                      of_property_read_string(mtd_dn, "name", &pname);
++                      offset = prefix_len;
++              }
++
++              plen = strlen(pname) - offset;
++              if (plen == mtd_name_len &&
++                  !strncmp(mtd->name, pname + offset, plen)) {
++                      found = true;
++                      break;
++              }
++      }
++
++      if (!found)
++              goto exit_partitions;
++
++      /* Set of_node only for nvmem */
++      if (of_device_is_compatible(mtd_dn, "nvmem-cells"))
++              mtd_set_of_node(mtd, mtd_dn);
++
++exit_partitions:
++      of_node_put(partitions);
++exit_parent:
++      of_node_put(parent_dn);
++}
++
+ /**
+  *    add_mtd_device - register an MTD device
+  *    @mtd: pointer to new MTD device info structure
+@@ -666,6 +726,7 @@ int add_mtd_device(struct mtd_info *mtd)
+       mtd->dev.devt = MTD_DEVT(i);
+       dev_set_name(&mtd->dev, "mtd%d", i);
+       dev_set_drvdata(&mtd->dev, mtd);
++      mtd_check_of_node(mtd);
+       of_node_get(mtd_get_of_node(mtd));
+       error = device_register(&mtd->dev);
+       if (error)
diff --git a/target/linux/generic/backport-5.15/402-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch b/target/linux/generic/backport-5.15/402-v5.20-mtd-next-mtd-core-introduce-of-support-for-dynamic-partitions.patch
new file mode 100644 (file)
index 0000000..8b8e478
--- /dev/null
@@ -0,0 +1,106 @@
+From ad9b10d1eaada169bd764abcab58f08538877e26 Mon Sep 17 00:00:00 2001
+From: Christian Marangi <ansuelsmth@gmail.com>
+Date: Wed, 22 Jun 2022 03:06:28 +0200
+Subject: mtd: core: introduce of support for dynamic partitions
+
+We have many parser that register mtd partitions at runtime. One example
+is the cmdlinepart or the smem-part parser where the compatible is defined
+in the dts and the partitions gets detected and registered by the
+parser. This is problematic for the NVMEM subsystem that requires an OF
+node to detect NVMEM cells.
+
+To fix this problem, introduce an additional logic that will try to
+assign an OF node to the MTD if declared.
+
+On MTD addition, it will be checked if the MTD has an OF node and if
+not declared will check if a partition with the same label / node name is
+declared in DTS. If an exact match is found, the partition dynamically
+allocated by the parser will have a connected OF node.
+
+The NVMEM subsystem will detect the OF node and register any NVMEM cells
+declared statically in the DTS.
+
+Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
+Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
+Link: https://lore.kernel.org/linux-mtd/20220622010628.30414-4-ansuelsmth@gmail.com
+---
+ drivers/mtd/mtdcore.c | 61 +++++++++++++++++++++++++++++++++++++++++++
+ 1 file changed, 61 insertions(+)
+
+--- a/drivers/mtd/mtdcore.c
++++ b/drivers/mtd/mtdcore.c
+@@ -564,6 +564,66 @@ static int mtd_nvmem_add(struct mtd_info
+       return 0;
+ }
++static void mtd_check_of_node(struct mtd_info *mtd)
++{
++      struct device_node *partitions, *parent_dn, *mtd_dn = NULL;
++      const char *pname, *prefix = "partition-";
++      int plen, mtd_name_len, offset, prefix_len;
++      struct mtd_info *parent;
++      bool found = false;
++
++      /* Check if MTD already has a device node */
++      if (dev_of_node(&mtd->dev))
++              return;
++
++      /* Check if a partitions node exist */
++      parent = mtd->parent;
++      parent_dn = dev_of_node(&parent->dev);
++      if (!parent_dn)
++              return;
++
++      partitions = of_get_child_by_name(parent_dn, "partitions");
++      if (!partitions)
++              goto exit_parent;
++
++      prefix_len = strlen(prefix);
++      mtd_name_len = strlen(mtd->name);
++
++      /* Search if a partition is defined with the same name */
++      for_each_child_of_node(partitions, mtd_dn) {
++              offset = 0;
++
++              /* Skip partition with no/wrong prefix */
++              if (!of_node_name_prefix(mtd_dn, "partition-"))
++                      continue;
++
++              /* Label have priority. Check that first */
++              if (of_property_read_string(mtd_dn, "label", &pname)) {
++                      of_property_read_string(mtd_dn, "name", &pname);
++                      offset = prefix_len;
++              }
++
++              plen = strlen(pname) - offset;
++              if (plen == mtd_name_len &&
++                  !strncmp(mtd->name, pname + offset, plen)) {
++                      found = true;
++                      break;
++              }
++      }
++
++      if (!found)
++              goto exit_partitions;
++
++      /* Set of_node only for nvmem */
++      if (of_device_is_compatible(mtd_dn, "nvmem-cells"))
++              mtd_set_of_node(mtd, mtd_dn);
++
++exit_partitions:
++      of_node_put(partitions);
++exit_parent:
++      of_node_put(parent_dn);
++}
++
+ /**
+  *    add_mtd_device - register an MTD device
+  *    @mtd: pointer to new MTD device info structure
+@@ -669,6 +729,7 @@ int add_mtd_device(struct mtd_info *mtd)
+       mtd->dev.devt = MTD_DEVT(i);
+       dev_set_name(&mtd->dev, "mtd%d", i);
+       dev_set_drvdata(&mtd->dev, mtd);
++      mtd_check_of_node(mtd);
+       of_node_get(mtd_get_of_node(mtd));
+       error = device_register(&mtd->dev);
+       if (error)
index a5dc72f43b1b1f244cb8bddad69cdf42aaec869e..7de27fddb13ae0c8eec00d2de2713d0af3cd75b8 100644 (file)
@@ -77,7 +77,7 @@ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
  
  #include "mtdcore.h"
  
-@@ -861,6 +862,8 @@ int mtd_device_parse_register(struct mtd
+@@ -922,6 +923,8 @@ int mtd_device_parse_register(struct mtd
                register_reboot_notifier(&mtd->reboot_notifier);
        }
  
index d34306b7fc884d711de2d539ef42e6507c0b9565..ad68d52c729eab6daa1f137bcf0376173e349339 100644 (file)
@@ -20,7 +20,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
  #include <linux/nvmem-provider.h>
  
  #include <linux/mtd/mtd.h>
-@@ -704,6 +705,19 @@ int add_mtd_device(struct mtd_info *mtd)
+@@ -765,6 +766,19 @@ int add_mtd_device(struct mtd_info *mtd)
           of this try_ nonsense, and no bitching about it
           either. :) */
        __module_get(THIS_MODULE);
index 88ca07f517af56c7fb1cb1a85fd1c638189eaddf..011f790fa7e6067880b05782de47d6e91a80890d 100644 (file)
@@ -77,7 +77,7 @@ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
  
  #include "mtdcore.h"
  
-@@ -1012,6 +1013,8 @@ int mtd_device_parse_register(struct mtd
+@@ -1073,6 +1074,8 @@ int mtd_device_parse_register(struct mtd
  
        ret = mtd_otp_nvmem_add(mtd);
  
index 4cefe35e555df6346f7cbb9aba3178700eb3f3e8..90254c63bfbc44baf57f67c8cedf9ca1f8da8260 100644 (file)
@@ -20,7 +20,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
  #include <linux/nvmem-provider.h>
  
  #include <linux/mtd/mtd.h>
-@@ -707,6 +708,16 @@ int add_mtd_device(struct mtd_info *mtd)
+@@ -768,6 +769,16 @@ int add_mtd_device(struct mtd_info *mtd)
           of this try_ nonsense, and no bitching about it
           either. :) */
        __module_get(THIS_MODULE);
index ac5e4086d9303fa53d772d365ee9983a899b3f36..cc5946ac057c16d81b8dd4083fdbb8663f03b965 100644 (file)
@@ -17,7 +17,7 @@ Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
 
 --- a/drivers/mtd/mtdcore.c
 +++ b/drivers/mtd/mtdcore.c
-@@ -1056,6 +1056,44 @@ out_unlock:
+@@ -1117,6 +1117,44 @@ out_unlock:
  }
  EXPORT_SYMBOL_GPL(get_mtd_device_nm);
  
index d1b2c9d1a5ec602457b8af32633876bbdd8fb632..431c80795ebf1cab8be4c4a8f2b5959b5bf56c9b 100644 (file)
@@ -17,7 +17,7 @@ Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
 
 --- a/drivers/mtd/mtdcore.c
 +++ b/drivers/mtd/mtdcore.c
-@@ -1213,6 +1213,44 @@ out_unlock:
+@@ -1274,6 +1274,44 @@ out_unlock:
  }
  EXPORT_SYMBOL_GPL(get_mtd_device_nm);
  
index d7ee9e56fc64d4b4c8076b0f432d97afc6b0ff95..63c05e84bdab968531ce5f40a1be0a50a660d4bb 100644 (file)
@@ -34,7 +34,7 @@ Signed-off-by: Abhimanyu Vishwakarma <Abhimanyu.Vishwakarma@imgtec.com>
        mtd->type = MTD_NORFLASH;
 --- a/drivers/mtd/mtdcore.c
 +++ b/drivers/mtd/mtdcore.c
-@@ -788,6 +788,17 @@ out_error:
+@@ -849,6 +849,17 @@ out_error:
   */
  static void mtd_set_dev_defaults(struct mtd_info *mtd)
  {