Commit 2dfede95 authored by Dmitry Osipenko's avatar Dmitry Osipenko Committed by Kleber Sacilotto de Souza

gpio: tegra: Move driver registration to subsys_init level

BugLink: https://bugs.launchpad.net/bugs/1798539

[ Upstream commit 40b25bce ]

There is a bug in regards to deferred probing within the drivers core
that causes GPIO-driver to suspend after its users. The bug appears if
GPIO-driver probe is getting deferred, which happens after introducing
dependency on PINCTRL-driver for the GPIO-driver by defining "gpio-ranges"
property in device-tree. The bug in the drivers core is old (more than 4
years now) and is well known, unfortunately there is no easy fix for it.
The good news is that we can workaround the deferred probe issue by
changing GPIO / PINCTRL drivers registration order and hence by moving
PINCTRL driver registration to the arch_init level and GPIO to the
subsys_init.
Signed-off-by: default avatarDmitry Osipenko <digetx@gmail.com>
Acked-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarSasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarStefan Bader <stefan.bader@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent 01b6617c
...@@ -591,4 +591,4 @@ static int __init tegra_gpio_init(void) ...@@ -591,4 +591,4 @@ static int __init tegra_gpio_init(void)
{ {
return platform_driver_register(&tegra_gpio_driver); return platform_driver_register(&tegra_gpio_driver);
} }
postcore_initcall(tegra_gpio_init); subsys_initcall(tegra_gpio_init);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment