Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/s390/kernel/early.c |
| 3 | * |
Hans-Joachim Picht | 155af2f | 2009-06-16 10:30:52 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 2007, 2009 |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 5 | * Author(s): Hongjie Yang <hongjie@us.ibm.com>, |
| 6 | * Heiko Carstens <heiko.carstens@de.ibm.com> |
| 7 | */ |
| 8 | |
Hendrik Brueckner | 11af97e | 2009-09-11 10:28:53 +0200 | [diff] [blame] | 9 | #define KMSG_COMPONENT "setup" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 13 | #include <linux/init.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/string.h> |
| 16 | #include <linux/ctype.h> |
Heiko Carstens | dfd9f7a | 2009-06-12 10:26:44 +0200 | [diff] [blame] | 17 | #include <linux/ftrace.h> |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 18 | #include <linux/lockdep.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/pfn.h> |
| 21 | #include <linux/uaccess.h> |
Hendrik Brueckner | 11af97e | 2009-09-11 10:28:53 +0200 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 23 | #include <asm/ebcdic.h> |
Michael Holzheu | 46b05d2 | 2007-02-21 10:55:21 +0100 | [diff] [blame] | 24 | #include <asm/ipl.h> |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 25 | #include <asm/lowcore.h> |
| 26 | #include <asm/processor.h> |
| 27 | #include <asm/sections.h> |
| 28 | #include <asm/setup.h> |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 29 | #include <asm/sysinfo.h> |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 30 | #include <asm/cpcmd.h> |
| 31 | #include <asm/sclp.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 32 | #include "entry.h" |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * Create a Kernel NSS if the SAVESYS= parameter is defined |
| 36 | */ |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 37 | #define DEFSYS_CMD_SIZE 128 |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 38 | #define SAVESYS_CMD_SIZE 32 |
| 39 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 40 | char kernel_nss_name[NSS_NAME_SIZE + 1]; |
| 41 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 42 | static void __init setup_boot_command_line(void); |
| 43 | |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 44 | /* |
| 45 | * Get the TOD clock running. |
| 46 | */ |
| 47 | static void __init reset_tod_clock(void) |
| 48 | { |
| 49 | u64 time; |
| 50 | |
| 51 | if (store_clock(&time) == 0) |
| 52 | return; |
| 53 | /* TOD clock not running. Set the clock to Unix Epoch. */ |
| 54 | if (set_clock(TOD_UNIX_EPOCH) != 0 || store_clock(&time) != 0) |
| 55 | disabled_wait(0); |
| 56 | |
| 57 | sched_clock_base_cc = TOD_UNIX_EPOCH; |
Martin Schwidefsky | b89031e | 2009-11-13 15:43:52 +0100 | [diff] [blame] | 58 | S390_lowcore.last_update_clock = sched_clock_base_cc; |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 59 | } |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 60 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 61 | #ifdef CONFIG_SHARED_KERNEL |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 62 | int __init savesys_ipl_nss(char *cmd, const int cmdlen); |
| 63 | |
| 64 | asm( |
| 65 | " .section .init.text,\"ax\",@progbits\n" |
| 66 | " .align 4\n" |
| 67 | " .type savesys_ipl_nss, @function\n" |
| 68 | "savesys_ipl_nss:\n" |
| 69 | #ifdef CONFIG_64BIT |
| 70 | " stmg 6,15,48(15)\n" |
| 71 | " lgr 14,3\n" |
| 72 | " sam31\n" |
| 73 | " diag 2,14,0x8\n" |
| 74 | " sam64\n" |
| 75 | " lgr 2,14\n" |
| 76 | " lmg 6,15,48(15)\n" |
| 77 | #else |
| 78 | " stm 6,15,24(15)\n" |
| 79 | " lr 14,3\n" |
| 80 | " diag 2,14,0x8\n" |
| 81 | " lr 2,14\n" |
| 82 | " lm 6,15,24(15)\n" |
| 83 | #endif |
| 84 | " br 14\n" |
Heiko Carstens | 1876446 | 2010-04-09 13:43:03 +0200 | [diff] [blame] | 85 | " .size savesys_ipl_nss, .-savesys_ipl_nss\n" |
| 86 | " .previous\n"); |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 87 | |
Hendrik Brueckner | 684d2fd | 2009-09-11 10:28:40 +0200 | [diff] [blame] | 88 | static __initdata char upper_command_line[COMMAND_LINE_SIZE]; |
| 89 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 90 | static noinline __init void create_kernel_nss(void) |
| 91 | { |
| 92 | unsigned int i, stext_pfn, eshared_pfn, end_pfn, min_size; |
| 93 | #ifdef CONFIG_BLK_DEV_INITRD |
| 94 | unsigned int sinitrd_pfn, einitrd_pfn; |
| 95 | #endif |
| 96 | int response; |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 97 | size_t len; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 98 | char *savesys_ptr; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 99 | char defsys_cmd[DEFSYS_CMD_SIZE]; |
| 100 | char savesys_cmd[SAVESYS_CMD_SIZE]; |
| 101 | |
| 102 | /* Do nothing if we are not running under VM */ |
| 103 | if (!MACHINE_IS_VM) |
| 104 | return; |
| 105 | |
| 106 | /* Convert COMMAND_LINE to upper case */ |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 107 | for (i = 0; i < strlen(boot_command_line); i++) |
| 108 | upper_command_line[i] = toupper(boot_command_line[i]); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 109 | |
| 110 | savesys_ptr = strstr(upper_command_line, "SAVESYS="); |
| 111 | |
| 112 | if (!savesys_ptr) |
| 113 | return; |
| 114 | |
| 115 | savesys_ptr += 8; /* Point to the beginning of the NSS name */ |
| 116 | for (i = 0; i < NSS_NAME_SIZE; i++) { |
| 117 | if (savesys_ptr[i] == ' ' || savesys_ptr[i] == '\0') |
| 118 | break; |
| 119 | kernel_nss_name[i] = savesys_ptr[i]; |
| 120 | } |
| 121 | |
| 122 | stext_pfn = PFN_DOWN(__pa(&_stext)); |
| 123 | eshared_pfn = PFN_DOWN(__pa(&_eshared)); |
| 124 | end_pfn = PFN_UP(__pa(&_end)); |
| 125 | min_size = end_pfn << 2; |
| 126 | |
| 127 | sprintf(defsys_cmd, "DEFSYS %s 00000-%.5X EW %.5X-%.5X SR %.5X-%.5X", |
| 128 | kernel_nss_name, stext_pfn - 1, stext_pfn, eshared_pfn - 1, |
| 129 | eshared_pfn, end_pfn); |
| 130 | |
| 131 | #ifdef CONFIG_BLK_DEV_INITRD |
| 132 | if (INITRD_START && INITRD_SIZE) { |
| 133 | sinitrd_pfn = PFN_DOWN(__pa(INITRD_START)); |
| 134 | einitrd_pfn = PFN_UP(__pa(INITRD_START + INITRD_SIZE)); |
| 135 | min_size = einitrd_pfn << 2; |
| 136 | sprintf(defsys_cmd, "%s EW %.5X-%.5X", defsys_cmd, |
| 137 | sinitrd_pfn, einitrd_pfn); |
| 138 | } |
| 139 | #endif |
| 140 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 141 | sprintf(defsys_cmd, "%s EW MINSIZE=%.7iK PARMREGS=0-13", |
| 142 | defsys_cmd, min_size); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 143 | sprintf(savesys_cmd, "SAVESYS %s \n IPL %s", |
| 144 | kernel_nss_name, kernel_nss_name); |
| 145 | |
| 146 | __cpcmd(defsys_cmd, NULL, 0, &response); |
| 147 | |
Hongjie Yang | 583b33b | 2008-03-05 12:37:16 +0100 | [diff] [blame] | 148 | if (response != 0) { |
Hendrik Brueckner | 11af97e | 2009-09-11 10:28:53 +0200 | [diff] [blame] | 149 | pr_err("Defining the Linux kernel NSS failed with rc=%d\n", |
| 150 | response); |
Hongjie Yang | 583b33b | 2008-03-05 12:37:16 +0100 | [diff] [blame] | 151 | kernel_nss_name[0] = '\0'; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 152 | return; |
Hongjie Yang | 583b33b | 2008-03-05 12:37:16 +0100 | [diff] [blame] | 153 | } |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 154 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 155 | len = strlen(savesys_cmd); |
| 156 | ASCEBC(savesys_cmd, len); |
| 157 | response = savesys_ipl_nss(savesys_cmd, len); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 158 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 159 | /* On success: response is equal to the command size, |
| 160 | * max SAVESYS_CMD_SIZE |
| 161 | * On error: response contains the numeric portion of cp error message. |
| 162 | * for SAVESYS it will be >= 263 |
Hendrik Brueckner | 11af97e | 2009-09-11 10:28:53 +0200 | [diff] [blame] | 163 | * for missing privilege class, it will be 1 |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 164 | */ |
Hendrik Brueckner | 11af97e | 2009-09-11 10:28:53 +0200 | [diff] [blame] | 165 | if (response > SAVESYS_CMD_SIZE || response == 1) { |
| 166 | pr_err("Saving the Linux kernel NSS failed with rc=%d\n", |
| 167 | response); |
Hongjie Yang | 583b33b | 2008-03-05 12:37:16 +0100 | [diff] [blame] | 168 | kernel_nss_name[0] = '\0'; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 169 | return; |
Hongjie Yang | 583b33b | 2008-03-05 12:37:16 +0100 | [diff] [blame] | 170 | } |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 171 | |
Martin Schwidefsky | b89031e | 2009-11-13 15:43:52 +0100 | [diff] [blame] | 172 | /* re-initialize cputime accounting. */ |
| 173 | sched_clock_base_cc = get_clock(); |
| 174 | S390_lowcore.last_update_clock = sched_clock_base_cc; |
| 175 | S390_lowcore.last_update_timer = 0x7fffffffffffffffULL; |
| 176 | S390_lowcore.user_timer = 0; |
| 177 | S390_lowcore.system_timer = 0; |
| 178 | asm volatile("SPT 0(%0)" : : "a" (&S390_lowcore.last_update_timer)); |
| 179 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 180 | /* re-setup boot command line with new ipl vm parms */ |
| 181 | ipl_update_parameters(); |
| 182 | setup_boot_command_line(); |
| 183 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 184 | ipl_flags = IPL_NSS_VALID; |
| 185 | } |
| 186 | |
| 187 | #else /* CONFIG_SHARED_KERNEL */ |
| 188 | |
| 189 | static inline void create_kernel_nss(void) { } |
| 190 | |
| 191 | #endif /* CONFIG_SHARED_KERNEL */ |
| 192 | |
| 193 | /* |
| 194 | * Clear bss memory |
| 195 | */ |
| 196 | static noinline __init void clear_bss_section(void) |
| 197 | { |
Heiko Carstens | 229d9c6 | 2007-02-21 10:55:29 +0100 | [diff] [blame] | 198 | memset(__bss_start, 0, __bss_stop - __bss_start); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /* |
| 202 | * Initialize storage key for kernel pages |
| 203 | */ |
| 204 | static noinline __init void init_kernel_storage_key(void) |
| 205 | { |
| 206 | unsigned long end_pfn, init_pfn; |
| 207 | |
| 208 | end_pfn = PFN_UP(__pa(&_end)); |
| 209 | |
| 210 | for (init_pfn = 0 ; init_pfn < end_pfn; init_pfn++) |
| 211 | page_set_storage_key(init_pfn << PAGE_SHIFT, PAGE_DEFAULT_KEY); |
| 212 | } |
| 213 | |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 214 | static __initdata struct sysinfo_3_2_2 vmms __aligned(PAGE_SIZE); |
| 215 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 216 | static noinline __init void detect_machine_type(void) |
| 217 | { |
Martin Schwidefsky | 27d7160 | 2010-02-26 22:37:38 +0100 | [diff] [blame] | 218 | /* Check current-configuration-level */ |
| 219 | if ((stsi(NULL, 0, 0, 0) >> 28) <= 2) { |
| 220 | S390_lowcore.machine_flags |= MACHINE_FLAG_LPAR; |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 221 | return; |
Martin Schwidefsky | 27d7160 | 2010-02-26 22:37:38 +0100 | [diff] [blame] | 222 | } |
| 223 | /* Get virtual-machine cpu information. */ |
| 224 | if (stsi(&vmms, 3, 2, 2) == -ENOSYS || !vmms.count) |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 225 | return; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 226 | |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 227 | /* Running under KVM? If not we assume z/VM */ |
| 228 | if (!memcmp(vmms.vm[0].cpi, "\xd2\xe5\xd4", 3)) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 229 | S390_lowcore.machine_flags |= MACHINE_FLAG_KVM; |
Christian Borntraeger | 92e6ecf | 2009-03-26 15:23:58 +0100 | [diff] [blame] | 230 | else |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 231 | S390_lowcore.machine_flags |= MACHINE_FLAG_VM; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 232 | } |
| 233 | |
Heiko Carstens | 5f954c3 | 2009-07-24 12:39:49 +0200 | [diff] [blame] | 234 | static __init void early_pgm_check_handler(void) |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 235 | { |
| 236 | unsigned long addr; |
| 237 | const struct exception_table_entry *fixup; |
| 238 | |
| 239 | addr = S390_lowcore.program_old_psw.addr; |
| 240 | fixup = search_exception_tables(addr & PSW_ADDR_INSN); |
| 241 | if (!fixup) |
| 242 | disabled_wait(0); |
| 243 | S390_lowcore.program_old_psw.addr = fixup->fixup | PSW_ADDR_AMODE; |
| 244 | } |
| 245 | |
Heiko Carstens | 5f954c3 | 2009-07-24 12:39:49 +0200 | [diff] [blame] | 246 | static noinline __init void setup_lowcore_early(void) |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 247 | { |
| 248 | psw_t psw; |
| 249 | |
| 250 | psw.mask = PSW_BASE_BITS | PSW_DEFAULT_KEY; |
| 251 | psw.addr = PSW_ADDR_AMODE | (unsigned long) s390_base_ext_handler; |
| 252 | S390_lowcore.external_new_psw = psw; |
| 253 | psw.addr = PSW_ADDR_AMODE | (unsigned long) s390_base_pgm_handler; |
| 254 | S390_lowcore.program_new_psw = psw; |
| 255 | s390_base_pgm_handler_fn = early_pgm_check_handler; |
| 256 | } |
| 257 | |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 258 | static noinline __init void setup_hpage(void) |
| 259 | { |
| 260 | #ifndef CONFIG_DEBUG_PAGEALLOC |
| 261 | unsigned int facilities; |
| 262 | |
| 263 | facilities = stfl(); |
| 264 | if (!(facilities & (1UL << 23)) || !(facilities & (1UL << 29))) |
| 265 | return; |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 266 | S390_lowcore.machine_flags |= MACHINE_FLAG_HPAGE; |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 267 | __ctl_set_bit(0, 23); |
| 268 | #endif |
| 269 | } |
| 270 | |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 271 | static __init void detect_mvpg(void) |
| 272 | { |
| 273 | #ifndef CONFIG_64BIT |
| 274 | int rc; |
| 275 | |
| 276 | asm volatile( |
| 277 | " la 0,0\n" |
| 278 | " mvpg %2,%2\n" |
| 279 | "0: la %0,0\n" |
| 280 | "1:\n" |
| 281 | EX_TABLE(0b,1b) |
| 282 | : "=d" (rc) : "0" (-EOPNOTSUPP), "a" (0) : "memory", "cc", "0"); |
| 283 | if (!rc) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 284 | S390_lowcore.machine_flags |= MACHINE_FLAG_MVPG; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 285 | #endif |
| 286 | } |
| 287 | |
| 288 | static __init void detect_ieee(void) |
| 289 | { |
| 290 | #ifndef CONFIG_64BIT |
| 291 | int rc, tmp; |
| 292 | |
| 293 | asm volatile( |
| 294 | " efpc %1,0\n" |
| 295 | "0: la %0,0\n" |
| 296 | "1:\n" |
| 297 | EX_TABLE(0b,1b) |
| 298 | : "=d" (rc), "=d" (tmp): "0" (-EOPNOTSUPP) : "cc"); |
| 299 | if (!rc) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 300 | S390_lowcore.machine_flags |= MACHINE_FLAG_IEEE; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 301 | #endif |
| 302 | } |
| 303 | |
| 304 | static __init void detect_csp(void) |
| 305 | { |
| 306 | #ifndef CONFIG_64BIT |
| 307 | int rc; |
| 308 | |
| 309 | asm volatile( |
| 310 | " la 0,0\n" |
| 311 | " la 1,0\n" |
| 312 | " la 2,4\n" |
| 313 | " csp 0,2\n" |
| 314 | "0: la %0,0\n" |
| 315 | "1:\n" |
| 316 | EX_TABLE(0b,1b) |
| 317 | : "=d" (rc) : "0" (-EOPNOTSUPP) : "cc", "0", "1", "2"); |
| 318 | if (!rc) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 319 | S390_lowcore.machine_flags |= MACHINE_FLAG_CSP; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 320 | #endif |
| 321 | } |
| 322 | |
| 323 | static __init void detect_diag9c(void) |
| 324 | { |
| 325 | unsigned int cpu_address; |
| 326 | int rc; |
| 327 | |
| 328 | cpu_address = stap(); |
| 329 | asm volatile( |
| 330 | " diag %2,0,0x9c\n" |
| 331 | "0: la %0,0\n" |
| 332 | "1:\n" |
| 333 | EX_TABLE(0b,1b) |
| 334 | : "=d" (rc) : "0" (-EOPNOTSUPP), "d" (cpu_address) : "cc"); |
| 335 | if (!rc) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 336 | S390_lowcore.machine_flags |= MACHINE_FLAG_DIAG9C; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | static __init void detect_diag44(void) |
| 340 | { |
| 341 | #ifdef CONFIG_64BIT |
| 342 | int rc; |
| 343 | |
| 344 | asm volatile( |
| 345 | " diag 0,0,0x44\n" |
| 346 | "0: la %0,0\n" |
| 347 | "1:\n" |
| 348 | EX_TABLE(0b,1b) |
| 349 | : "=d" (rc) : "0" (-EOPNOTSUPP) : "cc"); |
| 350 | if (!rc) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 351 | S390_lowcore.machine_flags |= MACHINE_FLAG_DIAG44; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 352 | #endif |
| 353 | } |
| 354 | |
| 355 | static __init void detect_machine_facilities(void) |
| 356 | { |
| 357 | #ifdef CONFIG_64BIT |
| 358 | unsigned int facilities; |
Carsten Otte | cd3b70f | 2010-05-17 10:00:04 +0200 | [diff] [blame] | 359 | unsigned long long facility_bits; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 360 | |
| 361 | facilities = stfl(); |
| 362 | if (facilities & (1 << 28)) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 363 | S390_lowcore.machine_flags |= MACHINE_FLAG_IDTE; |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 364 | if (facilities & (1 << 23)) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 365 | S390_lowcore.machine_flags |= MACHINE_FLAG_PFMF; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 366 | if (facilities & (1 << 4)) |
Heiko Carstens | d3135e0 | 2009-09-11 10:28:45 +0200 | [diff] [blame] | 367 | S390_lowcore.machine_flags |= MACHINE_FLAG_MVCOS; |
Carsten Otte | cd3b70f | 2010-05-17 10:00:04 +0200 | [diff] [blame] | 368 | if ((stfle(&facility_bits, 1) > 0) && |
| 369 | (facility_bits & (1ULL << (63 - 40)))) |
| 370 | S390_lowcore.machine_flags |= MACHINE_FLAG_SPP; |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 371 | #endif |
| 372 | } |
| 373 | |
Heiko Carstens | 761cdf6 | 2008-07-14 09:58:55 +0200 | [diff] [blame] | 374 | static __init void rescue_initrd(void) |
| 375 | { |
| 376 | #ifdef CONFIG_BLK_DEV_INITRD |
| 377 | /* |
| 378 | * Move the initrd right behind the bss section in case it starts |
| 379 | * within the bss section. So we don't overwrite it when the bss |
| 380 | * section gets cleared. |
| 381 | */ |
| 382 | if (!INITRD_START || !INITRD_SIZE) |
| 383 | return; |
| 384 | if (INITRD_START >= (unsigned long) __bss_stop) |
| 385 | return; |
| 386 | memmove(__bss_stop, (void *) INITRD_START, INITRD_SIZE); |
| 387 | INITRD_START = (unsigned long) __bss_stop; |
| 388 | #endif |
| 389 | } |
| 390 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 391 | /* Set up boot command line */ |
Hendrik Brueckner | 684d2fd | 2009-09-11 10:28:40 +0200 | [diff] [blame] | 392 | static void __init append_to_cmdline(size_t (*ipl_data)(char *, size_t)) |
| 393 | { |
| 394 | char *parm, *delim; |
| 395 | size_t rc, len; |
| 396 | |
| 397 | len = strlen(boot_command_line); |
| 398 | |
| 399 | delim = boot_command_line + len; /* '\0' character position */ |
| 400 | parm = boot_command_line + len + 1; /* append right after '\0' */ |
| 401 | |
| 402 | rc = ipl_data(parm, COMMAND_LINE_SIZE - len - 1); |
| 403 | if (rc) { |
| 404 | if (*parm == '=') |
| 405 | memmove(boot_command_line, parm + 1, rc); |
| 406 | else |
| 407 | *delim = ' '; /* replace '\0' with space */ |
| 408 | } |
| 409 | } |
| 410 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 411 | static void __init setup_boot_command_line(void) |
| 412 | { |
Martin Schwidefsky | 61fd330 | 2010-02-26 22:37:51 +0100 | [diff] [blame] | 413 | int i; |
| 414 | |
| 415 | /* convert arch command line to ascii */ |
| 416 | for (i = 0; i < ARCH_COMMAND_LINE_SIZE; i++) |
| 417 | if (COMMAND_LINE[i] & 0x80) |
| 418 | break; |
| 419 | if (i < ARCH_COMMAND_LINE_SIZE) |
| 420 | EBCASC(COMMAND_LINE, ARCH_COMMAND_LINE_SIZE); |
| 421 | COMMAND_LINE[ARCH_COMMAND_LINE_SIZE-1] = 0; |
| 422 | |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 423 | /* copy arch command line */ |
Martin Schwidefsky | 61fd330 | 2010-02-26 22:37:51 +0100 | [diff] [blame] | 424 | strlcpy(boot_command_line, strstrip(COMMAND_LINE), |
| 425 | ARCH_COMMAND_LINE_SIZE); |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 426 | |
| 427 | /* append IPL PARM data to the boot command line */ |
Hendrik Brueckner | 684d2fd | 2009-09-11 10:28:40 +0200 | [diff] [blame] | 428 | if (MACHINE_IS_VM) |
| 429 | append_to_cmdline(append_ipl_vmparm); |
| 430 | |
| 431 | append_to_cmdline(append_ipl_scpdata); |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 435 | /* |
| 436 | * Save ipl parameters, clear bss memory, initialize storage keys |
| 437 | * and create a kernel NSS at startup if the SAVESYS= parm is defined |
| 438 | */ |
| 439 | void __init startup_init(void) |
| 440 | { |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 441 | reset_tod_clock(); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 442 | ipl_save_parameters(); |
Heiko Carstens | 761cdf6 | 2008-07-14 09:58:55 +0200 | [diff] [blame] | 443 | rescue_initrd(); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 444 | clear_bss_section(); |
| 445 | init_kernel_storage_key(); |
| 446 | lockdep_init(); |
| 447 | lockdep_off(); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 448 | sort_main_extable(); |
| 449 | setup_lowcore_early(); |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 450 | detect_machine_type(); |
| 451 | ipl_update_parameters(); |
| 452 | setup_boot_command_line(); |
| 453 | create_kernel_nss(); |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 454 | detect_mvpg(); |
| 455 | detect_ieee(); |
| 456 | detect_csp(); |
| 457 | detect_diag9c(); |
| 458 | detect_diag44(); |
| 459 | detect_machine_facilities(); |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 460 | setup_hpage(); |
Heiko Carstens | 83119ad | 2007-07-10 11:24:10 +0200 | [diff] [blame] | 461 | sclp_facilities_detect(); |
Heiko Carstens | 23d1742 | 2008-07-14 09:59:21 +0200 | [diff] [blame] | 462 | detect_memory_layout(memory_chunk); |
Heiko Carstens | dfd9f7a | 2009-06-12 10:26:44 +0200 | [diff] [blame] | 463 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 464 | S390_lowcore.ftrace_func = (unsigned long)ftrace_caller; |
| 465 | #endif |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 466 | lockdep_on(); |
| 467 | } |