]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-s390/setup.h
542769736fc5336eaa0c09a74c7e63e9d9cbb3e0
[linux-2.6-omap-h63xx.git] / include / asm-s390 / setup.h
1 /*
2  *  include/asm-s390/setup.h
3  *
4  *  S390 version
5  *    Copyright IBM Corp. 1999,2006
6  */
7
8 #ifndef _ASM_S390_SETUP_H
9 #define _ASM_S390_SETUP_H
10
11 #define COMMAND_LINE_SIZE       896
12
13 #ifdef __KERNEL__
14
15 #include <asm/types.h>
16
17 #define PARMAREA                0x10400
18 #define MEMORY_CHUNKS           16      /* max 0x7fff */
19 #define IPL_PARMBLOCK_ORIGIN    0x2000
20
21 #ifndef __ASSEMBLY__
22
23 #ifndef __s390x__
24 #define IPL_DEVICE        (*(unsigned long *)  (0x10404))
25 #define INITRD_START      (*(unsigned long *)  (0x1040C))
26 #define INITRD_SIZE       (*(unsigned long *)  (0x10414))
27 #else /* __s390x__ */
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))
33
34 #define CHUNK_READ_WRITE 0
35 #define CHUNK_READ_ONLY  1
36
37 struct mem_chunk {
38         unsigned long addr;
39         unsigned long size;
40         unsigned long type;
41 };
42
43 extern struct mem_chunk memory_chunk[];
44
45 /*
46  * Machine features detected in head.S
47  */
48 extern unsigned long machine_flags;
49
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)
55
56 #ifndef __s390x__
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)
61 #else /* __s390x__ */
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__ */
67
68 #define MACHINE_HAS_SCLP        (!MACHINE_IS_P390)
69
70 /*
71  * Console mode. Override with conmode=
72  */
73 extern unsigned int console_mode;
74 extern unsigned int console_devno;
75 extern unsigned int console_irq;
76
77 extern char vmhalt_cmd[];
78 extern char vmpoff_cmd[];
79
80 #define CONSOLE_IS_UNDEFINED    (console_mode == 0)
81 #define CONSOLE_IS_SCLP         (console_mode == 1)
82 #define CONSOLE_IS_3215         (console_mode == 2)
83 #define CONSOLE_IS_3270         (console_mode == 3)
84 #define SET_CONSOLE_SCLP        do { console_mode = 1; } while (0)
85 #define SET_CONSOLE_3215        do { console_mode = 2; } while (0)
86 #define SET_CONSOLE_3270        do { console_mode = 3; } while (0)
87
88 struct ipl_list_hdr {
89         u32 len;
90         u8  reserved1[3];
91         u8  version;
92         u32 blk0_len;
93         u8  pbt;
94         u8  flags;
95         u16 reserved2;
96 } __attribute__((packed));
97
98 struct ipl_block_fcp {
99         u8  reserved1[313-1];
100         u8  opt;
101         u8  reserved2[3];
102         u16 reserved3;
103         u16 devno;
104         u8  reserved4[4];
105         u64 wwpn;
106         u64 lun;
107         u32 bootprog;
108         u8  reserved5[12];
109         u64 br_lba;
110         u32 scp_data_len;
111         u8  reserved6[260];
112         u8  scp_data[];
113 } __attribute__((packed));
114
115 struct ipl_block_ccw {
116         u8  load_param[8];
117         u8  reserved1[84];
118         u8  reserved2[2];
119         u16 devno;
120         u8  vm_flags;
121         u8  reserved3[3];
122         u32 vm_parm_len;
123 } __attribute__((packed));
124
125 struct ipl_parameter_block {
126         struct ipl_list_hdr hdr;
127         union {
128                 struct ipl_block_fcp fcp;
129                 struct ipl_block_ccw ccw;
130         } ipl_info;
131 } __attribute__((packed));
132
133 #define IPL_PARM_BLK_FCP_LEN (sizeof(struct ipl_list_hdr) + \
134                               sizeof(struct ipl_block_fcp))
135
136 #define IPL_PARM_BLK_CCW_LEN (sizeof(struct ipl_list_hdr) + \
137                               sizeof(struct ipl_block_ccw))
138
139 #define IPL_MAX_SUPPORTED_VERSION (0)
140
141 /*
142  * IPL validity flags and parameters as detected in head.S
143  */
144 extern u32 ipl_flags;
145 extern u16 ipl_devno;
146
147 void do_reipl(void);
148
149 enum {
150         IPL_DEVNO_VALID = 1,
151         IPL_PARMBLOCK_VALID = 2,
152 };
153
154 #define IPL_PARMBLOCK_START     ((struct ipl_parameter_block *) \
155                                  IPL_PARMBLOCK_ORIGIN)
156 #define IPL_PARMBLOCK_SIZE      (IPL_PARMBLOCK_START->hdr.len)
157
158 #else /* __ASSEMBLY__ */
159
160 #ifndef __s390x__
161 #define IPL_DEVICE        0x10404
162 #define INITRD_START      0x1040C
163 #define INITRD_SIZE       0x10414
164 #else /* __s390x__ */
165 #define IPL_DEVICE        0x10400
166 #define INITRD_START      0x10408
167 #define INITRD_SIZE       0x10410
168 #endif /* __s390x__ */
169 #define COMMAND_LINE      0x10480
170
171 #endif /* __ASSEMBLY__ */
172 #endif /* __KERNEL__ */
173 #endif /* _ASM_S390_SETUP_H */