qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>,
	"Bernhard Beschow" <shentey@gmail.com>,
	"John Snow" <jsnow@redhat.com>,
	"BALATON Zoltan" <balaton@eik.bme.hu>,
	"Eduardo Habkost" <eduardo@habkost.net>
Cc: qemu-devel@nongnu.org,
	"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
	"Hervé Poussineau" <hpoussin@reactos.org>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Aurelien Jarno" <aurelien@aurel32.net>,
	"David Hildenbrand" <david@redhat.com>,
	"Peter Xu" <peterx@redhat.com>,
	qemu-ppc@nongnu.org, qemu-block@nongnu.org,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Alistair Francis" <alistair@alistair23.me>,
	"Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Subject: Re: [PATCH v2 07/10] hw/ide/piix: Require an ISABus only for user-created instances
Date: Mon, 6 Feb 2023 09:15:02 +0000	[thread overview]
Message-ID: <5095dffc-309b-6c72-d255-8cdaa6fd3d52@ilande.co.uk> (raw)
In-Reply-To: <54381726-dcab-8fb2-636d-4937bf0f4866@linaro.org>

On 06/02/2023 06:51, Philippe Mathieu-Daudé wrote:

> On 5/2/23 23:32, Mark Cave-Ayland wrote:
>> On 05/02/2023 22:21, BALATON Zoltan wrote:
>>
>>> On Sun, 5 Feb 2023, Mark Cave-Ayland wrote:
>>>> On 26/01/2023 21:17, Bernhard Beschow wrote:
>>>>> Internal instances now defer interrupt wiring to the caller which
>>>>> decouples them from the ISABus. User-created devices still fish out the
>>>>> ISABus from the QOM tree and the interrupt wiring remains in PIIX IDE.
>>>>> The latter mechanism is considered a workaround and intended to be
>>>>> removed once a deprecation period for user-created PIIX IDE devices is
>>>>> over.
>>>>>
>>>>> Signed-off-by: Bernhard Beschow <shentey@gmail.com>
>>>>> ---
>>>>>   include/hw/ide/pci.h |  1 +
>>>>>   hw/ide/piix.c        | 64 ++++++++++++++++++++++++++++++++++----------
>>>>>   hw/isa/piix.c        |  5 ++++
>>>>>   3 files changed, 56 insertions(+), 14 deletions(-)
> 
>>>> I haven't checked the datasheet, but I suspect this will be similar to the 
>>>> cmd646/via PCI-IDE interfaces in that there will be a PCI configuration register 
>>>> that will switch between ISA compatibility mode (and ISA irqs) and PCI mode (with 
>>>> PCI IRQs). So it would be the device configuration that would specify PCI or ISA 
>>>> mode, rather than the presence of an ISABus.
>>>
>>> I forgot about this topic already and haven't follwed this series either so what I 
>>> say may not fully make sense but I think CMD646 and via-ide are different. CMD646 
>>> is a PCI device and should use PCI interrupts while via-ide is part of a 
>>> southbridge/superio complex and connected to the ISA PICs within that southbride, 
>>> so I think via-ide always uses ISA IRQs and the ISA btidge within the same chip 
>>> may convert that to PCI IRQs or not (that part is where I'm lost also because we 
>>> may not actually model it that way). After a long debate we managed to find a 
>>> solution back then that works for every guest we use it for now so I think we 
>>> don't want to touch it now until some real need arises. It does not worth the 
>>> trouble and added complexity to model something that is not used just for the sake 
>>> of correctness. By the time we find a use for that, the ISA emulation may evolve 
>>> so it's easier to implement the missing switching between isa and native mode or 
>>> we may want to do it differently (such as we do things differently now compared to 
>>> what we did years ago). So I think it does not worth keeping the ISA model from 
>>> being simplified for some theoretical uses in the future which we may not actually 
>>> do any time soon. But I don't want to get into this again so just shared my 
>>> thoughts and feel free to ignore it. I don't care where these patches go as long 
>>> as the VIA model keeps working for me.
>>
>> I have a vague memory that ISA compatibility mode was part of the original 
>> PCI-BMDMA specification, but it has been a while since I last looked.
>>
>> Bernhard, is there any mention of this in the PIIX datasheet(s)? For reference the 
>> cmd646 datasheet specifies that ISA mode or PCI mode is determined by register 
>> PROG_IF (0x9) in PCI configuration space.
> 
> Orthogonal to this discussion, one problem I see here is a device
> exposing 2 interfaces: ISA and PCI. QOM does support interfaces,
> but ISA and PCI aren't QOM interfaces. The QOM cast macros are
> written as a QOM object can only inherit one parent. Should we
> stick to QDev and convert ISA/PCI as QOM interfaces? That could
> solve some QDev IDE limitations...

