Add linux-next specific files for 20110831
[linux-2.6/next.git] / arch / s390 / include / asm / setup.h
blobfb90e8af663da76eec9c9d918402972545dd97bb
1 /*
2 * include/asm-s390/setup.h
4 * S390 version
5 * Copyright IBM Corp. 1999,2010
6 */
8 #ifndef _ASM_S390_SETUP_H
9 #define _ASM_S390_SETUP_H
11 #define COMMAND_LINE_SIZE 4096
13 #define ARCH_COMMAND_LINE_SIZE 896
15 #ifdef __KERNEL__
17 #define PARMAREA 0x10400
18 #define MEMORY_CHUNKS 256
20 #ifndef __ASSEMBLY__
22 #include <asm/lowcore.h>
23 #include <asm/types.h>
25 #ifndef __s390x__
26 #define IPL_DEVICE (*(unsigned long *) (0x10404))
27 #define INITRD_START (*(unsigned long *) (0x1040C))
28 #define INITRD_SIZE (*(unsigned long *) (0x10414))
29 #else /* __s390x__ */
30 #define IPL_DEVICE (*(unsigned long *) (0x10400))
31 #define INITRD_START (*(unsigned long *) (0x10408))
32 #define INITRD_SIZE (*(unsigned long *) (0x10410))
33 #define OLDMEM_BASE (*(unsigned long *) (0x10418))
34 #define OLDMEM_SIZE (*(unsigned long *) (0x10420))
35 #endif /* __s390x__ */
36 #define COMMAND_LINE ((char *) (0x10480))
38 #define CHUNK_READ_WRITE 0
39 #define CHUNK_READ_ONLY 1
40 #define CHUNK_OLDMEM 4
41 #define CHUNK_CRASHK 5
43 struct mem_chunk {
44 unsigned long addr;
45 unsigned long size;
46 int type;
49 extern struct mem_chunk memory_chunk[];
50 extern unsigned long real_memory_size;
51 extern int memory_end_set;
52 extern unsigned long memory_end;
54 void detect_memory_layout(struct mem_chunk chunk[]);
55 void create_mem_hole(struct mem_chunk memory_chunk[], unsigned long addr,
56 unsigned long size, int type);
58 #define PRIMARY_SPACE_MODE 0
59 #define ACCESS_REGISTER_MODE 1
60 #define SECONDARY_SPACE_MODE 2
61 #define HOME_SPACE_MODE 3
63 extern unsigned int user_mode;
66 * Machine features detected in head.S
69 #define MACHINE_FLAG_VM (1UL << 0)
70 #define MACHINE_FLAG_IEEE (1UL << 1)
71 #define MACHINE_FLAG_CSP (1UL << 3)
72 #define MACHINE_FLAG_MVPG (1UL << 4)
73 #define MACHINE_FLAG_DIAG44 (1UL << 5)
74 #define MACHINE_FLAG_IDTE (1UL << 6)
75 #define MACHINE_FLAG_DIAG9C (1UL << 7)
76 #define MACHINE_FLAG_MVCOS (1UL << 8)
77 #define MACHINE_FLAG_KVM (1UL << 9)
78 #define MACHINE_FLAG_HPAGE (1UL << 10)
79 #define MACHINE_FLAG_PFMF (1UL << 11)
80 #define MACHINE_FLAG_LPAR (1UL << 12)
81 #define MACHINE_FLAG_SPP (1UL << 13)
82 #define MACHINE_FLAG_TOPOLOGY (1UL << 14)
84 #define MACHINE_IS_VM (S390_lowcore.machine_flags & MACHINE_FLAG_VM)
85 #define MACHINE_IS_KVM (S390_lowcore.machine_flags & MACHINE_FLAG_KVM)
86 #define MACHINE_IS_LPAR (S390_lowcore.machine_flags & MACHINE_FLAG_LPAR)
88 #define MACHINE_HAS_DIAG9C (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG9C)
90 #ifndef __s390x__
91 #define MACHINE_HAS_IEEE (S390_lowcore.machine_flags & MACHINE_FLAG_IEEE)
92 #define MACHINE_HAS_CSP (S390_lowcore.machine_flags & MACHINE_FLAG_CSP)
93 #define MACHINE_HAS_IDTE (0)
94 #define MACHINE_HAS_DIAG44 (1)
95 #define MACHINE_HAS_MVPG (S390_lowcore.machine_flags & MACHINE_FLAG_MVPG)
96 #define MACHINE_HAS_MVCOS (0)
97 #define MACHINE_HAS_HPAGE (0)
98 #define MACHINE_HAS_PFMF (0)
99 #define MACHINE_HAS_SPP (0)
100 #define MACHINE_HAS_TOPOLOGY (0)
101 #else /* __s390x__ */
102 #define MACHINE_HAS_IEEE (1)
103 #define MACHINE_HAS_CSP (1)
104 #define MACHINE_HAS_IDTE (S390_lowcore.machine_flags & MACHINE_FLAG_IDTE)
105 #define MACHINE_HAS_DIAG44 (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG44)
106 #define MACHINE_HAS_MVPG (1)
107 #define MACHINE_HAS_MVCOS (S390_lowcore.machine_flags & MACHINE_FLAG_MVCOS)
108 #define MACHINE_HAS_HPAGE (S390_lowcore.machine_flags & MACHINE_FLAG_HPAGE)
109 #define MACHINE_HAS_PFMF (S390_lowcore.machine_flags & MACHINE_FLAG_PFMF)
110 #define MACHINE_HAS_SPP (S390_lowcore.machine_flags & MACHINE_FLAG_SPP)
111 #define MACHINE_HAS_TOPOLOGY (S390_lowcore.machine_flags & MACHINE_FLAG_TOPOLOGY)
112 #endif /* __s390x__ */
114 #define ZFCPDUMP_HSA_SIZE (32UL<<20)
115 #define ZFCPDUMP_HSA_SIZE_MAX (64UL<<20)
118 * Console mode. Override with conmode=
120 extern unsigned int console_mode;
121 extern unsigned int console_devno;
122 extern unsigned int console_irq;
124 extern char vmhalt_cmd[];
125 extern char vmpoff_cmd[];
127 #define CONSOLE_IS_UNDEFINED (console_mode == 0)
128 #define CONSOLE_IS_SCLP (console_mode == 1)
129 #define CONSOLE_IS_3215 (console_mode == 2)
130 #define CONSOLE_IS_3270 (console_mode == 3)
131 #define SET_CONSOLE_SCLP do { console_mode = 1; } while (0)
132 #define SET_CONSOLE_3215 do { console_mode = 2; } while (0)
133 #define SET_CONSOLE_3270 do { console_mode = 3; } while (0)
135 #define NSS_NAME_SIZE 8
136 extern char kernel_nss_name[];
138 #else /* __ASSEMBLY__ */
140 #ifndef __s390x__
141 #define IPL_DEVICE 0x10404
142 #define INITRD_START 0x1040C
143 #define INITRD_SIZE 0x10414
144 #else /* __s390x__ */
145 #define IPL_DEVICE 0x10400
146 #define INITRD_START 0x10408
147 #define INITRD_SIZE 0x10410
148 #define OLDMEM_BASE 0x10418
149 #define OLDMEM_SIZE 0x10420
150 #endif /* __s390x__ */
151 #define COMMAND_LINE 0x10480
153 #endif /* __ASSEMBLY__ */
154 #endif /* __KERNEL__ */
155 #endif /* _ASM_S390_SETUP_H */