* [PATCH] pinctrl: mediatek: convert to arch_initcall
@ 2015-12-18 4:21 Daniel Kurtz
2015-12-18 15:06 ` Yingjoe Chen
2015-12-22 10:23 ` Linus Walleij
0 siblings, 2 replies; 18+ messages in thread
From: Daniel Kurtz @ 2015-12-18 4:21 UTC (permalink / raw)
Cc: Daniel Kurtz, Linus Walleij, Matthias Brugger, Fabio Estevam,
Hongzhou Yang, Yingjoe Chen, Jean-Christophe PLAGNIOL-VILLARD,
Fabian Frederick, Maoguang Meng, Axel Lin, Patrice Chotard,
open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support,
moderated list:ARM/Mediatek SoC support
Move pinctrl initialization earlier in boot so that real devices can find
their pctldev without probe deferring.
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
---
drivers/pinctrl/mediatek/pinctrl-mt6397.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6397.c b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
index f9751ae..a3780d4 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt6397.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
@@ -70,7 +70,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MediaTek MT6397 Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8127.c b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
index b317b0b..98e0beb 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8127.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
@@ -351,7 +351,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MediaTek MT8127 Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8135.c b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
index 404f117..1c153b8 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8135.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
@@ -366,7 +366,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8173.c b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
index ad27184..a62514e 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8173.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
@@ -394,7 +394,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
--
2.6.0.rc2.230.g3dd15c0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-18 4:21 [PATCH] pinctrl: mediatek: convert to arch_initcall Daniel Kurtz
@ 2015-12-18 15:06 ` Yingjoe Chen
2015-12-21 6:51 ` Daniel Kurtz
2015-12-22 10:23 ` Linus Walleij
1 sibling, 1 reply; 18+ messages in thread
From: Yingjoe Chen @ 2015-12-18 15:06 UTC (permalink / raw)
To: Daniel Kurtz
Cc: Fabio Estevam, Maoguang Meng, Axel Lin, Hongzhou Yang,
Linus Walleij, Patrice Chotard, open list, Fabian Frederick,
open list:PIN CONTROL SUBSYSTEM,
moderated list:ARM/Mediatek SoC support, Matthias Brugger,
Jean-Christophe PLAGNIOL-VILLARD,
moderated list:ARM/Mediatek SoC support
On Fri, 2015-12-18 at 12:21 +0800, Daniel Kurtz wrote:
> Move pinctrl initialization earlier in boot so that real devices can find
> their pctldev without probe deferring.
>
> Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
> ---
> drivers/pinctrl/mediatek/pinctrl-mt6397.c | 2 +-
> drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
> drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
> drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6397.c b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> index f9751ae..a3780d4 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> @@ -70,7 +70,7 @@ static int __init mtk_pinctrl_init(void)
> return platform_driver_register(&mtk_pinctrl_driver);
> }
>
> -module_init(mtk_pinctrl_init);
> +arch_initcall(mtk_pinctrl_init);
MT6397 is PMIC, which depends on pwrap on main AP to work. Since
pmic-wrap itself is module_platform_driver, I think it make sense to
keep this one as module_init. Maybe adding a comment to explain why it
is different from others will help.
Joe.C
>
> MODULE_LICENSE("GPL v2");
> MODULE_DESCRIPTION("MediaTek MT6397 Pinctrl Driver");
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8127.c b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
> index b317b0b..98e0beb 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mt8127.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
> @@ -351,7 +351,7 @@ static int __init mtk_pinctrl_init(void)
> return platform_driver_register(&mtk_pinctrl_driver);
> }
>
> -module_init(mtk_pinctrl_init);
> +arch_initcall(mtk_pinctrl_init);
>
> MODULE_LICENSE("GPL v2");
> MODULE_DESCRIPTION("MediaTek MT8127 Pinctrl Driver");
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8135.c b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
> index 404f117..1c153b8 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mt8135.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
> @@ -366,7 +366,7 @@ static int __init mtk_pinctrl_init(void)
> return platform_driver_register(&mtk_pinctrl_driver);
> }
>
> -module_init(mtk_pinctrl_init);
> +arch_initcall(mtk_pinctrl_init);
>
> MODULE_LICENSE("GPL");
> MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8173.c b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
> index ad27184..a62514e 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mt8173.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
> @@ -394,7 +394,7 @@ static int __init mtk_pinctrl_init(void)
> return platform_driver_register(&mtk_pinctrl_driver);
> }
>
> -module_init(mtk_pinctrl_init);
> +arch_initcall(mtk_pinctrl_init);
>
> MODULE_LICENSE("GPL v2");
> MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-18 15:06 ` Yingjoe Chen
@ 2015-12-21 6:51 ` Daniel Kurtz
2015-12-21 12:39 ` Yingjoe Chen
0 siblings, 1 reply; 18+ messages in thread
From: Daniel Kurtz @ 2015-12-21 6:51 UTC (permalink / raw)
To: Yingjoe Chen
Cc: Fabio Estevam, Maoguang Meng, Axel Lin, Hongzhou Yang,
Linus Walleij, Patrice Chotard, open list, Fabian Frederick,
open list:PIN CONTROL SUBSYSTEM,
moderated list:ARM/Mediatek SoC support, Matthias Brugger,
Jean-Christophe PLAGNIOL-VILLARD,
moderated list:ARM/Mediatek SoC support
On Fri, Dec 18, 2015 at 11:06 PM, Yingjoe Chen
<yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> wrote:
> On Fri, 2015-12-18 at 12:21 +0800, Daniel Kurtz wrote:
>> Move pinctrl initialization earlier in boot so that real devices can find
>> their pctldev without probe deferring.
>>
>> Signed-off-by: Daniel Kurtz <djkurtz-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
>> ---
>> drivers/pinctrl/mediatek/pinctrl-mt6397.c | 2 +-
>> drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
>> drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
>> drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
>> 4 files changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6397.c b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
>> index f9751ae..a3780d4 100644
>> --- a/drivers/pinctrl/mediatek/pinctrl-mt6397.c
>> +++ b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
>> @@ -70,7 +70,7 @@ static int __init mtk_pinctrl_init(void)
>> return platform_driver_register(&mtk_pinctrl_driver);
>> }
>>
>> -module_init(mtk_pinctrl_init);
>> +arch_initcall(mtk_pinctrl_init);
>
>
> MT6397 is PMIC, which depends on pwrap on main AP to work. Since
> pmic-wrap itself is module_platform_driver, I think it make sense to
> keep this one as module_init. Maybe adding a comment to explain why it
> is different from others will help.
I interpret this the other way - I think that since the PMIC wrapper
provides a bus required for the system PMIC it should also be a
builtin and use arch_initcall.
WDYT?
-Dan
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-21 6:51 ` Daniel Kurtz
@ 2015-12-21 12:39 ` Yingjoe Chen
2015-12-21 12:45 ` Daniel Kurtz
0 siblings, 1 reply; 18+ messages in thread
From: Yingjoe Chen @ 2015-12-21 12:39 UTC (permalink / raw)
To: Daniel Kurtz
Cc: Fabio Estevam, Maoguang Meng, Axel Lin, Hongzhou Yang,
Linus Walleij, Patrice Chotard, open list, Fabian Frederick,
open list:PIN CONTROL SUBSYSTEM,
moderated list:ARM/Mediatek SoC support, Matthias Brugger,
Jean-Christophe PLAGNIOL-VILLARD,
moderated list:ARM/Mediatek SoC support
On Mon, 2015-12-21 at 14:51 +0800, Daniel Kurtz wrote:
> On Fri, Dec 18, 2015 at 11:06 PM, Yingjoe Chen
> <yingjoe.chen@mediatek.com> wrote:
> > On Fri, 2015-12-18 at 12:21 +0800, Daniel Kurtz wrote:
> >> Move pinctrl initialization earlier in boot so that real devices can find
> >> their pctldev without probe deferring.
> >>
> >> Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
> >> ---
> >> drivers/pinctrl/mediatek/pinctrl-mt6397.c | 2 +-
> >> drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
> >> drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
> >> drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
> >> 4 files changed, 4 insertions(+), 4 deletions(-)
> >>
> >> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6397.c b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> >> index f9751ae..a3780d4 100644
> >> --- a/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> >> +++ b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> >> @@ -70,7 +70,7 @@ static int __init mtk_pinctrl_init(void)
> >> return platform_driver_register(&mtk_pinctrl_driver);
> >> }
> >>
> >> -module_init(mtk_pinctrl_init);
> >> +arch_initcall(mtk_pinctrl_init);
> >
> >
> > MT6397 is PMIC, which depends on pwrap on main AP to work. Since
> > pmic-wrap itself is module_platform_driver, I think it make sense to
> > keep this one as module_init. Maybe adding a comment to explain why it
> > is different from others will help.
>
> I interpret this the other way - I think that since the PMIC wrapper
> provides a bus required for the system PMIC it should also be a
> builtin and use arch_initcall.
We'll have to change mt8173 PMIC wrapper and mt6397 MFD core to
arch_initcall if we want to do it.
I think regulators on PMIC is more important than pinctrl. For all
mt8173 systems, few drivers depends on PMIC pinctrl to work but many
depends on the regulators. So if we adjust pinctrl to arch_initcall, we
should change mt6397 regulator as well.
Joe.C
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-21 12:39 ` Yingjoe Chen
@ 2015-12-21 12:45 ` Daniel Kurtz
0 siblings, 0 replies; 18+ messages in thread
From: Daniel Kurtz @ 2015-12-21 12:45 UTC (permalink / raw)
To: Yingjoe Chen
Cc: Fabio Estevam, Maoguang Meng, Axel Lin, Hongzhou Yang,
Linus Walleij, Patrice Chotard, open list, Fabian Frederick,
open list:PIN CONTROL SUBSYSTEM,
moderated list:ARM/Mediatek SoC support, Matthias Brugger,
Jean-Christophe PLAGNIOL-VILLARD,
moderated list:ARM/Mediatek SoC support
On Mon, Dec 21, 2015 at 8:39 PM, Yingjoe Chen <yingjoe.chen@mediatek.com> wrote:
>
> On Mon, 2015-12-21 at 14:51 +0800, Daniel Kurtz wrote:
> > On Fri, Dec 18, 2015 at 11:06 PM, Yingjoe Chen
> > <yingjoe.chen@mediatek.com> wrote:
> > > On Fri, 2015-12-18 at 12:21 +0800, Daniel Kurtz wrote:
> > >> Move pinctrl initialization earlier in boot so that real devices can find
> > >> their pctldev without probe deferring.
> > >>
> > >> Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
> > >> ---
> > >> drivers/pinctrl/mediatek/pinctrl-mt6397.c | 2 +-
> > >> drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
> > >> drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
> > >> drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
> > >> 4 files changed, 4 insertions(+), 4 deletions(-)
> > >>
> > >> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6397.c b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> > >> index f9751ae..a3780d4 100644
> > >> --- a/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> > >> +++ b/drivers/pinctrl/mediatek/pinctrl-mt6397.c
> > >> @@ -70,7 +70,7 @@ static int __init mtk_pinctrl_init(void)
> > >> return platform_driver_register(&mtk_pinctrl_driver);
> > >> }
> > >>
> > >> -module_init(mtk_pinctrl_init);
> > >> +arch_initcall(mtk_pinctrl_init);
> > >
> > >
> > > MT6397 is PMIC, which depends on pwrap on main AP to work. Since
> > > pmic-wrap itself is module_platform_driver, I think it make sense to
> > > keep this one as module_init. Maybe adding a comment to explain why it
> > > is different from others will help.
> >
> > I interpret this the other way - I think that since the PMIC wrapper
> > provides a bus required for the system PMIC it should also be a
> > builtin and use arch_initcall.
>
> We'll have to change mt8173 PMIC wrapper and mt6397 MFD core to
> arch_initcall if we want to do it.
>
> I think regulators on PMIC is more important than pinctrl. For all
> mt8173 systems, few drivers depends on PMIC pinctrl to work but many
> depends on the regulators. So if we adjust pinctrl to arch_initcall, we
> should change mt6397 regulator as well.
ACK to changing all of mt6397 to arch_initcall, especially the regulators.
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-18 4:21 [PATCH] pinctrl: mediatek: convert to arch_initcall Daniel Kurtz
2015-12-18 15:06 ` Yingjoe Chen
@ 2015-12-22 10:23 ` Linus Walleij
[not found] ` <CACRpkdbuL5Kjeqb-zJg9DmoxKzy7vphYgBTG-Ffh2i=UVH97ug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
1 sibling, 1 reply; 18+ messages in thread
From: Linus Walleij @ 2015-12-22 10:23 UTC (permalink / raw)
To: Daniel Kurtz
Cc: Matthias Brugger, Fabio Estevam, Hongzhou Yang, Yingjoe Chen,
Jean-Christophe PLAGNIOL-VILLARD, Fabian Frederick, Maoguang Meng,
Axel Lin, Patrice Chotard, open list:PIN CONTROL SUBSYSTEM,
open list, moderated list:ARM/Mediatek SoC support,
moderated list:ARM/Mediatek SoC support
On Fri, Dec 18, 2015 at 5:21 AM, Daniel Kurtz <djkurtz@chromium.org> wrote:
> Move pinctrl initialization earlier in boot so that real devices can find
> their pctldev without probe deferring.
>
> Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
I interpret the discussion as I should wait for a new version of this?
Or should it be applied?
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH] pinctrl: mediatek: convert to arch_initcall
@ 2015-12-22 13:46 Daniel Kurtz
2015-12-22 15:11 ` Linus Walleij
0 siblings, 1 reply; 18+ messages in thread
From: Daniel Kurtz @ 2015-12-22 13:46 UTC (permalink / raw)
Cc: Daniel Kurtz, Linus Walleij, Matthias Brugger, Yingjoe Chen,
Hongzhou Yang, Fabio Estevam, Fabian Frederick, Maoguang Meng,
Axel Lin, open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support,
moderated list:ARM/Mediatek SoC support
Move pinctrl initialization earlier in boot so that real devices can find
their pctldev without probe deferring.
Note: We don't change mt6397 probe order in this patch, since MT6397 is mfd
PMIC, which depends on pwrap on main AP to work. Since pmic-wrap itself
is module_platform_driver, we keep it as module_init. A later patch
will convert both pmic-wrap, and all functions of the MT6397 mfd to
arch_initcall.
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
---
drivers/pinctrl/mediatek/pinctrl-mt8127.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mt8135.c | 2 +-
drivers/pinctrl/mediatek/pinctrl-mt8173.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8127.c b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
index b317b0b..98e0beb 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8127.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8127.c
@@ -351,7 +351,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MediaTek MT8127 Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8135.c b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
index 404f117..1c153b8 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8135.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8135.c
@@ -366,7 +366,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8173.c b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
index ad27184..a62514e 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8173.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8173.c
@@ -394,7 +394,7 @@ static int __init mtk_pinctrl_init(void)
return platform_driver_register(&mtk_pinctrl_driver);
}
-module_init(mtk_pinctrl_init);
+arch_initcall(mtk_pinctrl_init);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MediaTek Pinctrl Driver");
--
2.6.0.rc2.230.g3dd15c0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-22 13:46 Daniel Kurtz
@ 2015-12-22 15:11 ` Linus Walleij
2015-12-30 17:22 ` Mark Brown
0 siblings, 1 reply; 18+ messages in thread
From: Linus Walleij @ 2015-12-22 15:11 UTC (permalink / raw)
To: Daniel Kurtz, Grant Likely, Mark Brown,
linux-arm-kernel@lists.infradead.org
Cc: Matthias Brugger, Yingjoe Chen, Hongzhou Yang, Fabio Estevam,
Fabian Frederick, Maoguang Meng, Axel Lin,
open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support
On Tue, Dec 22, 2015 at 2:46 PM, Daniel Kurtz <djkurtz@chromium.org> wrote:
> Move pinctrl initialization earlier in boot so that real devices can find
> their pctldev without probe deferring.
(...)
> -module_init(mtk_pinctrl_init);
> +arch_initcall(mtk_pinctrl_init);
So I see why you're doing this (because of wanting to avoid nasty boot
probe deferrals, right?) and I'm going to apply it, because the work
with probe ordering is still in the works, but I'd like some general
ARM people to come in with opinions.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-22 15:11 ` Linus Walleij
@ 2015-12-30 17:22 ` Mark Brown
2015-12-31 13:45 ` Daniel Kurtz
0 siblings, 1 reply; 18+ messages in thread
From: Mark Brown @ 2015-12-30 17:22 UTC (permalink / raw)
To: Linus Walleij
Cc: Daniel Kurtz, Grant Likely, linux-arm-kernel@lists.infradead.org,
Matthias Brugger, Yingjoe Chen, Hongzhou Yang, Fabio Estevam,
Fabian Frederick, Maoguang Meng, Axel Lin,
open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support
[-- Attachment #1: Type: text/plain, Size: 901 bytes --]
On Tue, Dec 22, 2015 at 04:11:47PM +0100, Linus Walleij wrote:
> On Tue, Dec 22, 2015 at 2:46 PM, Daniel Kurtz <djkurtz@chromium.org> wrote:
> > Move pinctrl initialization earlier in boot so that real devices can find
> > their pctldev without probe deferring.
> (...)
> > -module_init(mtk_pinctrl_init);
> > +arch_initcall(mtk_pinctrl_init);
> So I see why you're doing this (because of wanting to avoid nasty boot
> probe deferrals, right?) and I'm going to apply it, because the work
> with probe ordering is still in the works, but I'd like some general
> ARM people to come in with opinions.
I really don't think we should be applying this sort of stuff unless
things are actively broken right now. It's a bit of a rabbit hole we
could spend a long time going down tweaking things for different
systems in the same way that tweaking the link order can be and it masks
the underlying issues.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-30 17:22 ` Mark Brown
@ 2015-12-31 13:45 ` Daniel Kurtz
2015-12-31 22:07 ` Mark Brown
0 siblings, 1 reply; 18+ messages in thread
From: Daniel Kurtz @ 2015-12-31 13:45 UTC (permalink / raw)
To: Mark Brown
Cc: Linus Walleij, Grant Likely, linux-arm-kernel@lists.infradead.org,
Matthias Brugger, Yingjoe Chen, Hongzhou Yang, Fabio Estevam,
Fabian Frederick, Maoguang Meng, Axel Lin,
open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support
On Thu, Dec 31, 2015 at 1:22 AM, Mark Brown <broonie@kernel.org> wrote:
>
> On Tue, Dec 22, 2015 at 04:11:47PM +0100, Linus Walleij wrote:
> > On Tue, Dec 22, 2015 at 2:46 PM, Daniel Kurtz <djkurtz@chromium.org> wrote:
>
> > > Move pinctrl initialization earlier in boot so that real devices can find
> > > their pctldev without probe deferring.
> > (...)
> > > -module_init(mtk_pinctrl_init);
> > > +arch_initcall(mtk_pinctrl_init);
>
> > So I see why you're doing this (because of wanting to avoid nasty boot
> > probe deferrals, right?) and I'm going to apply it, because the work
> > with probe ordering is still in the works, but I'd like some general
> > ARM people to come in with opinions.
>
> I really don't think we should be applying this sort of stuff unless
> things are actively broken right now. It's a bit of a rabbit hole we
> could spend a long time going down tweaking things for different
> systems in the same way that tweaking the link order can be and it masks
> the underlying issues.
Things are actively broken right now, in the sense that there are many
needless probe deferrals on boot.
These are pinctrl drivers, which are required to load before every
other driver that requests a gpio.
AFAICT, the pinctrl is part of the platform "architecture", hence why
I suggest we move this to arch_initcall().
arch_initcall() is also consistent with 39 other pinctrl drivers in
drivers/pinctrl.
19 others use subsys_initcall(), core_initcall() or
postcore_initcall(), any of which would also work.
-Dan
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] pinctrl: mediatek: convert to arch_initcall
2015-12-31 13:45 ` Daniel Kurtz
@ 2015-12-31 22:07 ` Mark Brown
[not found] ` <20151231220712.GD16023-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
0 siblings, 1 reply; 18+ messages in thread
From: Mark Brown @ 2015-12-31 22:07 UTC (permalink / raw)
To: Daniel Kurtz
Cc: Linus Walleij, Grant Likely, linux-arm-kernel@lists.infradead.org,
Matthias Brugger, Yingjoe Chen, Hongzhou Yang, Fabio Estevam,
Fabian Frederick, Maoguang Meng, Axel Lin,
open list:PIN CONTROL SUBSYSTEM, open list,
moderated list:ARM/Mediatek SoC support
[-- Attachment #1: Type: text/plain, Size: 2392 bytes --]
On Thu, Dec 31, 2015 at 09:45:51PM +0800, Daniel Kurtz wrote:
> On Thu, Dec 31, 2015 at 1:22 AM, Mark Brown <broonie@kernel.org> wrote:
> > I really don't think we should be applying this sort of stuff unless
> > things are actively broken right now. It's a bit of a rabbit hole we
> > could spend a long time going down tweaking things for different
> > systems in the same way that tweaking the link order can be and it masks
> > the underlying issues.
> Things are actively broken right now, in the sense that there are many
> needless probe deferrals on boot.
That's just noisy, everything does end up loading OK. If the noise is a
problem working on fixing the underlying problem with not being able to
figure out dependencies seems like a better thing. When we discussed
this on the kernel summit list it wasn't clear everyone was convinced
this was even a problem (I think it is since it obscures real
information). Actual breakage to me is something that never sorts
itself out.
> These are pinctrl drivers, which are required to load before every
> other driver that requests a gpio.
> AFAICT, the pinctrl is part of the platform "architecture", hence why
> I suggest we move this to arch_initcall().
This is exactly the sort of hacking that leads to problems - you can
also make the same argument for a bunch of other things like regulators
but then you find there's circular dependencies or extra devices with
different requirements on some systems that cause further issues and
need more special casing, or you find that some other device gets pushed
earlier so you have to go round tweaking everything it uses. It's not
that the device is magic, it's that we don't understand how to handle
dependencies well enough. Raphael did say he was going to work on
something for this, I'm not sure where it got to though.
> arch_initcall() is also consistent with 39 other pinctrl drivers in
> drivers/pinctrl.
> 19 others use subsys_initcall(), core_initcall() or
> postcore_initcall(), any of which would also work.
It's fairly clear that there's at least a case for simplifying the
existing practice here, for example by moving everything into a single
(perhaps aliased) initcall rather than by randomly picking a level per
system or by actually fiddling with the link ordering if the case is
sufficiently clear that pinctrl in general ought to load earlier than it
does.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2016-01-04 18:23 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-18 4:21 [PATCH] pinctrl: mediatek: convert to arch_initcall Daniel Kurtz
2015-12-18 15:06 ` Yingjoe Chen
2015-12-21 6:51 ` Daniel Kurtz
2015-12-21 12:39 ` Yingjoe Chen
2015-12-21 12:45 ` Daniel Kurtz
2015-12-22 10:23 ` Linus Walleij
[not found] ` <CACRpkdbuL5Kjeqb-zJg9DmoxKzy7vphYgBTG-Ffh2i=UVH97ug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-12-22 13:36 ` Yingjoe Chen
2015-12-22 13:41 ` Daniel Kurtz
-- strict thread matches above, loose matches on Subject: below --
2015-12-22 13:46 Daniel Kurtz
2015-12-22 15:11 ` Linus Walleij
2015-12-30 17:22 ` Mark Brown
2015-12-31 13:45 ` Daniel Kurtz
2015-12-31 22:07 ` Mark Brown
[not found] ` <20151231220712.GD16023-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-01-01 1:56 ` Daniel Kurtz
2016-01-01 14:27 ` Matthias Brugger
2016-01-01 17:29 ` Linus Walleij
2016-01-04 17:12 ` Mark Brown
2016-01-04 18:23 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).