[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <56CAEFD3.2060700@arm.com>
Date: Mon, 22 Feb 2016 11:24:03 +0000
From: Marc Zyngier <marc.zyngier@....com>
To: MaJun <majun258@...wei.com>, Catalin.Marinas@....com,
linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
Will.Deacon@....com, mark.rutland@....com, jason@...edaemon.net,
tglx@...utronix.de, lizefan@...wei.com, huxinwei@...wei.com,
dingtianhong@...wei.com, liguozhu@...ilicon.com,
guohanjun@...wei.com, zhaojunhua@...ilicon.com
Subject: Re: [PATCH] Irq/mbigen:Promote the mbigen driver register timing
On 22/02/16 11:00, MaJun wrote:
> From: Ma Jun <majun258@...wei.com>
>
> Using module_platform_driver() to register mbigen driver is
> too late for some driver to apply irq, because the mbigen irq
> domain is not created yet.
>
> Signed-off-by: Ma Jun <majun258@...wei.com>
> ---
> drivers/irqchip/irq-mbigen.c | 9 ++++++++-
> 1 files changed, 8 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/irqchip/irq-mbigen.c b/drivers/irqchip/irq-mbigen.c
> index 4dd3eb8..4df359c 100644
> --- a/drivers/irqchip/irq-mbigen.c
> +++ b/drivers/irqchip/irq-mbigen.c
> @@ -289,7 +289,14 @@ static struct platform_driver mbigen_platform_driver = {
> .probe = mbigen_device_probe,
> };
>
> -module_platform_driver(mbigen_platform_driver);
> +static __init int mbigen_init(void)
> +
> +{
> + return platform_driver_register(&mbigen_platform_driver);
> +
> +}
> +
> +arch_initcall(mbigen_init);
>
> MODULE_AUTHOR("Jun Ma <majun258@...wei.com>");
> MODULE_AUTHOR("Yun Wu <wuyun.wu@...wei.com>");
>
I don't believe this is a proper fix, and already said so when reviewing
this code:
http://www.spinics.net/lists/linux-pci/msg46534.html
Short of actually solving the dependencies, it is likely that you will
only move the problem somewhere else.
I suggest you engage will people that are working on a proper solution,
and/or fix the drivers to gracefully defer their probing if their IRQs
are not available.
Thanks,
M.
--
Jazz is not dead. It just smells funny...
Powered by blists - more mailing lists