OSDev.org
https://forum.osdev.org/

how to make PCI MSI working?
https://forum.osdev.org/viewtopic.php?f=1&t=56860
Page 1 of 1

Author:  marcrew [ Thu Jun 01, 2023 3:20 am ]
Post subject:  how to make PCI MSI working?

Hello everyone. I am a new beginner to OS developer. when I am developping my OS, I got issues which is ralated to MSI interrupt.

in my os, I disabled legacy PIC and enabled APIC, and I also added HPET timer. all these devices interrupts are working well through APIC. But when I am trying to add MSI , I cannot get it working.

according to chapter 6.8 of <PCI local bus sepecification 2.3> , I write 0xFEE00000(only 1 cpu used) to message address register, 0 to upper address(this device supports 64bits address). and then write 0x26(I want to use IRQ6) to message data. and then set bit 0 of message control. set Interrupt Disable of PCI cmd register at last. connect ISR to IRQ6. when the trigger happens, no ISR is called.

can you help me how to fix this issue? it would be a great appreciate to you.

Author:  Octocontrabass [ Thu Jun 01, 2023 11:09 am ]
Post subject:  Re: how to make PCI MSI working?

marcrew wrote:
I write 0xFEE00000(only 1 cpu used)

I'm not sure it's safe to assume the BSP APIC ID will always be 0. It probably will be, but you should still check.

marcrew wrote:
0x26(I want to use IRQ6)

IRQ6 is an input to the legacy PIC and the IOAPIC. There's no such thing as IRQ6 when you're using MSIs.

marcrew wrote:
set Interrupt Disable of PCI cmd register

What are the values of the other bits in the command register? You need to set the bus master bit to receive MSIs.

Author:  marcrew [ Sun Jun 04, 2023 9:41 pm ]
Post subject:  Re: how to make PCI MSI working?

thanks for the reply.

Quote:
Octocontrabass wrote:
marcrew wrote:
I write 0xFEE00000(only 1 cpu used)

I'm not sure it's safe to assume the BSP APIC ID will always be 0. It probably will be, but you should still check.


I have checked the LAPIC ID , it is 0 .

Quote:
marcrew wrote:
0x26(I want to use IRQ6)

IRQ6 is an input to the legacy PIC and the IOAPIC. There's no such thing as IRQ6 when you're using MSIs.


OK, I connected vector 0x26(which is IRQ6 to PIC) to handler, then I wrote 0x26 to message data. is it the correct way?


marcrew wrote:
set Interrupt Disable of PCI cmd register

What are the values of the other bits in the command register? You need to set the bus master bit to receive MSIs.


the CMD reg is 0x407, status reg is 0x10. it means bus master is set ,and legacy int is disabled ,right?

Author:  Octocontrabass [ Sun Jun 04, 2023 10:31 pm ]
Post subject:  Re: how to make PCI MSI working?

marcrew wrote:
OK, I connected vector 0x26(which is IRQ6 to PIC) to handler, then I wrote 0x26 to message data. is it the correct way?

That's the correct value, but I still don't understand where you're getting IRQ6.

marcrew wrote:
the CMD reg is 0x407, status reg is 0x10. it means bus master is set ,and legacy int is disabled ,right?

Right.

Page 1 of 1 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/