static int __init mmp2_mux_of_init(struct device_node *node,
                                   struct device_node *parent)
 {
-       struct resource res;
        int i, ret, irq, j = 0;
        u32 nr_irqs, mfp_irq;
+       u32 reg[4];
 
        if (!parent)
                return -ENODEV;
                pr_err("Not found mrvl,intc-nr-irqs property\n");
                return -EINVAL;
        }
-       ret = of_address_to_resource(node, 0, &res);
-       if (ret < 0) {
-               pr_err("Not found reg property\n");
-               return -EINVAL;
-       }
-       icu_data[i].reg_status = mmp_icu_base + res.start;
-       ret = of_address_to_resource(node, 1, &res);
+
+       /*
+        * For historical reasons, the "regs" property of the
+        * mrvl,mmp2-mux-intc is not a regular "regs" property containing
+        * addresses on the parent bus, but offsets from the intc's base.
+        * That is why we can't use of_address_to_resource() here.
+        */
+       ret = of_property_read_variable_u32_array(node, "reg", reg,
+                                                 ARRAY_SIZE(reg),
+                                                 ARRAY_SIZE(reg));
        if (ret < 0) {
                pr_err("Not found reg property\n");
                return -EINVAL;
        }
-       icu_data[i].reg_mask = mmp_icu_base + res.start;
+       icu_data[i].reg_status = mmp_icu_base + reg[0];
+       icu_data[i].reg_mask = mmp_icu_base + reg[2];
        icu_data[i].cascade_irq = irq_of_parse_and_map(node, 0);
        if (!icu_data[i].cascade_irq)
                return -EINVAL;