qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 0/5] Pegasos2 fixes and audio output support


From: Bernhard Beschow
Subject: Re: [PATCH 0/5] Pegasos2 fixes and audio output support
Date: Wed, 01 Mar 2023 20:53:37 +0000


Am 1. März 2023 19:24:20 UTC schrieb BALATON Zoltan <balaton@eik.bme.hu>:
>On Wed, 1 Mar 2023, Mark Cave-Ayland wrote:
>> On 23/02/2023 09:13, Bernhard Beschow wrote:
>>> Am 22. Februar 2023 23:00:02 UTC schrieb BALATON Zoltan 
>>> <balaton@eik.bme.hu>:
>>>> On Wed, 22 Feb 2023, Bernhard Beschow wrote:
>>>>> Am 22. Februar 2023 21:12:01 UTC schrieb BALATON Zoltan 
>>>>> <balaton@eik.bme.hu>:
>>>>>> On Wed, 22 Feb 2023, Bernhard Beschow wrote:
>>>>>>> Am 22. Februar 2023 19:25:16 UTC schrieb BALATON Zoltan 
>>>>>>> <balaton@eik.bme.hu>:
>>>>>>>> On Wed, 22 Feb 2023, Bernhard Beschow wrote:
>>>>>>>>> On Wed, Feb 22, 2023 at 4:38 PM Bernhard Beschow <shentey@gmail.com> 
>>>>>>>>> wrote:
>>>>>>>>>> I've had a closer look at your series and I think it can be 
>>>>>>>>>> simplified:
>>>>>>>>>> Patch 2 can be implemented quite straight-forward like I proposed in 
>>>>>>>>>> a
>>>>>>>>>> private mail: 
>>>>>>>>>> https://github.com/shentok/qemu/commit/via-priq-routing.
>>>>>>>>>> Then, in order to make patch 3 "hw/ppc/pegasos2: Fix PCI interrupt 
>>>>>>>>>> routing"
>>>>>>>>>> working, one can expose the PCI interrupts with a single line like 
>>>>>>>>>> you do
>>>>>>>>>> in patch 2. With this, patch 1 "hw/isa/vt82c686: Implement interrupt
>>>>>>>>>> routing in via_isa_set_irq" isn't needed any longer and can be 
>>>>>>>>>> omitted.
>>>>>>>>>> 
>>>>>>>>>> In via-ac97, rather than using via_isa_set_irq(), pci_set_irq() can 
>>>>>>>>>> be
>>>>>>>>>> used instead. pci_set_irq() internally takes care of all the ISA 
>>>>>>>>>> interrupt
>>>>>>>>>> level tracking patch 1 attempted to address.
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> Here is a proof of concept branch to demonstrate that the 
>>>>>>>>> simplification
>>>>>>>>> actually works: https://github.com/shentok/qemu/commits/pegasos2 
>>>>>>>>> (Tested
>>>>>>>>> with MorphOS with and without pegasos2.rom).
>>>>>>>> 
>>>>>>>> Does this only work because both the via-ac97 and the PCI interrupts 
>>>>>>>> are mapped to the same ISA IRQ and you've only tested sound? The guest 
>>>>>>>> could configure each device to use a different IRQ, also mapping them 
>>>>>>>> so they share one ISA interrupt. What happens if multiple devices are 
>>>>>>>> mapped to IRQ 9 (which is the case on pegasos2 where PCI cards, ac97 
>>>>>>>> and USB all share this IRQ) and more than one such device wants to 
>>>>>>>> raise an interrupt at the same time? If you ack the ac97 interrupt but 
>>>>>>>> a PCI network card or the USB part still wants to get the CPUs 
>>>>>>>> attention the ISA IRQ should remain raised until all devices are 
>>>>>>>> serviced.
>>>>>>> 
>>>>>>> pci_bus_get_irq_level(), used in via_isa_set_pci_irq(), should handle
>>>>>>> exactly that case very well.
>>>>>>> 
>>>>>>>> I don't see a way to track the status of all devices in a single 
>>>>>>>> qemu_irq which can only be up or down so we need something to store 
>>>>>>>> the state of each source.
>>>>>>> 
>>>>>>> pci_set_irq() causes pci_bus_change_irq_level() to be called.
>>>>>>> pci_bus_change_irq_level() tracks the sum of all irq levels of all
>>>>>>> devices attached to a particular pin in irq_count. Have a look at
>>>>>>> pci_bus_change_irq_level() and you will understand better.
>>>>>> 
>>>>>> I'm aware of that, we're using that in sam460ex which connects all PCI 
>>>>>> interrupt lines to a single IRQ and Peter explored and explained it in a 
>>>>>> comment there when that was discovered. First we had a patch with or-irq 
>>>>>> but due to this behaviot that's not needed for PCI interrupts. But the 
>>>>>> VT8132 could change what ISA IRQ you route the sub functions to.
>>>>> 
>>>>> That depends on the sub function if you can do that. And if so, then it 
>>>>> depends on whether the function is still in PCI mode (see below).
>>>>> 
>>>>>> It happens that on pegasos2 by default all of those are routed to IRQ9 
>>>>>> except IDE
>>>>> 
>>>>> All *PCI* interrupts are routed to IRQ9 while IDE legacy interrupts are 
>>>>> routed to the compatible ISA IRQs. Note that the IDE function must only 
>>>>> trigger the ISA IRQs if it is in legacy mode while it must only trigger 
>>>>> the PCI IRQ in non-legacy mode. See https://www.bswd.com/pciide.pdf for 
>>>>> more details on this particular topic.
>>>> 
>>>> The docs say so but based on what guests that work on real hardware do it 
>>>> does not work that way. Look up previous discussion on this on the list 
>>>> from around the time Mark changed via-ide about 4-5 years ago. That series 
>>>> was a result of his review of my proposed changes and gave resuled in an 
>>>> alternative appdroach. On pegasos2 (and probably also on fuloong2e based 
>>>> on same later findings, see patches to that, I can try to find these later 
>>>> if you can't find them) via-ide *always* uses IRQ 14/15 and the native 
>>>> mode only switches register addresses from legacy io ports to PCI io space 
>>>> so you can set it in with BAR regs but the IRQs don't change despite what 
>>>> the docs say. There are some hacks in Linux kernel and other guests to 
>>>> account for this but the comments for the reason are wrong in Linux, they 
>>>> say IDE is always in legacy mode but in fact if has a half-native mode 
>>>> which is what I called it where io addresses are set with BARs but IRQs 
>>>> are still the legacy ISA ones. You can find some references in previous 
>>>> discussion. Probably searching for via-ide half-native mode might find it.
>>>> 
>>>>>> but what if a guest changes ac97 to use a different interrupt? Then it's 
>>>>>> not a PCI interrupt any more so you can't use pci_set_irq in via=ac97.
>>>>> 
>>>>> How would it do that? AFAICS there is no dedicated register to configure 
>>>>> which IRQ to use. This means that it can only trigger an interrupt via 
>>>>> its PCI intx pin which is subject to the PCI -> ISA IRQ router.
>>>> 
>>>> The VIA functions can use their PCI_INTERRUPT_LINE (0x3c) registers to set 
>>>> their ISA IRQ according to the docs (and unlike IDE in other functions 
>>>> like USB and sound this probably also works) and the PIRQA-D pins can be 
>>>> mapped to ISA IRQs by the 0x55-0x57 config registers of the isa bridge 
>>>> (function0). This is what I implemented in via_isa_set_irq() in this 
>>>> series.
>>>> 
>>>>>> There are only 4 PCI INT lines but the VIA components can be routed to 
>>>>>> 13 or 14 ISA IRQs.
>>>>> 
>>>>> Pure PCI components are only able to trigger one of the four PCI intx 
>>>>> pins they are *hardwired* to.
>>>> 
>>>> This is true for PCI cards which can only use the 4 pins the slot they are 
>>>> in is wired to. These come in through the PIRQA-D pins and they are routed 
>>>> with the funstion 0 0x55-0x57 config registers. But I'm not sure about the 
>>>> internal functions.
>>>> 
>>>>> Each component has only one pin. Which ISA IRQ gets triggered through 
>>>>> that pin can be selected from 13 or 14 ISA IRQs as you say by means of 
>>>>> the three configuration registers of the PCI -> ISA IRQ router.
>>>> 
>>>> So you say that internal functions are also wired to the same 4 lines like 
>>>> normal PCI cards?
>>> 
>>> Yes.
>>> 
>>>> Then how can you route them to different interrupts setting their config 
>>>> reg 0x3c independent of function0 0x55-0x57 regs?
>>> 
>>> 0x3c isn't supposed to be interpretet by hardware, and in general hardware 
>>> can't: 0x3c is standardized for every PCI function which includes 
>>> standalone PCI devices in particular. Standalone PCI devices don't have 
>>> access to an IRQ router. So if they don't, how could they possibly 
>>> configure the IRQ they are triggering?
>>> 
>>> 0x3c is only information to the OS (populated by the BIOS). It merily 
>>> indicates that the PCI device needs attention when the IRQ configured in 
>>> 0x3c is raised. See comment 4 in 
>>> https://community.osr.com/discussion/30399/read-only-pci-interrupt-line-register
>>>  for another explanation.
>>> 
>>> Even though the south bridge contains an interrupt router doesn't mean that 
>>> its PCI functions can configure their IRQ through their 0x3c registers. 
>>> That would change the semantics of standardized PCI registers which is 
>>> surely not permitted by the standard. Instead, the PCI IRQs are configured 
>>> through the device-specific 0x55-0x57 regs.
>>> 
>>> I see that 0x3c is also used for the USB functions. They used to trigger 
>>> the raw ISA IRQs before your series which seems wrong. I think 0x3c usage 
>>> needs to be cleaned up in the VIA model. Otherwise this will likely cause 
>>> problems elsewhere.
>>> 
>>>> 
>>>>>> How do you keep track of that with only the PCI bus interrupts?
>>>>> 
>>>>> Devices that operate in ISA mode such as the IDE function shall have 
>>>>> their own, dedicated ISA IRQs assigned by the guest. Otherwise this 
>>>>> causes a classic interrupt conflict, just like in the olden ISA days. If 
>>>>> the function operates in PCI mode, it must not trigger the ISA IRQs, 
>>>>> regardless of whether they are assigned or not.
>>>> 
>>>> This does not match with guests which clearly expect to get ISA IRQ9 for 
>>>> PCI cards and USB and sound which is where these are routed within the VIA 
>>>> bridge as the firmware programs it.
>>> 
>>> What I meant was that a component able to operate in native/legacy/mixed 
>>> mode such as IDE must not use both PCI and legacy ISA interrupts at the 
>>> same time. Multiple PCI functions may of course share interrupts.
>>> 
>>>> 
>>>>> There is also the power management function whose ACPI interrupt (SCI) 
>>>>> can be routed by means of a dedicated register. Again, a guest must make 
>>>>> sure here to not configure interrupt conflicts.
>>>>> 
>>>>>> I don't get your approach.
>>>>> 
>>>>> I hope that I could help you get a better understanding. The linked .pdf 
>>>>> is good and comprehensive reading material.
>>>> 
>>>> I'm not sure the via-ide confirms to that doc but it's also not any more a 
>>>> problem with via-ide now. That was discussed to death back then and 
>>>> "fixed" to work for the cases we want it to work with. We probably never 
>>>> agreed on how this really works but at least what we ended up with works 
>>>> with guests that run on real hardware. I'm OK with also making these cases 
>>>> work that we want now such as network and sound card under AmigaOS and 
>>>> sound under MorphOS (as long as you don't use USB) on pegasos2. This 
>>>> series does that so unless it breaks something that worked before I 
>>>> condider this moving forward and we can always improve adn fix it later. 
>>>> I'm not saying I'm not interested in your improvements just that let's 
>>>> that not hold this back now as we can fix and improve it later but 
>>>> otherwise users will have to wait until September to be able to use it. I 
>>>> know a few who want this and getting this out as it is would allow more 
>>>> people to test it and report problems so unless there are clearly wrong 
>>>> parts I'm OK with less than perfect but working solution as long as it's 
>>>> not too messy.
>>> 
>>> Patch 1 really seems like duplicating PCI code that already exists in QEMU. 
>>> This is not needed and we should avoid that.
>>> 
>>> Moreover, usage of the IRQ line register (0x3c) for interrupt routing 
>>> should be switched to using the 0x55-0x57 regs to be PCI compliant.
>>> 
>>> Thanks to your great work to make via-ac97 work we can confirm that both 
>>> IRQ routing implementations basically work for now. Let's work out a 
>>> solution that relies on existing code, sticks to the standard and hopefully 
>>> works for i386 and MIPS, too.
>> 
>> FWIW this analysis seems correct to me based upon my experience with older 
>> PCs and reading the various specifications.
>
>Have you read the VT82C686B and VT8231 spces which this is about?

Yes, I did.

For the USB function it specifies the interrupt line register (offset 0x3c) as 
follows:

  7-4 Reserved........................................always reads 0
  3-0 USB Interrupt Routing........................default = 16h

However, 0x16 doesn't fit into four bits. Not even 16 (decimal) would fit 
because the biggest representable value is 15, i.e. 0xf.

This makes me wonder if the datasheet is a reliable source describing these 
regiserts in the first place.

Best regards,
Bernhard

> Other specs may not apply to these chips, they should confirm to their own 
> docs. (But sometimes they may even fail to do that like in case of the IDE 
> part.)
>
>Regards,
>BALATON Zoltan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]