* [Qemu-devel] [PULL 0/1] alpha-softmmu queue
@ 2018-06-18 16:49 Richard Henderson
2018-06-18 16:49 ` [Qemu-devel] [PULL 1/1] hw/isa/smc37c669: Change the parallel I/O base to 378H Richard Henderson
2018-06-19 16:42 ` [Qemu-devel] [PULL 0/1] alpha-softmmu queue Peter Maydell
0 siblings, 2 replies; 3+ messages in thread
From: Richard Henderson @ 2018-06-18 16:49 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell
The following changes since commit 2ef2f16781af9dee6ba6517755e9073ba5799fa2:
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20180615a' into staging (2018-06-15 18:13:35 +0100)
are available in the Git repository at:
https://github.com/rth7680/qemu.git tags/pull-axp-20180618
for you to fetch changes up to 75cacb128b2d39863a72f60cbefc0987cbcaf641:
hw/isa/smc37c669: Change the parallel I/O base to 378H (2018-06-16 19:46:54 -1000)
----------------------------------------------------------------
Place parallel device properly, fixing vga
----------------------------------------------------------------
Philippe Mathieu-Daudé (1):
hw/isa/smc37c669: Change the parallel I/O base to 378H
hw/isa/smc37c669-superio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PULL 1/1] hw/isa/smc37c669: Change the parallel I/O base to 378H
2018-06-18 16:49 [Qemu-devel] [PULL 0/1] alpha-softmmu queue Richard Henderson
@ 2018-06-18 16:49 ` Richard Henderson
2018-06-19 16:42 ` [Qemu-devel] [PULL 0/1] alpha-softmmu queue Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2018-06-18 16:49 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell, Philippe Mathieu-Daudé
From: Philippe Mathieu-Daudé <f4bug@amsat.org>
On the Alpha DP264 machine, the Cirrus VGA is I/O mapped
in the 3C0H-3CFH range, thus I/O base used by the parallel
device clashes, and since a4cb773928e the VGA is not
working:
(qemu) info mtree
address-space: memory
0000000000000000-ffffffffffffffff (prio 0, i/o): system
00000801fc000000-00000801fdffffff (prio 0, i/o): pci0-io
...
00000801fc0003b4-00000801fc0003b5 (prio 0, i/o): vga
00000801fc0003ba-00000801fc0003ba (prio 0, i/o): vga
00000801fc0003bc-00000801fc0003c3 (prio 0, i/o): parallel
^^^ ^^^^^^^^
00000801fc0003c0-00000801fc0003cf (prio 0, i/o): vga
^^^
00000801fc0003d4-00000801fc0003d5 (prio 0, i/o): vga
00000801fc0003da-00000801fc0003da (prio 0, i/o): vga
...
As there is no particular reason to use this base address
(introduced in 7bea0dd434e), change to 378H which is the
default on PC machines.
Reported-by: Emilio G. Cota <cota@braap.org>
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Tested-by: Emilio G. Cota <cota@braap.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180614233935.26585-1-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
hw/isa/smc37c669-superio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/isa/smc37c669-superio.c b/hw/isa/smc37c669-superio.c
index aa233c6967..64466a9373 100644
--- a/hw/isa/smc37c669-superio.c
+++ b/hw/isa/smc37c669-superio.c
@@ -37,7 +37,7 @@ static bool is_parallel_enabled(ISASuperIODevice *sio, uint8_t index)
static uint16_t get_parallel_iobase(ISASuperIODevice *sio, uint8_t index)
{
- return 0x3bc;
+ return 0x378;
}
static unsigned int get_parallel_irq(ISASuperIODevice *sio, uint8_t index)
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] alpha-softmmu queue
2018-06-18 16:49 [Qemu-devel] [PULL 0/1] alpha-softmmu queue Richard Henderson
2018-06-18 16:49 ` [Qemu-devel] [PULL 1/1] hw/isa/smc37c669: Change the parallel I/O base to 378H Richard Henderson
@ 2018-06-19 16:42 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2018-06-19 16:42 UTC (permalink / raw)
To: Richard Henderson; +Cc: QEMU Developers
On 18 June 2018 at 17:49, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 2ef2f16781af9dee6ba6517755e9073ba5799fa2:
>
> Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20180615a' into staging (2018-06-15 18:13:35 +0100)
>
> are available in the Git repository at:
>
> https://github.com/rth7680/qemu.git tags/pull-axp-20180618
>
> for you to fetch changes up to 75cacb128b2d39863a72f60cbefc0987cbcaf641:
>
> hw/isa/smc37c669: Change the parallel I/O base to 378H (2018-06-16 19:46:54 -1000)
>
> ----------------------------------------------------------------
> Place parallel device properly, fixing vga
>
> ----------------------------------------------------------------
> Philippe Mathieu-Daudé (1):
> hw/isa/smc37c669: Change the parallel I/O base to 378H
>
> hw/isa/smc37c669-superio.c | 2 +-
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-06-19 16:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-18 16:49 [Qemu-devel] [PULL 0/1] alpha-softmmu queue Richard Henderson
2018-06-18 16:49 ` [Qemu-devel] [PULL 1/1] hw/isa/smc37c669: Change the parallel I/O base to 378H Richard Henderson
2018-06-19 16:42 ` [Qemu-devel] [PULL 0/1] alpha-softmmu queue Peter Maydell
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).