1 /* SPDX-License-Identifier: GPL-2.0-only */ 1 2 #ifndef __ALPHA_SETUP_H 3 #define __ALPHA_SETUP_H 4 5 #include <uapi/asm/setup.h> 6 7 /* 8 * We leave one page for the initial stack pag 9 * the initial process structure. Also, the co 10 * the initial bootloader (one of which we can 11 */ 12 #define BOOT_PCB 0x20000000 13 #define BOOT_ADDR 0x20000000 14 /* Remove when official MILO sources have ELF 15 #define BOOT_SIZE (16*1024) 16 17 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS 18 #define KERNEL_START_PHYS 0x300000 /* Ol 19 #else 20 #define KERNEL_START_PHYS 0x1000000 /* r 21 #endif 22 23 #define KERNEL_START (PAGE_OFFSET+KERNEL_ST 24 #define SWAPPER_PGD KERNEL_START 25 #define INIT_STACK (PAGE_OFFSET+KERNEL_ST 26 #define EMPTY_PGT (PAGE_OFFSET+KERNEL_ST 27 #define EMPTY_PGE (PAGE_OFFSET+KERNEL_ST 28 #define ZERO_PGE (PAGE_OFFSET+KERNEL_ST 29 30 #define START_ADDR (PAGE_OFFSET+KERNEL_ST 31 32 /* 33 * This is setup by the secondary bootstrap lo 34 * the zero page is zeroed out as soon as the 35 * initialized, we need to copy things out int 36 * place. 37 */ 38 #define PARAM ZERO_PGE 39 #define COMMAND_LINE ((char *)(abso 40 #define INITRD_START (*(unsigned lo 41 #define INITRD_SIZE (*(unsigned lo 42 43 #endif 44
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.