From: Marc Zyngier <maz@kernel.org>
To: Zenghui Yu <yuzenghui@huawei.com>
Cc: tglx@linutronix.de, kvmarm@lists.cs.columbia.edu,
jason@lakedaemon.net, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] irqchip/gic-v3-its: Don't confuse get_vlpi_map() by writing DB config
Date: Wed, 22 Jan 2020 10:44:06 +0000 [thread overview]
Message-ID: <4aaaad3ae7367c5c932c430e18550d9e@kernel.org> (raw)
In-Reply-To: <20200122085609.658-1-yuzenghui@huawei.com>
Hi Zenghui,
Thanks for this.
On 2020-01-22 08:56, Zenghui Yu wrote:
> When we're writing config for the doorbell interrupt, get_vlpi_map()
> will
> get confused by doorbell's d->parent_data hack and find the wrong
> its_dev
> as chip data and the wrong event.
>
> Fix this issue by making sure no doorbells will be involved before
> invoking
> get_vlpi_map(), which restore some of the logic in lpi_write_config().
>
> Fixes: c1d4d5cd203c ("irqchip/gic-v3-its: Add its_vlpi_map helpers")
> Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
> ---
>
> This is based on mainline and can't be directly applied to the current
> irqchip-next.
>
> drivers/irqchip/irq-gic-v3-its.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/irqchip/irq-gic-v3-its.c
> b/drivers/irqchip/irq-gic-v3-its.c
> index e05673bcd52b..cc8a4fcbd6d6 100644
> --- a/drivers/irqchip/irq-gic-v3-its.c
> +++ b/drivers/irqchip/irq-gic-v3-its.c
> @@ -1181,12 +1181,13 @@ static struct its_vlpi_map
> *get_vlpi_map(struct irq_data *d)
>
> static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
> {
> - struct its_vlpi_map *map = get_vlpi_map(d);
> irq_hw_number_t hwirq;
> void *va;
> u8 *cfg;
>
> - if (map) {
> + if (irqd_is_forwarded_to_vcpu(d)) {
> + struct its_vlpi_map *map = get_vlpi_map(d);
> +
> va = page_address(map->vm->vprop_page);
> hwirq = map->vintid;
Shouldn't we fix get_vlpi_map() instead? Something like (untested):
diff --git a/drivers/irqchip/irq-gic-v3-its.c
b/drivers/irqchip/irq-gic-v3-its.c
index e05673bcd52b..b704214390c0 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -1170,13 +1170,14 @@ static void its_send_vclear(struct its_device
*dev, u32 event_id)
*/
static struct its_vlpi_map *get_vlpi_map(struct irq_data *d)
{
- struct its_device *its_dev = irq_data_get_irq_chip_data(d);
- u32 event = its_get_event_id(d);
+ if (irqd_is_forwarded_to_vcpu(d)) {
+ struct its_device *its_dev = irq_data_get_irq_chip_data(d);
+ u32 event = its_get_event_id(d);
- if (!irqd_is_forwarded_to_vcpu(d))
- return NULL;
+ return dev_event_to_vlpi_map(its_dev, event);
+ }
- return dev_event_to_vlpi_map(its_dev, event);
+ return NULL;
}
static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
Or am I missing the actual problem?
Overall, I'm starting to hate that ->parent hack as it's been the source
of a number of bugs.
The main issue is that the VPE hierarchy is missing one level (it has
no ITS domain, and goes directly from the VPE domain to the low-level
GIC domain). It means we end-up special-casing things, and that's never
good...
M.
--
Jazz is not dead. It just smells funny...
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Marc Zyngier <maz@kernel.org>
To: Zenghui Yu <yuzenghui@huawei.com>
Cc: kvmarm@lists.cs.columbia.edu, linux-kernel@vger.kernel.org,
tglx@linutronix.de, jason@lakedaemon.net,
wanghaibin.wang@huawei.com
Subject: Re: [PATCH] irqchip/gic-v3-its: Don't confuse get_vlpi_map() by writing DB config
Date: Wed, 22 Jan 2020 10:44:06 +0000 [thread overview]
Message-ID: <4aaaad3ae7367c5c932c430e18550d9e@kernel.org> (raw)
In-Reply-To: <20200122085609.658-1-yuzenghui@huawei.com>
Hi Zenghui,
Thanks for this.
On 2020-01-22 08:56, Zenghui Yu wrote:
> When we're writing config for the doorbell interrupt, get_vlpi_map()
> will
> get confused by doorbell's d->parent_data hack and find the wrong
> its_dev
> as chip data and the wrong event.
>
> Fix this issue by making sure no doorbells will be involved before
> invoking
> get_vlpi_map(), which restore some of the logic in lpi_write_config().
>
> Fixes: c1d4d5cd203c ("irqchip/gic-v3-its: Add its_vlpi_map helpers")
> Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
> ---
>
> This is based on mainline and can't be directly applied to the current
> irqchip-next.
>
> drivers/irqchip/irq-gic-v3-its.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/irqchip/irq-gic-v3-its.c
> b/drivers/irqchip/irq-gic-v3-its.c
> index e05673bcd52b..cc8a4fcbd6d6 100644
> --- a/drivers/irqchip/irq-gic-v3-its.c
> +++ b/drivers/irqchip/irq-gic-v3-its.c
> @@ -1181,12 +1181,13 @@ static struct its_vlpi_map
> *get_vlpi_map(struct irq_data *d)
>
> static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
> {
> - struct its_vlpi_map *map = get_vlpi_map(d);
> irq_hw_number_t hwirq;
> void *va;
> u8 *cfg;
>
> - if (map) {
> + if (irqd_is_forwarded_to_vcpu(d)) {
> + struct its_vlpi_map *map = get_vlpi_map(d);
> +
> va = page_address(map->vm->vprop_page);
> hwirq = map->vintid;
Shouldn't we fix get_vlpi_map() instead? Something like (untested):
diff --git a/drivers/irqchip/irq-gic-v3-its.c
b/drivers/irqchip/irq-gic-v3-its.c
index e05673bcd52b..b704214390c0 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -1170,13 +1170,14 @@ static void its_send_vclear(struct its_device
*dev, u32 event_id)
*/
static struct its_vlpi_map *get_vlpi_map(struct irq_data *d)
{
- struct its_device *its_dev = irq_data_get_irq_chip_data(d);
- u32 event = its_get_event_id(d);
+ if (irqd_is_forwarded_to_vcpu(d)) {
+ struct its_device *its_dev = irq_data_get_irq_chip_data(d);
+ u32 event = its_get_event_id(d);
- if (!irqd_is_forwarded_to_vcpu(d))
- return NULL;
+ return dev_event_to_vlpi_map(its_dev, event);
+ }
- return dev_event_to_vlpi_map(its_dev, event);
+ return NULL;
}
static void lpi_write_config(struct irq_data *d, u8 clr, u8 set)
Or am I missing the actual problem?
Overall, I'm starting to hate that ->parent hack as it's been the source
of a number of bugs.
The main issue is that the VPE hierarchy is missing one level (it has
no ITS domain, and goes directly from the VPE domain to the low-level
GIC domain). It means we end-up special-casing things, and that's never
good...
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2020-01-22 10:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-22 8:56 [PATCH] irqchip/gic-v3-its: Don't confuse get_vlpi_map() by writing DB config Zenghui Yu
2020-01-22 8:56 ` Zenghui Yu
2020-01-22 10:44 ` Marc Zyngier [this message]
2020-01-22 10:44 ` Marc Zyngier
2020-01-22 11:29 ` Zenghui Yu
2020-01-22 11:29 ` Zenghui Yu
2020-01-22 15:22 ` Marc Zyngier
2020-01-22 15:22 ` Marc Zyngier
2020-01-24 19:11 ` [tip: irq/core] irqchip/gic-v3-its: Fix get_vlpi_map() breakage with doorbells tip-bot2 for Marc Zyngier
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=4aaaad3ae7367c5c932c430e18550d9e@kernel.org \
--to=maz@kernel.org \
--cc=jason@lakedaemon.net \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=yuzenghui@huawei.com \
/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.