]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: qcom: add multi TLMM region option parameter
authorYuanjie Yang <quic_yuanjiey@quicinc.com>
Tue, 24 Jun 2025 09:06:00 +0000 (17:06 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 3 Jul 2025 21:44:21 +0000 (23:44 +0200)
Add support for selecting multiple TLMM regions using the
tlmm-test tool.
The current implementation only selects the TLMM Node region
0, which can lead to incorrect region selection.

QCS 615 TLMM Node dts reg:
tlmm: pinctrl@3100000 {
compatible = "qcom,qcs615-tlmm";
reg = <0x0 0x03100000 0x0 0x300000>,
      <0x0 0x03500000 0x0 0x300000>,
      <0x0 0x03d00000 0x0 0x300000>;
reg-names = "east",
    "west",
    "south";

QCS615 gpio57 is in the south region with an offset of 0x39000,
and its address is 0x3d39000. However, the default region selection
is region 0 (east region), resulting in a wrong calculated address
of 0x3139000.

Add a tlmm option parameter named tlmm_reg_name to select the region.
If the user does not input the parameter, the default region is 0.

Signed-off-by: Yuanjie Yang <quic_yuanjiey@quicinc.com>
Link: https://lore.kernel.org/20250624090600.91063-1-quic_yuanjiey@quicinc.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/qcom/tlmm-test.c

index 7b99e89e0f6703f7c06080dbd76c1c9d9005f4c8..7d7fff538755a2bcebf94dfb1ca00d4e9948c748 100644 (file)
@@ -16,6 +16,7 @@
 #include <linux/of_irq.h>
 #include <linux/pinctrl/consumer.h>
 #include <linux/platform_device.h>
+#include <linux/slab.h>
 
 /*
  * This TLMM test module serves the purpose of validating that the TLMM driver
 #define TLMM_REG_SIZE          0x1000
 
 static int tlmm_test_gpio = -1;
+static char *tlmm_reg_name = "default_region";
+
 module_param_named(gpio, tlmm_test_gpio, int, 0600);
+module_param_named(name, tlmm_reg_name, charp, 0600);
 
 static struct {
        void __iomem *base;
@@ -570,6 +574,47 @@ static const struct of_device_id tlmm_of_match[] = {
        {}
 };
 
+static int tlmm_reg_base(struct device_node *tlmm, struct resource *res)
+{
+       const char **reg_names;
+       int count;
+       int ret;
+       int i;
+
+       count = of_property_count_strings(tlmm, "reg-names");
+       if (count <= 0) {
+               pr_err("failed to find tlmm reg name\n");
+               return count;
+       }
+
+       reg_names = kcalloc(count, sizeof(char *), GFP_KERNEL);
+       if (!reg_names)
+               return -ENOMEM;
+
+       ret = of_property_read_string_array(tlmm, "reg-names", reg_names, count);
+       if (ret != count) {
+               kfree(reg_names);
+               return -EINVAL;
+       }
+
+       if (!strcmp(tlmm_reg_name, "default_region")) {
+               ret = of_address_to_resource(tlmm, 0, res);
+       } else {
+               for (i = 0; i < count; i++) {
+                       if (!strcmp(reg_names[i], tlmm_reg_name)) {
+                               ret = of_address_to_resource(tlmm, i, res);
+                               break;
+                       }
+               }
+               if (i == count)
+                       ret = -EINVAL;
+       }
+
+       kfree(reg_names);
+
+       return ret;
+}
+
 static int tlmm_test_init_suite(struct kunit_suite *suite)
 {
        struct of_phandle_args args = {};
@@ -588,7 +633,7 @@ static int tlmm_test_init_suite(struct kunit_suite *suite)
                return -EINVAL;
        }
 
-       ret = of_address_to_resource(tlmm, 0, &res);
+       ret = tlmm_reg_base(tlmm, &res);
        if (ret < 0)
                return ret;