From: Fabiano Rosas <farosas@linux.ibm.com>
To: Matheus Ferst <matheus.ferst@eldorado.org.br>,
qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Cc: clg@kaod.org, danielhb413@gmail.com, david@gibson.dropbear.id.au,
groug@kaod.org, fbarrat@linux.ibm.com, alex.bennee@linaro.org,
Matheus Ferst <matheus.ferst@eldorado.org.br>
Subject: Re: [PATCH v3 05/29] target/ppc: create an interrupt masking method for POWER9/POWER10
Date: Thu, 13 Oct 2022 09:40:49 -0300 [thread overview]
Message-ID: <87fsfrew1a.fsf@linux.ibm.com> (raw)
In-Reply-To: <20221011204829.1641124-6-matheus.ferst@eldorado.org.br>
Matheus Ferst <matheus.ferst@eldorado.org.br> writes:
> The new method is identical to ppc_next_unmasked_interrupt_generic,
> processor-specific code will be added/removed in the following patches.
>
> Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Reviewed-by: Fabiano Rosas <farosas@linux.ibm.com>
next prev parent reply other threads:[~2022-10-13 13:28 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-11 20:48 [PATCH v3 00/29] PowerPC interrupt rework Matheus Ferst
2022-10-11 20:48 ` [PATCH v3 01/29] target/ppc: define PPC_INTERRUPT_* values directly Matheus Ferst
2022-10-11 20:48 ` [PATCH v3 02/29] target/ppc: always use ppc_set_irq to set env->pending_interrupts Matheus Ferst
2022-10-11 20:48 ` [PATCH v3 03/29] target/ppc: split interrupt masking and delivery from ppc_hw_interrupt Matheus Ferst
2022-10-13 12:38 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 04/29] target/ppc: prepare to split interrupt masking and delivery by excp_model Matheus Ferst
2022-10-13 12:39 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 05/29] target/ppc: create an interrupt masking method for POWER9/POWER10 Matheus Ferst
2022-10-13 12:40 ` Fabiano Rosas [this message]
2022-10-11 20:48 ` [PATCH v3 06/29] target/ppc: remove unused interrupts from p9_next_unmasked_interrupt Matheus Ferst
2022-10-13 12:43 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 07/29] target/ppc: create an interrupt deliver method for POWER9/POWER10 Matheus Ferst
2022-10-13 12:44 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 08/29] target/ppc: remove unused interrupts from p9_deliver_interrupt Matheus Ferst
2022-10-13 12:46 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 09/29] target/ppc: remove generic architecture checks " Matheus Ferst
2022-10-13 12:46 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 10/29] target/ppc: move power-saving interrupt masking out of cpu_has_work_POWER9 Matheus Ferst
2022-10-13 12:50 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 11/29] target/ppc: add power-saving interrupt masking logic to p9_next_unmasked_interrupt Matheus Ferst
2022-10-13 13:11 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 12/29] target/ppc: create an interrupt masking method for POWER8 Matheus Ferst
2022-10-14 14:07 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 13/29] target/ppc: remove unused interrupts from p8_next_unmasked_interrupt Matheus Ferst
2022-10-14 14:41 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 14/29] target/ppc: create an interrupt deliver method for POWER8 Matheus Ferst
2022-10-14 14:42 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 15/29] target/ppc: remove unused interrupts from p8_deliver_interrupt Matheus Ferst
2022-10-14 14:47 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 16/29] target/ppc: remove generic architecture checks " Matheus Ferst
2022-10-14 14:47 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 17/29] target/ppc: move power-saving interrupt masking out of cpu_has_work_POWER8 Matheus Ferst
2022-10-14 14:48 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 18/29] target/ppc: add power-saving interrupt masking logic to p8_next_unmasked_interrupt Matheus Ferst
2022-10-14 14:50 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 19/29] target/ppc: create an interrupt masking method for POWER7 Matheus Ferst
2022-10-14 15:06 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 20/29] target/ppc: remove unused interrupts from p7_next_unmasked_interrupt Matheus Ferst
2022-10-14 15:11 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 21/29] target/ppc: create an interrupt deliver method for POWER7 Matheus Ferst
2022-10-14 15:11 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 22/29] target/ppc: remove unused interrupts from p7_deliver_interrupt Matheus Ferst
2022-10-14 15:14 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 23/29] target/ppc: remove generic architecture checks " Matheus Ferst
2022-10-14 15:15 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 24/29] target/ppc: move power-saving interrupt masking out of cpu_has_work_POWER7 Matheus Ferst
2022-10-14 15:15 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 25/29] target/ppc: add power-saving interrupt masking logic to p7_next_unmasked_interrupt Matheus Ferst
2022-10-14 15:16 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 26/29] target/ppc: remove ppc_store_lpcr from CONFIG_USER_ONLY builds Matheus Ferst
2022-10-14 15:16 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 27/29] target/ppc: introduce ppc_maybe_interrupt Matheus Ferst
2022-10-14 15:19 ` Fabiano Rosas
2022-10-11 20:48 ` [PATCH v3 28/29] target/ppc: unify cpu->has_work based on cs->interrupt_request Matheus Ferst
2022-10-11 20:48 ` [PATCH v3 29/29] target/ppc: move the p*_interrupt_powersave methods to excp_helper.c Matheus Ferst
2022-10-17 21:28 ` [PATCH v3 00/29] PowerPC interrupt rework Daniel Henrique Barboza
2022-10-19 21:55 ` Daniel Henrique Barboza
2022-10-20 11:18 ` Daniel Henrique Barboza
2022-10-20 13:40 ` Matheus K. Ferst
2022-10-21 10:56 ` Daniel Henrique Barboza
2022-10-21 14:21 ` Matheus K. Ferst
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=87fsfrew1a.fsf@linux.ibm.com \
--to=farosas@linux.ibm.com \
--cc=alex.bennee@linaro.org \
--cc=clg@kaod.org \
--cc=danielhb413@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=fbarrat@linux.ibm.com \
--cc=groug@kaod.org \
--cc=matheus.ferst@eldorado.org.br \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/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.