Lines Matching refs:Iso
78 EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE_STRUCTURE *Iso; in QemuInstallAcpiMadtTable() local
100 (1 + PciLinkIsoCount) * sizeof (*Iso) + in QemuInstallAcpiMadtTable()
137 Iso = Ptr; in QemuInstallAcpiMadtTable()
138 Iso->Type = EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE; in QemuInstallAcpiMadtTable()
139 Iso->Length = sizeof (*Iso); in QemuInstallAcpiMadtTable()
140 Iso->Bus = 0x00; // ISA in QemuInstallAcpiMadtTable()
141 Iso->Source = 0x00; // IRQ0 in QemuInstallAcpiMadtTable()
142 Iso->GlobalSystemInterruptVector = 0x00000002; in QemuInstallAcpiMadtTable()
143 Iso->Flags = 0x0000; // Conforms to specs of the bus in QemuInstallAcpiMadtTable()
144 ++Iso; in QemuInstallAcpiMadtTable()
153 Iso->Type = EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE; in QemuInstallAcpiMadtTable()
154 Iso->Length = sizeof (*Iso); in QemuInstallAcpiMadtTable()
155 Iso->Bus = 0x00; // ISA in QemuInstallAcpiMadtTable()
156 Iso->Source = (UINT8) Loop; in QemuInstallAcpiMadtTable()
157 Iso->GlobalSystemInterruptVector = (UINT32) Loop; in QemuInstallAcpiMadtTable()
158 Iso->Flags = 0x000D; // Level-tiggered, Active High in QemuInstallAcpiMadtTable()
159 ++Iso; in QemuInstallAcpiMadtTable()
162 (UINTN) (Iso - (EFI_ACPI_1_0_INTERRUPT_SOURCE_OVERRIDE_STRUCTURE *)Ptr) == in QemuInstallAcpiMadtTable()
165 Ptr = Iso; in QemuInstallAcpiMadtTable()