We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce9907 commit 0dadc0bCopy full SHA for 0dadc0b
source/Cosmos.HAL2/Drivers/PCI/Network/AMDPCNetII.cs
@@ -98,9 +98,14 @@ public AMDPCNetII(PCIDevice device)
98
99
INTs.SetIntHandler((byte)(0x20 + device.InterruptLine), HandleNetworkInterrupt);
100
101
- //Route IRQ for all IO/APIC PCI IRQ (I16-I20)
102
- //We will have to fix this if we use multiple PCI devices that requires interrupts
103
- //TODO: Use ACPI to find IRQ route
+ /***
+ Route IRQ for all IO/APIC PCI IRQ (I16-I20)
+
104
+ We will have to fix this if we use multiple PCI devices that requires interrupts
105
+ It will causes interrupts conflicts
106
107
+ TODO: Use ACPI to find right IRQ route
108
+ ***/
109
for (byte i = 0; i < 4; i++)
110
{
111
IOAPIC.SetEntry((byte)(16 + i), (ulong)(0x20 + device.InterruptLine));
0 commit comments