1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPILINUX_KEXEC_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPILINUX_KEXEC_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ON_CRASH 0x00000001
23a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_PRESERVE_CONTEXT 0x00000002
25655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_MASK 0xffff0000
2682d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris#define KEXEC_FILE_UNLOAD 0x00000001
2782d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris#define KEXEC_FILE_ON_CRASH 0x00000002
2882d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
2982d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris#define KEXEC_FILE_NO_INITRAMFS 0x00000004
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define KEXEC_ARCH_DEFAULT (0 << 16)
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define KEXEC_ARCH_386 (3 << 16)
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define KEXEC_ARCH_68K (4 << 16)
3382d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_X86_64 (62 << 16)
35655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_PPC (20 << 16)
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_PPC64 (21 << 16)
3738062f954c637861348dd8078cefb73554e6f12cChristopher Ferris#define KEXEC_ARCH_IA_64 (50 << 16)
3882d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_ARM (40 << 16)
40655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_S390 (22 << 16)
41655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_ARCH_SH (42 << 16)
4238062f954c637861348dd8078cefb73554e6f12cChristopher Ferris#define KEXEC_ARCH_MIPS_LE (10 << 16)
4382d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define KEXEC_ARCH_MIPS (8 << 16)
45655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define KEXEC_SEGMENT_MAX 16
46655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct kexec_segment {
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  const void * buf;
4882d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  size_t bufsz;
50d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  const void * mem;
51d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  size_t memsz;
5238062f954c637861348dd8078cefb73554e6f12cChristopher Ferris};
5382d7504cd7d5c8d2175fb3b1a4ee3518cad6aa0fChristopher Ferris/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
55