wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #ifndef _ASM_ZIMAGE_H_ |
| 25 | #define _ASM_ZIMAGE_H_ |
| 26 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 27 | #include <asm/bootparam.h> |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 28 | #include <asm/e820.h> |
| 29 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 30 | /* linux i386 zImage/bzImage header. Offsets relative to |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 31 | * the start of the image */ |
| 32 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 33 | #define HEAP_FLAG 0x80 |
| 34 | #define BIG_KERNEL_FLAG 0x01 |
| 35 | |
| 36 | /* magic numbers */ |
| 37 | #define KERNEL_MAGIC 0xaa55 |
| 38 | #define KERNEL_V2_MAGIC 0x53726448 |
| 39 | #define COMMAND_LINE_MAGIC 0xA33F |
| 40 | |
| 41 | /* limits */ |
| 42 | #define BZIMAGE_MAX_SIZE 15*1024*1024 /* 15MB */ |
| 43 | #define ZIMAGE_MAX_SIZE 512*1024 /* 512k */ |
| 44 | #define SETUP_MAX_SIZE 32768 |
| 45 | |
| 46 | #define SETUP_START_OFFSET 0x200 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 47 | #define BZIMAGE_LOAD_ADDR 0x100000 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 48 | #define ZIMAGE_LOAD_ADDR 0x10000 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 49 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 50 | /* Implementation defined function to install an e820 map. */ |
| 51 | unsigned install_e820_map(unsigned max_entries, struct e820entry *); |
| 52 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 53 | struct boot_params *load_zimage(char *image, unsigned long kernel_size, |
| 54 | void **load_address); |
| 55 | int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot, |
| 56 | unsigned long initrd_addr, unsigned long initrd_size); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 57 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 58 | void boot_zimage(void *setup_base, void *load_address); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 59 | |
| 60 | #endif |