chip->names = config->names;
        chip->label = config->label ?: dev_name(config->parent);
 
+#if defined(CONFIG_OF_GPIO)
+       /* gpiolib will use of_node of the parent if chip->of_node is NULL */
+       chip->of_node = to_of_node(config->fwnode);
+#endif /* CONFIG_OF_GPIO */
+
        /*
         * If our regmap is fast_io we should probably set can_sleep to false.
         * Right now, the regmap doesn't save this property, nor is there any
 
 #define _LINUX_GPIO_REGMAP_H
 
 struct device;
+struct fwnode_handle;
 struct gpio_regmap;
 struct irq_domain;
 struct regmap;
  * @parent:            The parent device
  * @regmap:            The regmap used to access the registers
  *                     given, the name of the device is used
+ * @fwnode:            (Optional) The firmware node.
+ *                     If not given, the fwnode of the parent is used.
  * @label:             (Optional) Descriptive name for GPIO controller.
  *                     If not given, the name of the device is used.
  * @ngpio:             Number of GPIOs
 struct gpio_regmap_config {
        struct device *parent;
        struct regmap *regmap;
+       struct fwnode_handle *fwnode;
 
        const char *label;
        int ngpio;