From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Xiaojuan Yang <yangxiaojuan@loongson.cn>, qemu-devel@nongnu.org
Cc: richard.henderson@linaro.org, gaosong@loongson.cn, f4bug@amsat.org
Subject: Re: [PATCH v6 1/1] hw/intc: Fix LoongArch extioi coreisr accessing
Date: Wed, 19 Oct 2022 13:00:11 +0200 [thread overview]
Message-ID: <f7c4f7ca-cbf9-87d6-4d8c-5957c36ae23c@linaro.org> (raw)
In-Reply-To: <20221019091546.2148418-2-yangxiaojuan@loongson.cn>
On 19/10/22 11:15, Xiaojuan Yang wrote:
> When cpu read or write extioi COREISR reg, it should access
"When the CPU reads or writes ..."
> the reg belonged to itself, so the cpu index of 's->coreisr'
> is current cpu number. Using MemTxAttrs' requester_id to get
> the cpu index.
>
> Signed-off-by: Xiaojuan Yang <yangxiaojuan@loongson.cn>
> ---
> hw/intc/loongarch_extioi.c | 42 ++++++++++++++++++---------------
> hw/intc/trace-events | 3 +--
> target/loongarch/iocsr_helper.c | 18 +++++++-------
> 3 files changed, 34 insertions(+), 29 deletions(-)
> -static uint64_t extioi_readw(void *opaque, hwaddr addr, unsigned size)
> +static MemTxResult extioi_readw(void *opaque, hwaddr addr, uint64_t *data,
> + unsigned size, MemTxAttrs attrs)
> {
This patch would be easier to review if you split it in 2, first
converting the MemoryRegionOps read/write handlers to _with_attrs
ones, then another patch fetching the CPU id from attrs.requester_id.
> LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
> unsigned long offset = addr & 0xffff;
> - uint32_t index, cpu, ret = 0;
> + uint32_t index, cpu;
>
> switch (offset) {
> case EXTIOI_NODETYPE_START ... EXTIOI_NODETYPE_END - 1:
> index = (offset - EXTIOI_NODETYPE_START) >> 2;
> - ret = s->nodetype[index];
> + *data = s->nodetype[index];
> break;
> case EXTIOI_IPMAP_START ... EXTIOI_IPMAP_END - 1:
> index = (offset - EXTIOI_IPMAP_START) >> 2;
> - ret = s->ipmap[index];
> + *data = s->ipmap[index];
> break;
> case EXTIOI_ENABLE_START ... EXTIOI_ENABLE_END - 1:
> index = (offset - EXTIOI_ENABLE_START) >> 2;
> - ret = s->enable[index];
> + *data = s->enable[index];
> break;
> case EXTIOI_BOUNCE_START ... EXTIOI_BOUNCE_END - 1:
> index = (offset - EXTIOI_BOUNCE_START) >> 2;
> - ret = s->bounce[index];
> + *data = s->bounce[index];
> break;
> case EXTIOI_COREISR_START ... EXTIOI_COREISR_END - 1:
> - index = ((offset - EXTIOI_COREISR_START) & 0x1f) >> 2;
> - cpu = ((offset - EXTIOI_COREISR_START) >> 8) & 0x3;
> - ret = s->coreisr[cpu][index];
> + index = (offset - EXTIOI_COREISR_START) >> 2;
> + /* using attrs to get current cpu index */
> + cpu = attrs.requester_id;
assert(attrs.requester_type == MTRT_CPU);
> + *data = s->coreisr[cpu][index];
> break;
> case EXTIOI_COREMAP_START ... EXTIOI_COREMAP_END - 1:
> index = (offset - EXTIOI_COREMAP_START) >> 2;
> - ret = s->coremap[index];
> + *data = s->coremap[index];
> break;
> default:
> break;
> }
>
> - trace_loongarch_extioi_readw(addr, ret);
> - return ret;
> + trace_loongarch_extioi_readw(addr, *data);
> + return MEMTX_OK;
> }
> -static void extioi_writew(void *opaque, hwaddr addr,
> - uint64_t val, unsigned size)
> +static MemTxResult extioi_writew(void *opaque, hwaddr addr,
> + uint64_t val, unsigned size,
> + MemTxAttrs attrs)
> {
> LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
> int i, cpu, index, old_data, irq;
> @@ -183,8 +185,9 @@ static void extioi_writew(void *opaque, hwaddr addr,
> s->bounce[index] = val;
> break;
> case EXTIOI_COREISR_START ... EXTIOI_COREISR_END - 1:
> - index = ((offset - EXTIOI_COREISR_START) & 0x1f) >> 2;
> - cpu = ((offset - EXTIOI_COREISR_START) >> 8) & 0x3;
> + index = (offset - EXTIOI_COREISR_START) >> 2;
> + /* using attrs to get current cpu index */
assert(attrs.requester_type == MTRT_CPU);
> + cpu = attrs.requester_id;
> old_data = s->coreisr[cpu][index];
> s->coreisr[cpu][index] = old_data & ~val;
> /* write 1 to clear interrrupt */
> @@ -231,11 +234,12 @@ static void extioi_writew(void *opaque, hwaddr addr,
> default:
> break;
> }
> + return MEMTX_OK;
> }
prev parent reply other threads:[~2022-10-19 11:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-19 9:15 [PATCH v6 0/1] Fix LoongArch extioi coreisr accessing Xiaojuan Yang
2022-10-19 9:15 ` [PATCH v6 1/1] hw/intc: " Xiaojuan Yang
2022-10-19 11:00 ` Philippe Mathieu-Daudé [this message]
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=f7c4f7ca-cbf9-87d6-4d8c-5957c36ae23c@linaro.org \
--to=philmd@linaro.org \
--cc=f4bug@amsat.org \
--cc=gaosong@loongson.cn \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=yangxiaojuan@loongson.cn \
/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 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).