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