HomeSort by: relevance | last modified time | path
    Searched defs:sapic (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/ia64/acpi/
madt.c 63 ACPI_MADT_IO_SAPIC *sapic = (ACPI_MADT_IO_SAPIC *)entry; local in function:print_entry
64 printf("\tI/O SAPIC entry\n");
66 sapic->Id, sapic->GlobalIrqBase, sapic->Address);
83 ACPI_MADT_LOCAL_SAPIC *sapic = (ACPI_MADT_LOCAL_SAPIC *)entry; local in function:print_entry
84 printf("\tLocal SAPIC entry\n");
86 sapic->ProcessorId, sapic->Id, sapic->Eid)
176 ACPI_MADT_IO_SAPIC *sapic = local in function:ia64_probe_sapics
196 ACPI_MADT_LOCAL_SAPIC *sapic = local in function:ia64_probe_sapics
    [all...]
  /src/sys/arch/ia64/include/
sapicvar.h 36 struct sapic { struct
38 vaddr_t sa_registers; /* virtual address of sapic */
39 u_int sa_id; /* I/O SAPIC Id */
58 struct sapic *sapic_create(u_int, u_int, uint64_t);
59 int sapic_enable(struct sapic *, u_int, u_int);
60 void sapic_eoi(struct sapic *, u_int);
61 struct sapic *sapic_lookup(u_int);
62 void sapic_mask(struct sapic *, u_int);
63 void sapic_unmask(struct sapic *, u_int);
66 void sapic_print(struct sapic *, u_int)
    [all...]
  /src/sys/arch/ia64/ia64/
cpu.c 78 ACPI_MADT_LOCAL_SAPIC *sapic = (ACPI_MADT_LOCAL_SAPIC *)aux; local in function:cpu_attach
85 sapic->ProcessorId, sapic->Id, sapic->Eid,
86 sapic->LapicFlags & ACPI_MADT_ENABLED ? "" : " (disabled)");
94 if (id == sapic->Id && eid == sapic->Eid)
101 ci->ci_cpuid = sapic->ProcessorId;
interrupt.c 209 struct sapic *sapic; member in struct:ia64_intr
229 sapic_eoi(i->sapic, vector);
240 sapic_mask(i->sapic, i->irq);
241 sapic_eoi(i->sapic, vector);
254 sapic_unmask(i->sapic, i->irq);
271 struct sapic *sa;
274 /* Get the I/O SAPIC that corresponds to the IRQ. */
298 i->sapic = sa;
307 sapic_enable(i->sapic, irq, vector)
    [all...]
  /src/sys/arch/ia64/stand/ia64/ski/
acpi_stub.c 47 typedef struct /* LOCAL SAPIC */
51 UINT8 LocalSapicId; /* Processor local SAPIC id */
52 UINT8 LocalSapicEid; /* Processor local SAPIC eid */
58 typedef struct /* IO SAPIC */
61 UINT8 IoSapicId; /* I/O SAPIC ID */
64 UINT64 IoSapicAddress; /* SAPIC's physical address */
76 ACPI_MADT_IO_SAPIC sapic; member in struct:__anondcdd5ed80308
96 0, /* Processor local SAPIC id */
97 0, /* Processor local SAPIC eid */
106 0, /* Processor local SAPIC id *
    [all...]

Completed in 13 milliseconds