2 * include/asm-s390/setup.h
5 * Copyright IBM Corp. 1999,2006
8 #ifndef _ASM_S390_SETUP_H
9 #define _ASM_S390_SETUP_H
11 #define COMMAND_LINE_SIZE 896
15 #include <asm/types.h>
17 #define PARMAREA 0x10400
18 #define MEMORY_CHUNKS 16 /* max 0x7fff */
19 #define IPL_PARMBLOCK_ORIGIN 0x2000
24 #define IPL_DEVICE (*(unsigned long *) (0x10404))
25 #define INITRD_START (*(unsigned long *) (0x1040C))
26 #define INITRD_SIZE (*(unsigned long *) (0x10414))
28 #define IPL_DEVICE (*(unsigned long *) (0x10400))
29 #define INITRD_START (*(unsigned long *) (0x10408))
30 #define INITRD_SIZE (*(unsigned long *) (0x10410))
31 #endif /* __s390x__ */
32 #define COMMAND_LINE ((char *) (0x10480))
34 #define CHUNK_READ_WRITE 0
35 #define CHUNK_READ_ONLY 1
43 extern struct mem_chunk memory_chunk
[];
46 * Machine features detected in head.S
48 extern unsigned long machine_flags
;
50 #define MACHINE_IS_VM (machine_flags & 1)
51 #define MACHINE_IS_P390 (machine_flags & 4)
52 #define MACHINE_HAS_MVPG (machine_flags & 16)
53 #define MACHINE_HAS_IDTE (machine_flags & 128)
54 #define MACHINE_HAS_DIAG9C (machine_flags & 256)
57 #define MACHINE_HAS_IEEE (machine_flags & 2)
58 #define MACHINE_HAS_CSP (machine_flags & 8)
59 #define MACHINE_HAS_DIAG44 (1)
60 #define MACHINE_HAS_MVCOS (0)
62 #define MACHINE_HAS_IEEE (1)
63 #define MACHINE_HAS_CSP (1)
64 #define MACHINE_HAS_DIAG44 (machine_flags & 32)
65 #define MACHINE_HAS_MVCOS (machine_flags & 512)
66 #endif /* __s390x__ */
68 #define MACHINE_HAS_SCLP (!MACHINE_IS_P390)
71 * Console mode. Override with conmode=
73 extern unsigned int console_mode
;
74 extern unsigned int console_devno
;
75 extern unsigned int console_irq
;
77 #define CONSOLE_IS_UNDEFINED (console_mode == 0)
78 #define CONSOLE_IS_SCLP (console_mode == 1)
79 #define CONSOLE_IS_3215 (console_mode == 2)
80 #define CONSOLE_IS_3270 (console_mode == 3)
81 #define SET_CONSOLE_SCLP do { console_mode = 1; } while (0)
82 #define SET_CONSOLE_3215 do { console_mode = 2; } while (0)
83 #define SET_CONSOLE_3270 do { console_mode = 3; } while (0)
93 } __attribute__((packed
));
95 struct ipl_block_fcp
{
110 } __attribute__((packed
));
112 struct ipl_block_ccw
{
120 } __attribute__((packed
));
122 struct ipl_parameter_block
{
123 struct ipl_list_hdr hdr
;
125 struct ipl_block_fcp fcp
;
126 struct ipl_block_ccw ccw
;
128 } __attribute__((packed
));
130 #define IPL_PARM_BLK_FCP_LEN (sizeof(struct ipl_list_hdr) + \
131 sizeof(struct ipl_block_fcp))
133 #define IPL_PARM_BLK_CCW_LEN (sizeof(struct ipl_list_hdr) + \
134 sizeof(struct ipl_block_ccw))
136 #define IPL_MAX_SUPPORTED_VERSION (0)
139 * IPL validity flags and parameters as detected in head.S
141 extern u32 ipl_flags
;
142 extern u16 ipl_devno
;
148 IPL_PARMBLOCK_VALID
= 2,
151 #define IPL_PARMBLOCK_START ((struct ipl_parameter_block *) \
152 IPL_PARMBLOCK_ORIGIN)
153 #define IPL_PARMBLOCK_SIZE (IPL_PARMBLOCK_START->hdr.len)
155 #else /* __ASSEMBLY__ */
158 #define IPL_DEVICE 0x10404
159 #define INITRD_START 0x1040C
160 #define INITRD_SIZE 0x10414
161 #else /* __s390x__ */
162 #define IPL_DEVICE 0x10400
163 #define INITRD_START 0x10408
164 #define INITRD_SIZE 0x10410
165 #endif /* __s390x__ */
166 #define COMMAND_LINE 0x10480
168 #endif /* __ASSEMBLY__ */
169 #endif /* __KERNEL__ */
170 #endif /* _ASM_S390_SETUP_H */