The normal approach to this is to encapsulate the chip functionality as a set of 
common functions, for example see esp.c and then have separate files such as 
esp-pci.c and esp-isa.c which can be compiled accordingly using Kconfig dependencies.

FWIW the ability to support a legacy mode is only something that would be present in 
the generation of mixed PCI/ISA motherboards, and so probably not something that is 
worth the effort of reworking separate PCI and ISA QOM interfaces.


ATB,

Mark.


  reply	other threads:[~2023-02-06  9:15 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-26 21:17 [PATCH v2 00/10] Resolve isabus global Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 01/10] softmmu/ioport: Move portio_list_init() in front of portio_list_add() Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 02/10] softmmu/ioport: Merge portio_list_add() into portio_list_init() Bernhard Beschow
2023-02-05 21:34   ` Mark Cave-Ayland
2023-01-26 21:17 ` [PATCH v2 03/10] softmmu/ioport: Remove unused functions Bernhard Beschow
2023-02-05 21:37   ` Mark Cave-Ayland
2023-02-06  0:20     ` Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 04/10] hw/ide/piix: Disuse isa_get_irq() Bernhard Beschow
2023-02-05 21:54   ` Mark Cave-Ayland
2023-01-26 21:17 ` [PATCH v2 05/10] Revert "hw/ide: Fix crash when plugging a piix3-ide device into the x-remote machine" Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 06/10] hw/ide/pci: Add PCIIDEState::isa_irqs[] Bernhard Beschow
2023-01-30 17:00   ` Bernhard Beschow
2023-02-26 21:26     ` Philippe Mathieu-Daudé
2023-01-26 21:17 ` [PATCH v2 07/10] hw/ide/piix: Require an ISABus only for user-created instances Bernhard Beschow
2023-02-05 21:58   ` Mark Cave-Ayland
2023-02-05 22:21     ` BALATON Zoltan
2023-02-05 22:32       ` Mark Cave-Ayland
2023-02-06  6:51         ` Philippe Mathieu-Daudé
2023-02-06  9:15           ` Mark Cave-Ayland [this message]
2023-02-06 23:40         ` Bernhard Beschow
2023-02-07  9:03           ` Philippe Mathieu-Daudé
2023-02-07 20:52           ` Mark Cave-Ayland
2023-02-08  0:18             ` Bernhard Beschow
2023-02-08  0:43               ` BALATON Zoltan
2023-02-08  7:09                 ` Philippe Mathieu-Daudé
2023-02-08 11:22               ` Philippe Mathieu-Daudé
2023-02-23 20:46             ` Bernhard Beschow
2023-03-01 16:42               ` Mark Cave-Ayland
2023-03-01 21:12                 ` Bernhard Beschow
2023-02-24 16:20   ` Michael S. Tsirkin
2023-01-26 21:17 ` [PATCH v2 08/10] hw/ide: Let ide_init_ioport() take a MemoryRegion argument instead of ISADevice Bernhard Beschow
2023-01-27  0:27   ` Philippe Mathieu-Daudé
2023-02-05 22:02   ` Mark Cave-Ayland
2023-04-22 16:23     ` Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 09/10] hw/isa: Remove use of global isa bus Bernhard Beschow
2023-01-26 21:17 ` [PATCH v2 10/10] hw/isa/isa-bus: Resolve isabus global Bernhard Beschow
2023-01-30 17:05 ` [PATCH v2 00/10] " Bernhard Beschow
2023-02-24 16:22 ` Michael S. Tsirkin
2023-02-26 20:38   ` Bernhard Beschow
2023-02-27  9:12     ` 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=5095dffc-309b-6c72-d255-8cdaa6fd3d52@ilande.co.uk \
    --to=mark.cave-ayland@ilande.co.uk \
    --cc=alistair@alistair23.me \
    --cc=aurelien@aurel32.net \
    --cc=balaton@eik.bme.hu \
    --cc=david@redhat.com \
    --cc=edgar.iglesias@gmail.com \
    --cc=eduardo@habkost.net \
    --cc=hpoussin@reactos.org \
    --cc=jsnow@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=peterx@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=shentey@gmail.com \
    --cc=thuth@redhat.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).