mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
pinctrl: mediatek: add support for gpio-controller property in root node
Add support for gpio-controller property in root pinctrl node. This is to follow upstream linux DTSI that doesn't define the gpio-controller and cells in dedicated nodes. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This commit is contained in:
parent
55269f1019
commit
e499d5d430
@ -761,6 +761,15 @@ static int mtk_gpiochip_register(struct udevice *parent)
|
||||
if (!drv)
|
||||
return -ENOENT;
|
||||
|
||||
/*
|
||||
* Support upstream linux DTSI that define gpio-controller
|
||||
* in the root node (instead of a dedicated subnode)
|
||||
*/
|
||||
if (dev_read_bool(parent, "gpio-controller")) {
|
||||
node = dev_ofnode(parent);
|
||||
goto bind;
|
||||
}
|
||||
|
||||
ret = -ENOENT;
|
||||
dev_for_each_subnode(node, parent)
|
||||
if (ofnode_read_bool(node, "gpio-controller")) {
|
||||
@ -771,6 +780,7 @@ static int mtk_gpiochip_register(struct udevice *parent)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
bind:
|
||||
ret = device_bind_with_driver_data(parent, &mtk_gpio_driver,
|
||||
"mediatek_gpio", 0, node,
|
||||
&dev);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user