]>
Commit | Line | Data |
---|---|---|
3a60a9f5 A |
1 | /* |
2 | * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. | |
3 | * | |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
3a60a9f5 | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
3a60a9f5 A |
27 | */ |
28 | ||
29 | #include <stdint.h> | |
30 | ||
31 | #ifdef __cplusplus | |
32 | extern "C" { | |
33 | #endif | |
34 | ||
35 | #ifdef KERNEL | |
316670eb | 36 | #include <libkern/crypto/aes.h> |
6d2010ae | 37 | #include <uuid/uuid.h> |
3a60a9f5 A |
38 | #endif |
39 | ||
316670eb A |
40 | #ifndef __IOKIT_IOHIBERNATEPRIVATE_H |
41 | #define __IOKIT_IOHIBERNATEPRIVATE_H | |
42 | ||
3a60a9f5 A |
43 | struct IOPolledFileExtent |
44 | { | |
45 | uint64_t start; | |
46 | uint64_t length; | |
47 | }; | |
48 | typedef struct IOPolledFileExtent IOPolledFileExtent; | |
49 | ||
50 | struct IOHibernateImageHeader | |
51 | { | |
52 | uint64_t imageSize; | |
53 | uint64_t image1Size; | |
54 | ||
6d2010ae A |
55 | uint32_t restore1CodePhysPage; |
56 | uint32_t reserved1; | |
57 | uint64_t restore1CodeVirt; | |
3a60a9f5 A |
58 | uint32_t restore1PageCount; |
59 | uint32_t restore1CodeOffset; | |
60 | uint32_t restore1StackOffset; | |
61 | ||
62 | uint32_t pageCount; | |
63 | uint32_t bitmapSize; | |
64 | ||
65 | uint32_t restore1Sum; | |
66 | uint32_t image1Sum; | |
67 | uint32_t image2Sum; | |
68 | ||
69 | uint32_t actualRestore1Sum; | |
70 | uint32_t actualImage1Sum; | |
71 | uint32_t actualImage2Sum; | |
72 | ||
73 | uint32_t actualUncompressedPages; | |
74 | uint32_t conflictCount; | |
75 | uint32_t nextFree; | |
76 | ||
77 | uint32_t signature; | |
78 | uint32_t processorFlags; | |
79 | ||
0c530ab8 A |
80 | uint32_t runtimePages; |
81 | uint32_t runtimePageCount; | |
b0d623f7 | 82 | uint64_t runtimeVirtualPages __attribute__ ((packed)); |
d1ecb069 A |
83 | |
84 | uint32_t performanceDataStart; | |
85 | uint32_t performanceDataSize; | |
3a60a9f5 | 86 | |
b0d623f7 A |
87 | uint64_t encryptStart __attribute__ ((packed)); |
88 | uint64_t machineSignature __attribute__ ((packed)); | |
3a60a9f5 A |
89 | |
90 | uint32_t previewSize; | |
91 | uint32_t previewPageListSize; | |
92 | ||
93 | uint32_t diag[4]; | |
94 | ||
6d2010ae A |
95 | uint32_t handoffPages; |
96 | uint32_t handoffPageCount; | |
97 | ||
0c530ab8 A |
98 | uint32_t systemTableOffset; |
99 | ||
b0d623f7 | 100 | uint32_t debugFlags; |
0b4c1975 | 101 | uint32_t options; |
316670eb | 102 | uint32_t sleepTime; |
db609669 | 103 | uint32_t compression; |
b0d623f7 | 104 | |
39236c6e A |
105 | uint32_t reserved[58]; // make sizeof == 512 |
106 | uint32_t booterTime0; | |
107 | uint32_t booterTime1; | |
108 | uint32_t booterTime2; | |
109 | ||
110 | uint32_t booterStart; | |
111 | uint32_t smcStart; | |
112 | uint32_t connectDisplayTime; | |
113 | uint32_t splashTime; | |
114 | uint32_t booterTime; | |
115 | uint32_t trampolineTime; | |
0b4c1975 A |
116 | |
117 | uint64_t encryptEnd __attribute__ ((packed)); | |
118 | uint64_t deviceBase __attribute__ ((packed)); | |
39236c6e | 119 | uint32_t deviceBlockSize; |
3a60a9f5 A |
120 | |
121 | uint32_t fileExtentMapSize; | |
122 | IOPolledFileExtent fileExtentMap[2]; | |
123 | }; | |
124 | typedef struct IOHibernateImageHeader IOHibernateImageHeader; | |
125 | ||
b0d623f7 A |
126 | enum |
127 | { | |
128 | kIOHibernateDebugRestoreLogs = 0x00000001 | |
129 | }; | |
3a60a9f5 | 130 | |
0b4c1975 A |
131 | // options & IOHibernateOptions property |
132 | enum | |
133 | { | |
134 | kIOHibernateOptionSSD = 0x00000001, | |
135 | kIOHibernateOptionColor = 0x00000002, | |
136 | kIOHibernateOptionProgress = 0x00000004, | |
137 | kIOHibernateOptionDarkWake = 0x00000008, | |
138 | }; | |
139 | ||
3a60a9f5 A |
140 | struct hibernate_bitmap_t |
141 | { | |
142 | uint32_t first_page; | |
143 | uint32_t last_page; | |
144 | uint32_t bitmapwords; | |
145 | uint32_t bitmap[0]; | |
146 | }; | |
147 | typedef struct hibernate_bitmap_t hibernate_bitmap_t; | |
148 | ||
149 | struct hibernate_page_list_t | |
150 | { | |
151 | uint32_t list_size; | |
152 | uint32_t page_count; | |
153 | uint32_t bank_count; | |
154 | hibernate_bitmap_t bank_bitmap[0]; | |
155 | }; | |
156 | typedef struct hibernate_page_list_t hibernate_page_list_t; | |
157 | ||
2d21ac55 A |
158 | #if defined(_AES_H) |
159 | ||
3a60a9f5 A |
160 | struct hibernate_cryptwakevars_t |
161 | { | |
3a60a9f5 | 162 | uint8_t aes_iv[AES_BLOCK_SIZE]; |
3a60a9f5 A |
163 | }; |
164 | typedef struct hibernate_cryptwakevars_t hibernate_cryptwakevars_t; | |
165 | ||
166 | struct hibernate_cryptvars_t | |
167 | { | |
3a60a9f5 A |
168 | uint8_t aes_iv[AES_BLOCK_SIZE]; |
169 | aes_ctx ctx; | |
3a60a9f5 A |
170 | }; |
171 | typedef struct hibernate_cryptvars_t hibernate_cryptvars_t; | |
172 | ||
2d21ac55 A |
173 | #endif /* defined(_AES_H) */ |
174 | ||
6d2010ae A |
175 | enum |
176 | { | |
177 | kIOHibernateHandoffType = 0x686f0000, | |
178 | kIOHibernateHandoffTypeEnd = kIOHibernateHandoffType + 0, | |
179 | kIOHibernateHandoffTypeGraphicsInfo = kIOHibernateHandoffType + 1, | |
180 | kIOHibernateHandoffTypeCryptVars = kIOHibernateHandoffType + 2, | |
181 | kIOHibernateHandoffTypeMemoryMap = kIOHibernateHandoffType + 3, | |
182 | kIOHibernateHandoffTypeDeviceTree = kIOHibernateHandoffType + 4, | |
183 | kIOHibernateHandoffTypeDeviceProperties = kIOHibernateHandoffType + 5, | |
184 | kIOHibernateHandoffTypeKeyStore = kIOHibernateHandoffType + 6, | |
185 | }; | |
186 | ||
187 | struct IOHibernateHandoff | |
188 | { | |
189 | uint32_t type; | |
190 | uint32_t bytecount; | |
191 | uint8_t data[]; | |
192 | }; | |
193 | typedef struct IOHibernateHandoff IOHibernateHandoff; | |
3a60a9f5 A |
194 | |
195 | enum | |
196 | { | |
197 | kIOHibernateProgressCount = 19, | |
198 | kIOHibernateProgressWidth = 7, | |
199 | kIOHibernateProgressHeight = 16, | |
200 | kIOHibernateProgressSpacing = 3, | |
201 | kIOHibernateProgressOriginY = 81, | |
202 | ||
203 | kIOHibernateProgressSaveUnderSize = 2*5+14*2, | |
204 | ||
205 | kIOHibernateProgressLightGray = 230, | |
206 | kIOHibernateProgressMidGray = 174, | |
207 | kIOHibernateProgressDarkGray = 92 | |
208 | }; | |
209 | ||
2d21ac55 A |
210 | enum |
211 | { | |
212 | kIOHibernatePostWriteSleep = 0, | |
213 | kIOHibernatePostWriteWake = 1, | |
214 | kIOHibernatePostWriteHalt = 2, | |
215 | kIOHibernatePostWriteRestart = 3 | |
216 | }; | |
217 | ||
218 | ||
3a60a9f5 A |
219 | struct hibernate_graphics_t |
220 | { | |
0b4c1975 A |
221 | uint32_t physicalAddress; // Base address of video memory |
222 | int32_t gfxStatus; // EFI config restore status | |
0c530ab8 A |
223 | uint32_t rowBytes; // Number of bytes per pixel row |
224 | uint32_t width; // Width | |
225 | uint32_t height; // Height | |
226 | uint32_t depth; // Pixel Depth | |
227 | ||
228 | uint8_t progressSaveUnder[kIOHibernateProgressCount][kIOHibernateProgressSaveUnderSize]; | |
3a60a9f5 A |
229 | }; |
230 | typedef struct hibernate_graphics_t hibernate_graphics_t; | |
231 | ||
232 | #define DECLARE_IOHIBERNATEPROGRESSALPHA \ | |
233 | static const uint8_t gIOHibernateProgressAlpha \ | |
234 | [kIOHibernateProgressHeight][kIOHibernateProgressWidth] = \ | |
235 | { \ | |
236 | { 0x00,0x63,0xd8,0xf0,0xd8,0x63,0x00 }, \ | |
237 | { 0x51,0xff,0xff,0xff,0xff,0xff,0x51 }, \ | |
238 | { 0xae,0xff,0xff,0xff,0xff,0xff,0xae }, \ | |
239 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
240 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
241 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
242 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
243 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
244 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
245 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
246 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
247 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
248 | { 0xc3,0xff,0xff,0xff,0xff,0xff,0xc3 }, \ | |
249 | { 0xae,0xff,0xff,0xff,0xff,0xff,0xae }, \ | |
250 | { 0x54,0xff,0xff,0xff,0xff,0xff,0x54 }, \ | |
251 | { 0x00,0x66,0xdb,0xf3,0xdb,0x66,0x00 } \ | |
252 | }; | |
253 | ||
316670eb A |
254 | struct hibernate_preview_t |
255 | { | |
256 | uint32_t imageCount; // Number of images | |
257 | uint32_t width; // Width | |
258 | uint32_t height; // Height | |
259 | uint32_t depth; // Pixel Depth | |
260 | uint32_t lockTime; // Lock time | |
261 | uint32_t reservedG[8]; // reserved | |
262 | uint32_t reservedK[8]; // reserved | |
263 | }; | |
264 | typedef struct hibernate_preview_t hibernate_preview_t; | |
265 | ||
39236c6e A |
266 | struct hibernate_statistics_t |
267 | { | |
268 | uint64_t image1Size; | |
269 | uint64_t imageSize; | |
270 | uint32_t image1Pages; | |
271 | uint32_t imagePages; | |
272 | uint32_t booterStart; | |
273 | uint32_t smcStart; | |
274 | uint32_t booterDuration; | |
275 | uint32_t booterConnectDisplayDuration; | |
276 | uint32_t booterSplashDuration; | |
277 | uint32_t booterDuration0; | |
278 | uint32_t booterDuration1; | |
279 | uint32_t booterDuration2; | |
280 | uint32_t trampolineDuration; | |
281 | uint32_t kernelImageReadDuration; | |
282 | ||
283 | uint32_t graphicsReadyTime; | |
284 | uint32_t wakeNotificationTime; | |
285 | uint32_t lockScreenReadyTime; | |
286 | uint32_t hidReadyTime; | |
287 | ||
288 | uint32_t wakeCapability; | |
289 | uint32_t resvA[15]; | |
290 | }; | |
291 | typedef struct hibernate_statistics_t hibernate_statistics_t; | |
292 | ||
293 | #define kIOSysctlHibernateStatistics "kern.hibernatestatistics" | |
294 | #define kIOSysctlHibernateGraphicsReady "kern.hibernategraphicsready" | |
295 | #define kIOSysctlHibernateWakeNotify "kern.hibernatewakenotification" | |
296 | #define kIOSysctlHibernateScreenReady "kern.hibernatelockscreenready" | |
297 | #define kIOSysctlHibernateHIDReady "kern.hibernatehidready" | |
298 | ||
3a60a9f5 A |
299 | #ifdef KERNEL |
300 | ||
301 | #ifdef __cplusplus | |
302 | ||
303 | void IOHibernateSystemInit(IOPMrootDomain * rootDomain); | |
304 | ||
305 | IOReturn IOHibernateSystemSleep(void); | |
316670eb | 306 | IOReturn IOHibernateIOKitSleep(void); |
3a60a9f5 A |
307 | IOReturn IOHibernateSystemHasSlept(void); |
308 | IOReturn IOHibernateSystemWake(void); | |
309 | IOReturn IOHibernateSystemPostWake(void); | |
316670eb A |
310 | bool IOHibernateWasScreenLocked(void); |
311 | void IOHibernateSetScreenLocked(uint32_t lockState); | |
39236c6e | 312 | void IOHibernateSetWakeCapabilities(uint32_t capability); |
99c3a104 | 313 | void IOHibernateSystemRestart(void); |
3a60a9f5 A |
314 | |
315 | #endif /* __cplusplus */ | |
316 | ||
317 | #ifdef _SYS_CONF_H_ | |
318 | typedef void (*kern_get_file_extents_callback_t)(void * ref, uint64_t start, uint64_t size); | |
319 | ||
320 | struct kern_direct_file_io_ref_t * | |
321 | kern_open_file_for_direct_io(const char * name, | |
322 | kern_get_file_extents_callback_t callback, | |
6d2010ae | 323 | void * callback_ref, |
db609669 A |
324 | |
325 | off_t set_file_size, | |
326 | ||
327 | off_t write_file_offset, | |
328 | caddr_t write_file_addr, | |
329 | vm_size_t write_file_len, | |
330 | ||
6d2010ae A |
331 | dev_t * partition_device_result, |
332 | dev_t * image_device_result, | |
333 | uint64_t * partitionbase_result, | |
334 | uint64_t * maxiocount_result, | |
db609669 | 335 | uint32_t * oflags); |
3a60a9f5 | 336 | void |
6d2010ae | 337 | kern_close_file_for_direct_io(struct kern_direct_file_io_ref_t * ref, |
7ddcb079 A |
338 | off_t write_offset, caddr_t addr, vm_size_t write_length, |
339 | off_t discard_offset, off_t discard_end); | |
3a60a9f5 A |
340 | #endif /* _SYS_CONF_H_ */ |
341 | ||
8a3053a0 A |
342 | void |
343 | vm_compressor_do_warmup(void); | |
344 | ||
3a60a9f5 | 345 | hibernate_page_list_t * |
db609669 | 346 | hibernate_page_list_allocate(boolean_t log); |
3a60a9f5 | 347 | |
39236c6e A |
348 | kern_return_t |
349 | hibernate_alloc_page_lists( | |
350 | hibernate_page_list_t ** page_list_ret, | |
351 | hibernate_page_list_t ** page_list_wired_ret, | |
352 | hibernate_page_list_t ** page_list_pal_ret); | |
353 | ||
3a60a9f5 A |
354 | kern_return_t |
355 | hibernate_setup(IOHibernateImageHeader * header, | |
0b4c1975 A |
356 | uint32_t free_page_ratio, |
357 | uint32_t free_page_time, | |
358 | boolean_t vmflush, | |
39236c6e A |
359 | hibernate_page_list_t * page_list, |
360 | hibernate_page_list_t * page_list_wired, | |
361 | hibernate_page_list_t * page_list_pal); | |
362 | ||
3a60a9f5 A |
363 | kern_return_t |
364 | hibernate_teardown(hibernate_page_list_t * page_list, | |
99c3a104 A |
365 | hibernate_page_list_t * page_list_wired, |
366 | hibernate_page_list_t * page_list_pal); | |
3a60a9f5 A |
367 | |
368 | kern_return_t | |
369 | hibernate_processor_setup(IOHibernateImageHeader * header); | |
370 | ||
b0d623f7 A |
371 | void |
372 | hibernate_gobble_pages(uint32_t gobble_count, uint32_t free_page_time); | |
373 | void | |
374 | hibernate_free_gobble_pages(void); | |
375 | ||
db609669 A |
376 | void |
377 | hibernate_vm_lock_queues(void); | |
378 | void | |
379 | hibernate_vm_unlock_queues(void); | |
380 | ||
3a60a9f5 A |
381 | void |
382 | hibernate_vm_lock(void); | |
383 | void | |
384 | hibernate_vm_unlock(void); | |
385 | ||
0c530ab8 | 386 | // mark pages not to be saved, based on VM system accounting |
3a60a9f5 A |
387 | void |
388 | hibernate_page_list_setall(hibernate_page_list_t * page_list, | |
389 | hibernate_page_list_t * page_list_wired, | |
6d2010ae | 390 | hibernate_page_list_t * page_list_pal, |
39236c6e A |
391 | boolean_t preflight, |
392 | boolean_t discard_all, | |
3a60a9f5 A |
393 | uint32_t * pagesOut); |
394 | ||
0c530ab8 A |
395 | // mark pages to be saved, or pages not to be saved but available |
396 | // for scratch usage during restore | |
3a60a9f5 A |
397 | void |
398 | hibernate_page_list_setall_machine(hibernate_page_list_t * page_list, | |
399 | hibernate_page_list_t * page_list_wired, | |
db609669 | 400 | boolean_t preflight, |
3a60a9f5 | 401 | uint32_t * pagesOut); |
0c530ab8 A |
402 | |
403 | // mark pages not to be saved and not for scratch usage during restore | |
404 | void | |
405 | hibernate_page_list_set_volatile( hibernate_page_list_t * page_list, | |
406 | hibernate_page_list_t * page_list_wired, | |
407 | uint32_t * pagesOut); | |
408 | ||
3a60a9f5 A |
409 | void |
410 | hibernate_page_list_discard(hibernate_page_list_t * page_list); | |
411 | ||
0b4c1975 A |
412 | int |
413 | hibernate_should_abort(void); | |
414 | ||
3a60a9f5 A |
415 | void |
416 | hibernate_set_page_state(hibernate_page_list_t * page_list, hibernate_page_list_t * page_list_wired, | |
417 | vm_offset_t ppnum, vm_offset_t count, uint32_t kind); | |
418 | ||
419 | void | |
420 | hibernate_page_bitset(hibernate_page_list_t * list, boolean_t set, uint32_t page); | |
0c530ab8 | 421 | |
3a60a9f5 A |
422 | boolean_t |
423 | hibernate_page_bittst(hibernate_page_list_t * list, uint32_t page); | |
424 | ||
0c530ab8 A |
425 | hibernate_bitmap_t * |
426 | hibernate_page_bitmap_pin(hibernate_page_list_t * list, uint32_t * page); | |
427 | ||
3a60a9f5 | 428 | uint32_t |
0c530ab8 | 429 | hibernate_page_bitmap_count(hibernate_bitmap_t * bitmap, uint32_t set, uint32_t page); |
3a60a9f5 | 430 | |
6d2010ae | 431 | uintptr_t |
3a60a9f5 A |
432 | hibernate_restore_phys_page(uint64_t src, uint64_t dst, uint32_t len, uint32_t procFlags); |
433 | ||
434 | void | |
435 | hibernate_machine_init(void); | |
2d21ac55 A |
436 | |
437 | uint32_t | |
3a60a9f5 A |
438 | hibernate_write_image(void); |
439 | ||
440 | long | |
7ddcb079 | 441 | hibernate_machine_entrypoint(uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4); |
3a60a9f5 | 442 | long |
7ddcb079 | 443 | hibernate_kernel_entrypoint(uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4); |
0c530ab8 A |
444 | void |
445 | hibernate_newruntime_map(void * map, vm_size_t map_size, | |
446 | uint32_t system_table_offset); | |
447 | ||
3a60a9f5 A |
448 | |
449 | extern uint32_t gIOHibernateState; | |
450 | extern uint32_t gIOHibernateMode; | |
b0d623f7 | 451 | extern uint32_t gIOHibernateDebugFlags; |
3a60a9f5 A |
452 | extern uint32_t gIOHibernateFreeTime; // max time to spend freeing pages (ms) |
453 | extern uint8_t gIOHibernateRestoreStack[]; | |
454 | extern uint8_t gIOHibernateRestoreStackEnd[]; | |
455 | extern IOHibernateImageHeader * gIOHibernateCurrentHeader; | |
3a60a9f5 A |
456 | |
457 | #define HIBLOG(fmt, args...) \ | |
458 | { kprintf(fmt, ## args); printf(fmt, ## args); } | |
459 | ||
460 | #define HIBPRINT(fmt, args...) \ | |
461 | { kprintf(fmt, ## args); } | |
462 | ||
463 | #endif /* KERNEL */ | |
464 | ||
465 | // gIOHibernateState, kIOHibernateStateKey | |
466 | enum | |
467 | { | |
468 | kIOHibernateStateInactive = 0, | |
469 | kIOHibernateStateHibernating = 1, /* writing image */ | |
470 | kIOHibernateStateWakingFromHibernate = 2 /* booted and restored image */ | |
471 | }; | |
472 | ||
473 | // gIOHibernateMode, kIOHibernateModeKey | |
474 | enum | |
475 | { | |
476 | kIOHibernateModeOn = 0x00000001, | |
477 | kIOHibernateModeSleep = 0x00000002, | |
478 | kIOHibernateModeEncrypt = 0x00000004, | |
3a60a9f5 | 479 | kIOHibernateModeDiscardCleanInactive = 0x00000008, |
2d21ac55 A |
480 | kIOHibernateModeDiscardCleanActive = 0x00000010, |
481 | kIOHibernateModeSwitch = 0x00000020, | |
0b4c1975 A |
482 | kIOHibernateModeRestart = 0x00000040, |
483 | kIOHibernateModeSSDInvert = 0x00000080, | |
db609669 | 484 | kIOHibernateModeFileResize = 0x00000100, |
3a60a9f5 A |
485 | }; |
486 | ||
487 | // IOHibernateImageHeader.signature | |
488 | enum | |
489 | { | |
490 | kIOHibernateHeaderSignature = 0x73696d65, | |
491 | kIOHibernateHeaderInvalidSignature = 0x7a7a7a7a | |
492 | }; | |
493 | ||
494 | // kind for hibernate_set_page_state() | |
495 | enum | |
496 | { | |
497 | kIOHibernatePageStateFree = 0, | |
498 | kIOHibernatePageStateWiredSave = 1, | |
499 | kIOHibernatePageStateUnwiredSave = 2 | |
500 | }; | |
501 | ||
502 | #define kIOHibernateModeKey "Hibernate Mode" | |
503 | #define kIOHibernateFileKey "Hibernate File" | |
db609669 A |
504 | #define kIOHibernateFileMinSizeKey "Hibernate File Min" |
505 | #define kIOHibernateFileMaxSizeKey "Hibernate File Max" | |
3a60a9f5 A |
506 | #define kIOHibernateFreeRatioKey "Hibernate Free Ratio" |
507 | #define kIOHibernateFreeTimeKey "Hibernate Free Time" | |
508 | ||
509 | #define kIOHibernateStateKey "IOHibernateState" | |
510 | #define kIOHibernateFeatureKey "Hibernation" | |
511 | #define kIOHibernatePreviewBufferKey "IOPreviewBuffer" | |
512 | ||
316670eb | 513 | #ifndef kIOHibernatePreviewActiveKey |
2d21ac55 A |
514 | #define kIOHibernatePreviewActiveKey "IOHibernatePreviewActive" |
515 | // values for kIOHibernatePreviewActiveKey | |
516 | enum { | |
517 | kIOHibernatePreviewActive = 0x00000001, | |
518 | kIOHibernatePreviewUpdates = 0x00000002 | |
519 | }; | |
316670eb | 520 | #endif |
2d21ac55 | 521 | |
0b4c1975 A |
522 | #define kIOHibernateOptionsKey "IOHibernateOptions" |
523 | #define kIOHibernateGfxStatusKey "IOHibernateGfxStatus" | |
524 | enum { | |
525 | kIOHibernateGfxStatusUnknown = ((int32_t) 0xFFFFFFFF) | |
526 | }; | |
527 | ||
3a60a9f5 A |
528 | #define kIOHibernateBootImageKey "boot-image" |
529 | #define kIOHibernateBootImageKeyKey "boot-image-key" | |
530 | #define kIOHibernateBootSignatureKey "boot-signature" | |
531 | ||
532 | #define kIOHibernateMemorySignatureKey "memory-signature" | |
533 | #define kIOHibernateMemorySignatureEnvKey "mem-sig" | |
534 | #define kIOHibernateMachineSignatureKey "machine-signature" | |
535 | ||
0c530ab8 | 536 | #define kIOHibernateRTCVariablesKey "IOHibernateRTCVariables" |
6d2010ae | 537 | #define kIOHibernateSMCVariablesKey "IOHibernateSMCVariables" |
0c530ab8 | 538 | |
99c3a104 A |
539 | #define kIOHibernateBootSwitchVarsKey "boot-switch-vars" |
540 | ||
541 | #define kIOHibernateBootNoteKey "boot-note" | |
542 | ||
2d21ac55 | 543 | |
6d2010ae | 544 | #define kIOHibernateUseKernelInterpreter 0x80000000 |
2d21ac55 | 545 | |
316670eb A |
546 | enum |
547 | { | |
548 | kIOPreviewImageIndexDesktop = 0, | |
549 | kIOPreviewImageIndexLockScreen = 1, | |
550 | kIOPreviewImageCount = 2 | |
551 | }; | |
552 | ||
553 | enum | |
554 | { | |
555 | kIOScreenLockNoLock = 1, | |
556 | kIOScreenLockUnlocked = 2, | |
557 | kIOScreenLockLocked = 3, | |
558 | kIOScreenLockFileVaultDialog = 4, | |
559 | }; | |
560 | ||
561 | #define kIOScreenLockStateKey "IOScreenLockState" | |
562 | ||
563 | #endif /* ! __IOKIT_IOHIBERNATEPRIVATE_H */ | |
564 | ||
3a60a9f5 A |
565 | #ifdef __cplusplus |
566 | } | |
567 | #endif |