Home
last modified time | relevance | path

Searched refs:GpeEventInfo (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/common/acpica/events/
H A Devgpe.c188 ACPI_GPE_EVENT_INFO *GpeEventInfo) in AcpiEvUpdateGpeEnableMask() argument
211 if (GpeEventInfo->RuntimeCount) in AcpiEvUpdateGpeEnableMask()
303 if (GpeEventInfo->RuntimeCount && in AcpiEvMaskGpe()
342 GpeEventInfo->RuntimeCount++; in AcpiEvAddGpeReference()
343 if (GpeEventInfo->RuntimeCount == 1) in AcpiEvAddGpeReference()
355 GpeEventInfo->RuntimeCount--; in AcpiEvAddGpeReference()
386 if (!GpeEventInfo->RuntimeCount) in AcpiEvRemoveGpeReference()
391 GpeEventInfo->RuntimeCount--; in AcpiEvRemoveGpeReference()
392 if (!GpeEventInfo->RuntimeCount) in AcpiEvRemoveGpeReference()
404 GpeEventInfo->RuntimeCount++; in AcpiEvRemoveGpeReference()
[all …]
H A Devxfgpe.c265 if (GpeEventInfo) in ACPI_EXPORT_SYMBOL()
328 if (GpeEventInfo) in ACPI_EXPORT_SYMBOL()
388 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
458 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
513 if (GpeEventInfo) in ACPI_EXPORT_SYMBOL()
609 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
628 GpeEventInfo->Flags = in ACPI_EXPORT_SYMBOL()
729 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
810 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
860 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
[all …]
H A Devxface.c976 ACPI_GPE_EVENT_INFO *GpeEventInfo; in ACPI_EXPORT_SYMBOL() local
1012 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
1044 GpeEventInfo->RuntimeCount) in ACPI_EXPORT_SYMBOL()
1059 GpeEventInfo->Dispatch.Handler = Handler; in ACPI_EXPORT_SYMBOL()
1184 ACPI_GPE_EVENT_INFO *GpeEventInfo; in ACPI_EXPORT_SYMBOL() local
1211 if (!GpeEventInfo) in ACPI_EXPORT_SYMBOL()
1238 Handler = GpeEventInfo->Dispatch.Handler; in ACPI_EXPORT_SYMBOL()
1239 GpeEventInfo->Dispatch.Handler = NULL; in ACPI_EXPORT_SYMBOL()
1244 GpeEventInfo->Flags &= in ACPI_EXPORT_SYMBOL()
1246 GpeEventInfo->Flags |= Handler->OriginalFlags; in ACPI_EXPORT_SYMBOL()
[all …]
H A Devgpeinit.c446 ACPI_GPE_EVENT_INFO *GpeEventInfo; in AcpiEvMatchGpeMethod() local
522 GpeEventInfo = AcpiEvLowGetGpeInfo (GpeNumber, WalkInfo->GpeBlock); in AcpiEvMatchGpeMethod()
523 if (!GpeEventInfo) in AcpiEvMatchGpeMethod()
533 if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvMatchGpeMethod()
535 (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvMatchGpeMethod()
543 if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvMatchGpeMethod()
550 if (Type != (GpeEventInfo->Flags & ACPI_GPE_XRUPT_TYPE_MASK)) in AcpiEvMatchGpeMethod()
561 (void) AcpiHwLowSetGpe (GpeEventInfo, ACPI_GPE_DISABLE); in AcpiEvMatchGpeMethod()
567 GpeEventInfo->Flags &= ~(ACPI_GPE_DISPATCH_MASK); in AcpiEvMatchGpeMethod()
568 GpeEventInfo->Flags |= (UINT8) (Type | ACPI_GPE_DISPATCH_METHOD); in AcpiEvMatchGpeMethod()
[all …]
H A Devgpeutil.c452 ACPI_GPE_EVENT_INFO *GpeEventInfo; in AcpiEvDeleteGpeHandlers() local
470 GpeEventInfo = &GpeBlock->EventInfo[((ACPI_SIZE) i * in AcpiEvDeleteGpeHandlers()
473 if ((ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvDeleteGpeHandlers()
475 (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvDeleteGpeHandlers()
480 ACPI_FREE (GpeEventInfo->Dispatch.Handler); in AcpiEvDeleteGpeHandlers()
481 GpeEventInfo->Dispatch.Handler = NULL; in AcpiEvDeleteGpeHandlers()
482 GpeEventInfo->Flags &= ~ACPI_GPE_DISPATCH_MASK; in AcpiEvDeleteGpeHandlers()
484 else if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) == in AcpiEvDeleteGpeHandlers()
489 Notify = GpeEventInfo->Dispatch.NotifyList; in AcpiEvDeleteGpeHandlers()
497 GpeEventInfo->Dispatch.NotifyList = NULL; in AcpiEvDeleteGpeHandlers()
[all …]
H A Devgpeblk.c339 ACPI_GPE_EVENT_INFO *GpeEventInfo = NULL; in AcpiEvCreateGpeInfoBlocks() local
368 if (!GpeEventInfo) in AcpiEvCreateGpeInfoBlocks()
379 GpeBlock->EventInfo = GpeEventInfo; in AcpiEvCreateGpeInfoBlocks()
388 ThisEvent = GpeEventInfo; in AcpiEvCreateGpeInfoBlocks()
446 if (GpeEventInfo) in AcpiEvCreateGpeInfoBlocks()
448 ACPI_FREE (GpeEventInfo); in AcpiEvCreateGpeInfoBlocks()
591 ACPI_GPE_EVENT_INFO *GpeEventInfo; in AcpiEvInitializeGpeBlock() local
626 GpeEventInfo = &GpeBlock->EventInfo[GpeIndex]; in AcpiEvInitializeGpeBlock()
628 GpeEventInfo->Flags |= ACPI_GPE_INITIALIZED; in AcpiEvInitializeGpeBlock()
635 (GpeEventInfo->Flags & ACPI_GPE_CAN_WAKE)) in AcpiEvInitializeGpeBlock()
[all …]
/illumos-gate/usr/src/common/acpica/hardware/
H A Dhwgpe.c190 ACPI_GPE_EVENT_INFO *GpeEventInfo) in AcpiHwGetGpeRegisterBit() argument
194 (GpeEventInfo->GpeNumber - GpeEventInfo->RegisterInfo->BaseGpeNumber)); in AcpiHwGetGpeRegisterBit()
215 ACPI_GPE_EVENT_INFO *GpeEventInfo, in AcpiHwLowSetGpe() argument
229 GpeRegisterInfo = GpeEventInfo->RegisterInfo; in AcpiHwLowSetGpe()
245 RegisterBit = AcpiHwGetGpeRegisterBit (GpeEventInfo); in AcpiHwLowSetGpe()
299 ACPI_GPE_EVENT_INFO *GpeEventInfo) in AcpiHwClearGpe() argument
310 GpeRegisterInfo = GpeEventInfo->RegisterInfo; in AcpiHwClearGpe()
320 RegisterBit = AcpiHwGetGpeRegisterBit (GpeEventInfo); in AcpiHwClearGpe()
342 ACPI_GPE_EVENT_INFO *GpeEventInfo, in AcpiHwGetGpeStatus() argument
362 if (ACPI_GPE_DISPATCH_TYPE (GpeEventInfo->Flags) != in AcpiHwGetGpeStatus()
[all …]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacevents.h235 ACPI_GPE_EVENT_INFO *GpeEventInfo);
239 ACPI_GPE_EVENT_INFO *GpeEventInfo);
243 ACPI_GPE_EVENT_INFO *GpeEventInfo,
248 ACPI_GPE_EVENT_INFO *GpeEventInfo);
252 ACPI_GPE_EVENT_INFO *GpeEventInfo);
266 ACPI_GPE_EVENT_INFO *GpeEventInfo);
271 ACPI_GPE_EVENT_INFO *GpeEventInfo,
302 ACPI_GPE_EVENT_INFO *GpeEventInfo,
H A Dachware.h278 ACPI_GPE_EVENT_INFO *GpeEventInfo);
282 ACPI_GPE_EVENT_INFO *GpeEventInfo,
293 ACPI_GPE_EVENT_INFO *GpeEventInfo);
303 ACPI_GPE_EVENT_INFO *GpeEventInfo,