From: BALATON Zoltan <balaton@eik.bme.hu>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Cc: Kevin Wolf <kwolf@redhat.com>,
jsnow@redhat.com, qemu-block@nongnu.org, qemu-devel@nongnu.org,
philmd@linaro.org, shentey@gmail.com
Subject: Re: [PATCH v2 1/3] ide/pci.c: introduce pci_ide_update_mode() function
Date: Tue, 14 Nov 2023 00:47:31 +0100 (CET) [thread overview]
Message-ID: <d09e8c8a-2ec5-16a7-46a8-8b2fccac94e8@eik.bme.hu> (raw)
In-Reply-To: <41a91dda-8bac-4b7f-9655-2b09e074d808@ilande.co.uk>
On Mon, 13 Nov 2023, Mark Cave-Ayland wrote:
> On 07/11/2023 11:11, Kevin Wolf wrote:
>> Am 06.11.2023 um 23:41 hat Mark Cave-Ayland geschrieben:
>>> On 06/11/2023 14:12, Kevin Wolf wrote:
>>>
>>> Hi Kevin,
>>>
>>> Thanks for taking the time to review this. I'll reply inline below.
>>>
>>>> Am 25.10.2023 um 00:40 hat Mark Cave-Ayland geschrieben:
>>>>> This function reads the value of the PCI_CLASS_PROG register for PCI IDE
>>>>> controllers and configures the PCI BARs and/or IDE ioports accordingly.
>>>>>
>>>>> In the case where we switch to legacy mode, the PCI BARs are set to
>>>>> return zero
>>>>> (as suggested in the "PCI IDE Controller" specification), the legacy IDE
>>>>> ioports
>>>>> are enabled, and the PCI interrupt pin cleared to indicate legacy IRQ
>>>>> routing.
>>>>>
>>>>> Conversely when we switch to native mode, the legacy IDE ioports are
>>>>> disabled
>>>>> and the PCI interrupt pin set to indicate native IRQ routing. The
>>>>> contents of
>>>>> the PCI BARs are unspecified, but this is not an issue since if a PCI
>>>>> IDE
>>>>> controller has been switched to native mode then its BARs will need to
>>>>> be
>>>>> programmed.
>>>>>
>>>>> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
>>>>> Tested-by: BALATON Zoltan <balaton@eik.bme.hu>
>>>>> Tested-by: Bernhard Beschow <shentey@gmail.com>
>>>>> ---
>>>>> hw/ide/pci.c | 90
>>>>> ++++++++++++++++++++++++++++++++++++++++++++
>>>>> include/hw/ide/pci.h | 1 +
>>>>> 2 files changed, 91 insertions(+)
>>>>>
>>>>> diff --git a/hw/ide/pci.c b/hw/ide/pci.c
>>>>> index a25b352537..5be643b460 100644
>>>>> --- a/hw/ide/pci.c
>>>>> +++ b/hw/ide/pci.c
>>>>> @@ -104,6 +104,96 @@ const MemoryRegionOps pci_ide_data_le_ops = {
>>>>> .endianness = DEVICE_LITTLE_ENDIAN,
>>>>> };
>>>>> +static const MemoryRegionPortio ide_portio_list[] = {
>>>>> + { 0, 8, 1, .read = ide_ioport_read, .write = ide_ioport_write },
>>>>> + { 0, 1, 2, .read = ide_data_readw, .write = ide_data_writew },
>>>>> + { 0, 1, 4, .read = ide_data_readl, .write = ide_data_writel },
>>>>> + PORTIO_END_OF_LIST(),
>>>>> +};
>>>>> +
>>>>> +static const MemoryRegionPortio ide_portio2_list[] = {
>>>>> + { 0, 1, 1, .read = ide_status_read, .write = ide_ctrl_write },
>>>>> + PORTIO_END_OF_LIST(),
>>>>> +};
>>>>
>>>> This is duplicated from hw/ide/ioport.c. I think it would be better to
>>>> use the arrays already defined there, ideally by calling ioport.c
>>>> functions to setup and release the I/O ports.
>>>
>>> The tricky part here is that hw/ide/ioport.c is defined for CONFIG_ISA,
>>> and
>>> so if we did that then all PCI IDE controllers would become dependent upon
>>> ISA too, regardless of whether they implement compatibility mode or not.
>>> What do you think is the best solution here? Perhaps moving
>>> ide_init_ioport() to a more ISA-specific place? I know that both myself
>>> and
>>> Phil have considered whether ide_init_ioport() should be replaced by
>>> something else further down the line.
>>
>> Hm, yes, I didn't think about this.
>>
>> Splitting ioport.c is one option, but even the port lists are really
>> made for ISA, so the whole file is really ISA related.
>>
>> On the other hand, pci_ide_update_mode() isn't really a pure PCI
>> function, it's at the intersection of PCI and ISA. Can we just #ifdef it
>> out if ISA isn't built? Devices that don't support compatibility mode
>> should never try to call pci_ide_update_mode().
>
> In terms of the QEMU modelling, the PCI IDE controllers are modelled as a
> PCIDevice rather than an ISADevice and that's why ide_init_ioport() doesn't
> really make sense in PCI IDE controllers. Currently its only PCIDevice user
> is hw/ide/piix.c and that passes ISADevice as NULL, because there is no
> underlying ISADevice.
>
> The only ISADevice user is in hw/ide/isa.c so I think a better solution here
> would be to inline ide_init_ioport() into isa_ide_realizefn() and then add a
> separate function for PCI IDE controllers which is what I've attempted to do
> here.
>
> How about moving ide_portio_list[] and ide_portio_list2[] to hw/ide/core.c
> instead? The definitions in include/hw/ide/internal.h already have a
> dependency on PortioList so there should be no issue, and it allows them to
> be shared between both PCI and ISA devices.
That's where these came from in commit 83d14054f9555 and the reason was to
get rid of the ISA dependency for machines that don't need it. Would it be
possible to make a function that only registers the portio stuff (e.g.
ide_register_ports) that's not depenent on either ISADevice nor
PCIIDEState but takes an IDEBus? That could be used by both ide-isa and
PCI devices. This would just do the portio stuff for a single bus and you
could call it twice from your pci_ide_update_mode function then rhe
portio_list arrays can remain static to core.c. That seems better than
duplicating code and exporting these arrays.
>>>>> +void pci_ide_update_mode(PCIIDEState *s)
>>>>> +{
>>>>> + PCIDevice *d = PCI_DEVICE(s);
>>>>> + uint8_t mode = d->config[PCI_CLASS_PROG];
>>>>> +
>>>>> + switch (mode & 0xf) {
>>>>> + case 0xa:
>>>>> + /* Both channels legacy mode */
>>>>
>>>> Why is it ok to handle only the case where both channels are set to the
>>>> same mode? The spec describes mixed-mode setups, too, and doesn't seem
>>>> to allow ignoring a mode change if it's only for one of the channels.
>>>
>>> Certainly that can be done: only both channels were implemented initially
>>> because that was the test case immediately available using the VIA. I can
>>> have a look at implementing both channels separately in v2.
>>
>> I don't think it would make the code more complicated, so it feels like
>> implementing it right away would be nice.
>>
>> On the other hand, if you want to see this in 8.2, I'm happy to merge
>> this part as it is and then we can improve it on top.
>
> I think this helps Zoltan boot AmigaOS on the new AmigaOne machine, and I am
> certainly planning more work in this area during the 9.0 cycle.
As said before for booting AmigaOS we need either this series or my
original fix:
https://patchew.org/QEMU/cover.1697661160.git.balaton@eik.bme.hu/4095e01f4596e77a478759161ae736f0c398600a.1697661160.git.balaton@eik.bme.hu/
for which you posted this as a replacement. If it's deemed too much change
for the freeze or you need more time ro finish this series we can take my
patch for now and come back to this later. (Recently I've found that my
patch using PCI BARs set to legacy address has a side effect that BAR4
shadows some ports of the FDC because BARs are 4 bytes which your series
avoids as it can register port 0x376 as single byte but it's easy to
disable floppy driver in AmigaOS so this is not a problem and can be fixed
later. Nobody really needs a floppy as it boots from HDD or CD and uses
network or other means to transfer files rather than floppies so it's not
needed and the additional step to disable driver is not a problem because
adding a graphics driver in the same place is also needed so users will
need to edit that config anyway. Other than this my patch solves all
problems for now in a simpler way and then can be replaced with your
series for 9.0.)
>>>>> +
>>>>> + /* Zero BARs */
>>>>> + pci_set_long(d->config + PCI_BASE_ADDRESS_0, 0x0);
>>>>> + pci_set_long(d->config + PCI_BASE_ADDRESS_1, 0x0);
>>>>> + pci_set_long(d->config + PCI_BASE_ADDRESS_2, 0x0);
>>>>> + pci_set_long(d->config + PCI_BASE_ADDRESS_3, 0x0);
>>>>
>>>> Here I'm not sure what the spec really implies. Disabling the BAR (i.e.
>>>> making it read-only and returning 0) while in compatibility mode doesn't
>>>> necessarily mean that the value of the register is lost. In other words,
>>>> are we sure that a driver can't expect that the old value is still there
>>>> when it re-enables native mode?
>>>
>>> The specification is definitely a bit vague on the details here. In the
>>> testing I've done with the VIA, there is only ever a switch from native to
>>> legacy mode, and not the other way around. I can see the logic that once
>>> you've gone from the native to legacy mode, the memory allocated for the
>>> BARs is already reserved by the OS so in theory it could be possible to
>>> switch back to native mode again... and that would work if the BARs are
>>> preserved.
>>>
>>> Would it happen in practice? I'm not really sure, but I can try to
>>> implement
>>> this if you think it makes sense to take a safer approach.
>>
>> I'm not sure if any driver tries to do something like this. Maybe a
>> situation where BIOS switches to compatibility mode and then the OS to
>> native again? But it does feel safer.
>>
>> The other option would be to not zero out the BAR at all. Doing that is
>> optional according to the spec. But then we need to make sure that we
>> ignore any access to the memory region behind the BAR even though its
>> address is still there.
>>
>> Come to think of it, don't we need to somehow disable the memory regions
>> described by the BARs even when we zero them out? I think updating the
>> config space without calling pci_update_mappings() doesn't actually stop
>> QEMU from reacting to reads and writes there, does it?
>>
>> Otherwise, the guest doesn't see the memory region in the BAR any more,
>> but it would still be active (which is almost the opposite of what we're
>> supposed to do).
>
> At least the VIA appears to still respond to the BAR addresses even when
> switched back to compatibility mode (bug?), but without more testing after
> making the functionality more generic it's difficult to say. Should the BARs
> be disabled when switched to legacy mode? According to the spec that should
I think the problem case is pegasos2 where firmware enables native mode
(with IRQ 14/15 but programming BARs) but Linux expects native mode to use
a PCI interrupt which does not work so it sets prog-if back to legacy mode
to make its driver use legacy interrupts but then keeps using BARs which
works on real hardware. Other guests don't set prog-if just use BARs and
IRQ 14/15. So it looks like real chip either still uses BARs after they
are programmed or you can't really swirch from native mode back to legacy
mode and native mode still uses legacy interrupts. I think this chip does
not really follow PCI specs (it's an early part from when PCI was new and
likely developed from an ISA superIO chip with some PCI support added so
maybe it only partially implemented the spec or had some excensions not
compying with it.)
> be the case, but then a switch from native -> legacy mode doesn't matter
> because the BAR addresses are already reserved, and a switch from legacy ->
> native mode would require the BARs to be (re)programmed anyway. I will
> definitely do some testing with the functionality enabled for all PCI IDE
> controllers in future, however I'm minded to keep it as simple as possible.
>
>>>>> + /* Clear interrupt pin */
>>>>> + pci_config_set_interrupt_pin(d->config, 0);
>>>>
>>>> Unlike for the BARs, I don't see anything in the spec that allows
>>>> disabling this byte. I doubt it hurts in practice, but did you see any
>>>> drivers requiring this? According to the spec, we just must not use the
>>>> PCI interrupt in compatbility mode, but the registers stay accessible.
>>>
>>> The PCI config dumps taken from a real VIA indicate that this byte is
>>> cleared in legacy mode, and that appears to make sense here. If you
>>> imagine
>>> an early PCI IDE controller, it will always start up in legacy mode and so
>>> you don't want to indicate to the guest OS that PCI IRQ routing is
>>> required
>>> unless it has been switched to native mode first.
>>
>> Ok. I assume that with a per-channel control, you would clear it only if
>> both channels are in compatibility mode, and set it as soon as one
>> channel is in native mode?
>
> Yes, I believe that's correct.
>
>>>> As far as I can see, the whole PCI interrupt configuration is currently
>>>> unused anyway, and nothing in this series seems to change it. So won't
>>>> we incorrectly continue to use the legacy interrupt even in native mode?
>>>> (Actually, cmd646 seems to get it wrong the other way around and uses
>>>> the PCI interrupt even in compatibility mode.)
>>>>
>>>> I think this means that BMDMAState needs to have two irq lines (a legacy
>>>> and a PCI one) and select the right one in bmdma_irq() depending on
>>>> which mode we're in currently.
>>>
>>> I need to flesh out the details a bit more (in particular testing with
>>> more
>>> than just the VIA PCI IDE controller), but yes the eventual aim is to
>>> consolidate the majority of the BMDMA and mode switching code into
>>> hw/ide/pci.c so the individual controllers don't need to worry about this,
>>> and everything "just works".
>>
>> Zoltan's reply for patch 3 actuallys say that it's correct like this for
>> the VIA controller, in conflict with what the spec says. So it seems
>> that we can't make it "just work" for everyone, but we still need to
>> allow devices to intercept it at least.
>
> I've replied separately to this, and as mentioned that's something that will
> likely require some future updates to the PCI IRQ routing code.
>
>> As I said there, adding a comment in the via emulation should be enough
>> for now, and we can leave proper generic interrupt handling for another
>> day (when we want to add switching to a model that's actually consistent
>> with the spec).
>
> Agreed.
>
>> Maybe also leave a TODO comment at the top of this function to remind
>> other users that interrupt handling needs to be covered by individual
>> devices for now.
>
> Yes I can definitely add a comment with a TODO. For now in terms of 8.2 would
> you be happy with:
>
> - Moving ide_portio_list[] and ide_portio_list2[] to hw/ide/core.c
>
> - Change the configuration space access to read all zeros for BARs in
> compatibility mode instead of zeroing the BARs
What would this achieve other than having more complex code for nothing?
If anything enables native mode it will also program BARs, it's very
unlikely any guest would switch to legacy mode than back to native and
expect some values programmed before be still in BARs so you could either
zero the values or just leave them as nothing cares anyway. Adding a
separare read function for this seems like unnecessary complication to me.
So I'd leave this point out, the rest seems OK.
> - Leave it so that both channels are switched at the same time
>
> - Add a TODO comment to pci_ide_update_mode() indicating that individual PCI
> IDE
> controllers are responsible for their own IRQ routing
One more thing is that you should set the deafult value of the BMDMA BAR
somewhere, this part in my patch
pci_set_long(pd->config + PCI_BASE_ADDRESS_4, 0xcc00 | PCI_BASE_ADDRESS_SPACE_IO);
Otherwise enabling UDMA mode does not work. It's disabled by default on
amigaone because real machine had problems with DMA, both the VIA chip and
ArticiaS were notorious for DMA errors but it can be enabled which works
with my patch and is much faster but hangs with your patch because AmigaOS
reads the BMDMA BAR value but does not set it so there should be the
default value there.
Regards,
BALATON Zoltan
next prev parent reply other threads:[~2023-11-13 23:47 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-24 22:40 [PATCH v2 0/3] ide: implement simple legacy/native mode switching for PCI IDE controllers Mark Cave-Ayland
2023-10-24 22:40 ` [PATCH v2 1/3] ide/pci.c: introduce pci_ide_update_mode() function Mark Cave-Ayland
2023-11-06 14:12 ` Kevin Wolf
2023-11-06 22:41 ` Mark Cave-Ayland
2023-11-07 11:11 ` Kevin Wolf
2023-11-13 21:24 ` Mark Cave-Ayland
2023-11-13 23:47 ` BALATON Zoltan [this message]
2023-11-14 17:59 ` Kevin Wolf
2023-10-24 22:40 ` [PATCH v2 2/3] ide/via: don't attempt to set default BAR addresses Mark Cave-Ayland
2023-10-24 23:06 ` BALATON Zoltan
2023-10-24 22:40 ` [PATCH v2 3/3] hw/ide/via: implement legacy/native mode switching Mark Cave-Ayland
2023-11-06 14:35 ` Kevin Wolf
2023-11-06 16:13 ` BALATON Zoltan
2023-11-07 10:43 ` Kevin Wolf
2023-11-13 20:45 ` Mark Cave-Ayland
2023-11-14 0:04 ` BALATON Zoltan
2023-11-01 10:49 ` [PATCH v2 0/3] ide: implement simple legacy/native mode switching for PCI IDE controllers BALATON Zoltan
2023-11-02 9:03 ` Bernhard Beschow
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=d09e8c8a-2ec5-16a7-46a8-8b2fccac94e8@eik.bme.hu \
--to=balaton@eik.bme.hu \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=philmd@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=shentey@gmail.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 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).