X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/e5568f75972dfc723778653c11cb6b4dc825716a..b0d623f7f2ae71ed96e60569f61f9a9a27016e80:/iokit/IOKit/pwr_mgt/IOPMlog.h diff --git a/iokit/IOKit/pwr_mgt/IOPMlog.h b/iokit/IOKit/pwr_mgt/IOPMlog.h index 401197aeb..b9d50eda5 100644 --- a/iokit/IOKit/pwr_mgt/IOPMlog.h +++ b/iokit/IOKit/pwr_mgt/IOPMlog.h @@ -1,68 +1,83 @@ /* * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved. * - * @APPLE_LICENSE_HEADER_START@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. The rights granted to you under the License + * may not be used to create, or enable the creation or redistribution of, + * unlawful or unlicensed copies of an Apple operating system, or to + * circumvent, violate, or enable the circumvention or violation of, any + * terms of an Apple operating system software license agreement. * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. * - * @APPLE_LICENSE_HEADER_END@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ -#define PMlogSetParent 1 -#define PMlogAddChild 2 -#define PMlogRemoveChild 3 -#define PMlogControllingDriver 4 -#define PMlogControllingDriverErr1 5 /* bad power state array version */ -#define PMlogControllingDriverErr2 6 /* too many power states */ -#define PMlogControllingDriverErr3 7 /* not a real IOPMDriver */ -#define PMlogControllingDriverErr4 8 /* power state change in progress */ -#define PMlogInterestedDriver 9 -#define PMlogAcknowledgeErr1 10 /* unknown entity called acknowledgePowerChange */ -#define PMlogChildAcknowledge 11 -#define PMlogDriverAcknowledge 12 /* interested driver acknowledges */ -#define PMlogAcknowledgeErr2 13 /* object has already acked */ -#define PMlogAcknowledgeErr3 14 /* not expecting any acks */ -#define PMlogAcknowledgeErr4 15 /* not expecting acknowledgeSetPowerState */ -#define PMlogDriverAcknowledgeSet 16 /* controlling driver acknowledges */ -#define PMlogWillChange 17 -#define PMlogDidChange 18 -#define PMlogRequestDomain 19 -#define PMlogMakeUsable 20 -#define PMlogChangeStateTo 21 -#define PMlogChangeStateToPriv 22 -#define PMlogSetAggressiveness 23 -#define PMlogCriticalTemp 24 -#define PMlogOverrideOn 25 -#define PMlogOverrideOff 26 -#define PMlogEnqueueErr 27 /* change queue overflow */ -#define PMlogCollapseQueue 28 -#define PMlogChangeDone 29 -#define PMlogCtrlDriverTardy 30 /* controlling driver didn't acknowledge */ -#define PMlogIntDriverTardy 31 /* interested driver didn't acknowledge */ -#define PMlogStartAckTimer 32 -#define PMlogStartParentChange 33 -#define PMlogAmendParentChange 34 -#define PMlogStartDeviceChange 35 -#define PMlogRequestDenied 36 /* parent denied domain state change request */ -#define PMlogControllingDriverErr5 37 /* zero power states or we already have a driver with more power states */ -#define PMlogProgramHardware 38 -#define PMlogInformDriverPreChange 39 -#define PMlogInformDriverPostChange 40 -#define PMlogRemoveDriver 41 -#define PMsetIdleTimerPeriod 42 -#define PMlogSystemWake 43 -#define PMlogAcknowledgeErr5 44 -#define PMlogClientAcknowledge 45 -#define PMlogClientTardy 46 /* application or kernel client didn't acknowledge */ -#define PMlogClientCancel 47 +enum PMLogEnum { + kPMLogSetParent = 1, // 1 0x05100004 + kPMLogAddChild, // 2 0x05100008 + kPMLogRemoveChild, // 3 0x0510000c + kPMLogControllingDriver, // 4 0x05100010 + kPMLogControllingDriverErr1, // 5 0x05100014 - bad power state array version + kPMLogControllingDriverErr2, // 6 0x05100018 - power states already registered + kPMLogControllingDriverErr3, // 7 0x0510001c + kPMLogControllingDriverErr4, // 8 0x05100020 - power driver is invalid + kPMLogInterestedDriver, // 9 0x05100024 + kPMLogAcknowledgeErr1, // 10 0x05100028 - unknown entity called acknowledgePowerChange + kPMLogChildAcknowledge, // 11 0x0510002c + kPMLogDriverAcknowledge, // 12 0x05100030 - interested driver acknowledges + kPMLogAcknowledgeErr2, // 13 0x05100034 - object has already acked + kPMLogAcknowledgeErr3, // 14 0x05100038 - not expecting any acks + kPMLogAcknowledgeErr4, // 15 0x0510003c - not expecting acknowledgeSetPowerState + kPMLogDriverAcknowledgeSet, // 16 0x05100040 - controlling driver acknowledges + kPMLogWillChange, // 17 0x05100044 + kPMLogDidChange, // 18 0x05100048 + kPMLogRequestDomain, // 19 0x0510004c + kPMLogMakeUsable, // 20 0x05100050 + kPMLogChangeStateTo, // 21 0x05100054 + kPMLogChangeStateToPriv, // 22 0x05100058 + kPMLogSetAggressiveness, // 23 0x0510005c + kPMLogCriticalTemp, // 24 0x05100060 + kPMLogOverrideOn, // 25 0x05100064 + kPMLogOverrideOff, // 26 0x05100068 + kPMLogEnqueueErr, // 27 0x0510006c - NOT USED + kPMLogCollapseQueue, // 28 0x05100070 - NOT USED + kPMLogChangeDone, // 29 0x05100074 + kPMLogCtrlDriverTardy, // 30 0x05100078 - controlling driver didn't acknowledge + kPMLogIntDriverTardy, // 31 0x0510007c - interested driver didn't acknowledge + kPMLogStartAckTimer, // 32 0x05100080 + kPMLogStartParentChange, // 33 0x05100084 + kPMLogAmendParentChange, // 34 0x05100088 + kPMLogStartDeviceChange, // 35 0x0510008c + kPMLogRequestDenied, // 36 0x05100090 - parent denied domain state change request + kPMLogControllingDriverErr5, // 37 0x05100094 - too few power states + kPMLogProgramHardware, // 38 0x05100098 + kPMLogInformDriverPreChange, // 39 0x0510009c + kPMLogInformDriverPostChange, // 40 0x051000a0 + kPMLogRemoveDriver, // 41 0x051000a4 - NOT USED + kPMLogSetIdleTimerPeriod, // 42 0x051000a8 + kPMLogSystemWake, // 43 0x051000ac + kPMLogAcknowledgeErr5, // 44 0x051000b0 + kPMLogClientAcknowledge, // 45 0x051000b4 + kPMLogClientTardy, // 46 0x051000b8 - application didn't acknowledge + kPMLogClientCancel, // 47 0x051000bc - NOT USED + kPMLogClientNotify, // 48 0x051000c0 - client sent a notification + kPMLogAppNotify, // 49 0x051000c4 - application sent a notification + kPMLogSetClockGating, // 50 0x051000c8 - NOT USED + kPMLogSetPowerGating, // 51 0x051000cc - NOT USED + kPMLogSetPinGroup, // 52 0x051000d0 - NOT USED + kPMLogIdleCancel, // 53 0x051000d4 - device unidle during change + kIOPMlogLastEvent +};