From: "Andreas Färber" <andreas.faerber@web.de>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Blue Swirl <blauwirbel@gmail.com>,
Anthony Liguori <aliguori@us.ibm.com>,
hpoussin@reactos.org, qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 16/23] i8259: PREP: Replace pic_intack_read with pic_read_irq
Date: Wed, 12 Oct 2011 18:02:45 +0200 [thread overview]
Message-ID: <4E95BA25.3070804@web.de> (raw)
In-Reply-To: <f6f366b86bc76d653e28239e7da67165954b8617.1317971994.git.jan.kiszka@siemens.com>
Hello Jan,
Since the last round of pulls, PReP magically boots again. :)
Am 07.10.2011 09:19, schrieb Jan Kiszka:
> There is nothing in the i8259 spec that justifies the special
> pic_intack_read. At least the Linux PREP kernels configure the PICs
> properly so that pic_read_irq returns identical values, and setting
> read_reg_select in PIC0 cannot be derived from any special i8259 mode.
>
> So switch ppc_prep to pic_read_irq and drop the now unused PIC code.
Seems to resolve an existing XXX in the code.
> CC: Andreas Färber <andreas.faerber@web.de>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Linux is the only thing we can boot with -M prep that I'm aware of, via
-kernel. And the 40p series doesn't use this at all. I see no regression
on my Debian Etch, so I'm fine with the simplification.
Tested-by: Andreas Färber <andreas.faerber@web.de>
> diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c
> index d26049b..6427baa 100644
> --- a/hw/ppc_prep.c
> +++ b/hw/ppc_prep.c
> @@ -130,7 +130,7 @@ static inline uint32_t _PPC_intack_read(target_phys_addr_t addr)
> uint32_t retval = 0;
>
> if ((addr & 0xf) == 0)
> - retval = pic_intack_read(isa_pic);
> + retval = pic_read_irq(isa_pic);
Mind to add the braces while touching it?
Regards,
Andreas
next prev parent reply other threads:[~2011-10-12 16:03 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-07 7:19 [Qemu-devel] [PATCH v2 00/23] Rework i8259 and PC interrupt models Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 01/23] pc: Drop useless test from isa_irq_handler Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 02/23] pc: Generalize ISA IRQs to GSIs Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 03/23] pc: Convert GSIState::i8259_irq into array Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 04/23] pc: Fix and clean up PIC-to-APIC IRQ path Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 05/23] i8259: Remove premature inline function attributes Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 06/23] i8259: Drop obsolete prototypes Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 07/23] i8259: Move pic_set_irq1 after pic_update_irq Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 08/23] i8239: Introduce per-PIC output interrupt Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 09/23] i8259: Do not update IRQ output after spurious pic_poll_read Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 10/23] i8259: Reorder intack in pic_read_irq Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 11/23] i8259: Update IRQ state after reset Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 12/23] i8259: Clear ELCR on reset Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 13/23] i8259: Switch to per-PIC IRQ update Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 14/23] i8259: Fix poll command Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 15/23] i8259: Clean up pic_ioport_read Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 16/23] i8259: PREP: Replace pic_intack_read with pic_read_irq Jan Kiszka
2011-10-12 16:02 ` Andreas Färber [this message]
2011-10-12 16:10 ` Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 17/23] i8259: Replace PicState::pics_state with master flag Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 18/23] i8259: Eliminate PicState2 Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 19/23] qdev: Add HEX8 property Jan Kiszka
2011-10-07 8:39 ` Andreas Färber
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 20/23] i8259: Convert to qdev Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 21/23] i8259: Fix coding style Jan Kiszka
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 22/23] monitor: Restrict pic/irq_info to supporting targets Jan Kiszka
2011-10-16 9:53 ` [Qemu-devel] [PATCH v3 " Jan Kiszka
2011-10-18 23:07 ` Andreas Färber
2011-10-07 7:19 ` [Qemu-devel] [PATCH v2 23/23] i8259: Move to hw library Jan Kiszka
2011-10-16 9:53 ` [Qemu-devel] [PATCH v3 " Jan Kiszka
2011-10-15 21:01 ` [Qemu-devel] [PATCH v2 00/23] Rework i8259 and PC interrupt models Blue Swirl
2011-10-16 12:03 ` Blue Swirl
2011-10-16 12:07 ` malc
2011-10-16 12:22 ` Jan Kiszka
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=4E95BA25.3070804@web.de \
--to=andreas.faerber@web.de \
--cc=aliguori@us.ibm.com \
--cc=blauwirbel@gmail.com \
--cc=hpoussin@reactos.org \
--cc=jan.kiszka@siemens.com \
--cc=qemu-devel@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 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).