From: Paul Burton <paul.burton@imgtec.com>
To: Qais Yousef <qsyousef@gmail.com>, <ralf@linux-mips.org>
Cc: Guenter Roeck <linux@roeck-us.net>,
Thomas Gleixner <tglx@linutronix.de>, <linux-mips@linux-mips.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] MIPS: Fix broken malta qemu
Date: Fri, 1 Apr 2016 13:48:52 +0100 [thread overview]
Message-ID: <20160401124852.GA5145@NP-P-BURTON> (raw)
In-Reply-To: <1458248889-24663-1-git-send-email-qsyousef@gmail.com>
On Thu, Mar 17, 2016 at 09:08:09PM +0000, Qais Yousef wrote:
> Malta defconfig compiles with GIC on. Hence when compiling for SMP it causes the
> new IPI code to be activated. But on qemu malta there's no GIC causing a
> BUG_ON(!ipidomain) to be hit in mips_smp_ipi_init().
>
> Since in that configuration one can only run a single core SMP (!), skip IPI
> initialisation if we detect that this is the case. It is a sensible behaviour
> to introduce and should keep such possible configuration to run rather than die
> hard unnecessarily.
Hi Qais/Ralf,
This patch is insufficient I'm afraid. It's entirely possible to use SMP
with multiple VPEs in a single core on Malta boards that don't have a
GIC - we have code handling IPIs in that case guarded by #ifdef
CONFIG_MIPS_MT_SMP in arch/mips/mti-malta/malta-int.c. I think the
BUG_ON needs to be removed entirely, unless that single-core multi-VPE
IPI code is also converted to use an IPI irqdomain.
Thanks,
Paul
>
> Signed-off-by: Qais Yousef <qsyousef@gmail.com>
> Reported-by: Guenter Roeck <linux@roeck-us.net>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: linux-mips@linux-mips.org
> Cc: linux-kernel@vger.kernel.org
> ---
> arch/mips/kernel/smp.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
> index 37708d9..27cb638 100644
> --- a/arch/mips/kernel/smp.c
> +++ b/arch/mips/kernel/smp.c
> @@ -243,6 +243,18 @@ static int __init mips_smp_ipi_init(void)
> struct irq_domain *ipidomain;
> struct device_node *node;
>
> + /*
> + * In some cases like qemu-malta, it is desired to try SMP with
> + * a single core. Qemu-malta has no GIC, so an attempt to set any IPIs
> + * would cause a BUG_ON() to be triggered since there's no ipidomain.
> + *
> + * Since for a single core system IPIs aren't required really, skip the
> + * initialisation which should generally keep any such configurations
> + * happy and only fail hard when trying to truely run SMP.
> + */
> + if (cpumask_weight(cpu_possible_mask) == 1)
> + return 0;
> +
> node = of_irq_find_parent(of_root);
> ipidomain = irq_find_matching_host(node, DOMAIN_BUS_IPI);
>
> --
> 2.7.3
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Paul Burton <paul.burton@imgtec.com>
To: Qais Yousef <qsyousef@gmail.com>, ralf@linux-mips.org
Cc: Guenter Roeck <linux@roeck-us.net>,
Thomas Gleixner <tglx@linutronix.de>,
linux-mips@linux-mips.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] MIPS: Fix broken malta qemu
Date: Fri, 1 Apr 2016 13:48:52 +0100 [thread overview]
Message-ID: <20160401124852.GA5145@NP-P-BURTON> (raw)
Message-ID: <20160401124852.qKU5F2zrUl5A5uGzJWlXWKAQvaX4ds2jxDYlk2w9IvI@z> (raw)
In-Reply-To: <1458248889-24663-1-git-send-email-qsyousef@gmail.com>
On Thu, Mar 17, 2016 at 09:08:09PM +0000, Qais Yousef wrote:
> Malta defconfig compiles with GIC on. Hence when compiling for SMP it causes the
> new IPI code to be activated. But on qemu malta there's no GIC causing a
> BUG_ON(!ipidomain) to be hit in mips_smp_ipi_init().
>
> Since in that configuration one can only run a single core SMP (!), skip IPI
> initialisation if we detect that this is the case. It is a sensible behaviour
> to introduce and should keep such possible configuration to run rather than die
> hard unnecessarily.
Hi Qais/Ralf,
This patch is insufficient I'm afraid. It's entirely possible to use SMP
with multiple VPEs in a single core on Malta boards that don't have a
GIC - we have code handling IPIs in that case guarded by #ifdef
CONFIG_MIPS_MT_SMP in arch/mips/mti-malta/malta-int.c. I think the
BUG_ON needs to be removed entirely, unless that single-core multi-VPE
IPI code is also converted to use an IPI irqdomain.
Thanks,
Paul
>
> Signed-off-by: Qais Yousef <qsyousef@gmail.com>
> Reported-by: Guenter Roeck <linux@roeck-us.net>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: linux-mips@linux-mips.org
> Cc: linux-kernel@vger.kernel.org
> ---
> arch/mips/kernel/smp.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
> index 37708d9..27cb638 100644
> --- a/arch/mips/kernel/smp.c
> +++ b/arch/mips/kernel/smp.c
> @@ -243,6 +243,18 @@ static int __init mips_smp_ipi_init(void)
> struct irq_domain *ipidomain;
> struct device_node *node;
>
> + /*
> + * In some cases like qemu-malta, it is desired to try SMP with
> + * a single core. Qemu-malta has no GIC, so an attempt to set any IPIs
> + * would cause a BUG_ON() to be triggered since there's no ipidomain.
> + *
> + * Since for a single core system IPIs aren't required really, skip the
> + * initialisation which should generally keep any such configurations
> + * happy and only fail hard when trying to truely run SMP.
> + */
> + if (cpumask_weight(cpu_possible_mask) == 1)
> + return 0;
> +
> node = of_irq_find_parent(of_root);
> ipidomain = irq_find_matching_host(node, DOMAIN_BUS_IPI);
>
> --
> 2.7.3
>
>
next prev parent reply other threads:[~2016-04-01 12:49 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-17 21:08 [PATCH] MIPS: Fix broken malta qemu Qais Yousef
2016-03-18 1:17 ` Guenter Roeck
2016-04-01 12:48 ` Paul Burton [this message]
2016-04-01 12:48 ` Paul Burton
2016-04-02 12:19 ` Qais Yousef
2016-04-02 14:05 ` Guenter Roeck
2016-04-04 6:41 ` Paul Burton
2016-04-04 6:41 ` Paul Burton
2016-04-04 7:59 ` [PATCH] MIPS: Don't BUG_ON when no IPI domain is found Paul Burton
2016-04-04 7:59 ` Paul Burton
2016-04-04 9:04 ` [PATCH v2] " Paul Burton
2016-04-04 9:04 ` Paul Burton
2016-04-04 8:02 ` [PATCH] MIPS: Fix broken malta qemu Ralf Baechle
2016-04-04 8:06 ` Paul Burton
2016-04-04 8:06 ` Paul Burton
2016-04-04 8:32 ` Ralf Baechle
[not found] ` <CA+mqd+7YA5JH=CfLBV9S-c+0aQw=NHihT+WyPvgUF6UkmK+tEQ@mail.gmail.com>
2016-04-04 8:40 ` Paul Burton
2016-04-04 8:40 ` Paul Burton
-- strict thread matches above, loose matches on Subject: below --
2016-03-16 21:55 Qais Yousef
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160401124852.GA5145@NP-P-BURTON \
--to=paul.burton@imgtec.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=linux@roeck-us.net \
--cc=qsyousef@gmail.com \
--cc=ralf@linux-mips.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.