Go to the documentation of this file. 1 #ifndef __ALPHA_SETUP_H
2 #define __ALPHA_SETUP_H
4 #define COMMAND_LINE_SIZE 256
11 #define BOOT_PCB 0x20000000
12 #define BOOT_ADDR 0x20000000
14 #define BOOT_SIZE (16*1024)
16 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
17 #define KERNEL_START_PHYS 0x300000
19 #define KERNEL_START_PHYS 0x1000000
22 #define KERNEL_START (PAGE_OFFSET+KERNEL_START_PHYS)
23 #define SWAPPER_PGD KERNEL_START
24 #define INIT_STACK (PAGE_OFFSET+KERNEL_START_PHYS+0x02000)
25 #define EMPTY_PGT (PAGE_OFFSET+KERNEL_START_PHYS+0x04000)
26 #define EMPTY_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x08000)
27 #define ZERO_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x0A000)
29 #define START_ADDR (PAGE_OFFSET+KERNEL_START_PHYS+0x10000)
37 #define PARAM ZERO_PGE
38 #define COMMAND_LINE ((char*)(PARAM + 0x0000))
39 #define INITRD_START (*(unsigned long *) (PARAM+0x100))
40 #define INITRD_SIZE (*(unsigned long *) (PARAM+0x108))