blob: dd9296dbe32238a808e2eaa82dda8a03760e7942 [file] [log] [blame]
Raghu Gandham82fa43f2012-03-27 11:37:17 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _ASM_BOOTINFO_H
20#define _ASM_BOOTINFO_H
21#include <linux/types.h>
22#include <asm/setup.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080024#define MACH_UNKNOWN 0
Raghu Gandham82fa43f2012-03-27 11:37:17 -070025#define MACH_DSUNKNOWN 0
Elliott Hughesc95eb572013-01-29 18:15:55 -080026#define MACH_DS23100 1
27#define MACH_DS5100 2
Raghu Gandham82fa43f2012-03-27 11:37:17 -070028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080029#define MACH_DS5000_200 3
30#define MACH_DS5000_1XX 4
31#define MACH_DS5000_XX 5
32#define MACH_DS5000_2X0 6
Raghu Gandham82fa43f2012-03-27 11:37:17 -070033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080034#define MACH_DS5400 7
35#define MACH_DS5500 8
36#define MACH_DS5800 9
37#define MACH_DS5900 10
Raghu Gandham82fa43f2012-03-27 11:37:17 -070038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080039#define MACH_MSP4200_EVAL 0
40#define MACH_MSP4200_GW 1
41#define MACH_MSP4200_FPGA 2
42#define MACH_MSP7120_EVAL 3
Raghu Gandham82fa43f2012-03-27 11:37:17 -070043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080044#define MACH_MSP7120_GW 4
45#define MACH_MSP7120_FPGA 5
46#define MACH_MSP_OTHER 255
47#define MACH_MIKROTIK_RB532 0
Raghu Gandham82fa43f2012-03-27 11:37:17 -070048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesc95eb572013-01-29 18:15:55 -080049#define MACH_MIKROTIK_RB532A 1
Raghu Gandham82fa43f2012-03-27 11:37:17 -070050#define CL_SIZE COMMAND_LINE_SIZE
51#define BOOT_MEM_MAP_MAX 32
52#define BOOT_MEM_RAM 1
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54#define BOOT_MEM_ROM_DATA 2
55#define BOOT_MEM_RESERVED 3
56struct boot_mem_map {
57 int nr_map;
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59 struct boot_mem_map_entry {
60 phys_t addr;
61 phys_t size;
62 long type;
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64 } map[BOOT_MEM_MAP_MAX];
65};
66#endif