2 * arch/s390/kernel/ipl.c
3 * ipl/reipl/dump support for Linux on s390.
5 * Copyright IBM Corp. 2005,2007
6 * Author(s): Michael Holzheu <holzheu@de.ibm.com>
7 * Heiko Carstens <heiko.carstens@de.ibm.com>
8 * Volker Sameske <sameske@de.ibm.com>
11 #include <linux/types.h>
12 #include <linux/module.h>
13 #include <linux/device.h>
14 #include <linux/delay.h>
15 #include <linux/reboot.h>
16 #include <linux/ctype.h>
19 #include <asm/setup.h>
20 #include <asm/cpcmd.h>
22 #include <asm/ebcdic.h>
23 #include <asm/reset.h>
26 #define IPL_PARM_BLOCK_VERSION 0
28 #define IPL_UNKNOWN_STR "unknown"
29 #define IPL_CCW_STR "ccw"
30 #define IPL_FCP_STR "fcp"
31 #define IPL_FCP_DUMP_STR "fcp_dump"
32 #define IPL_NSS_STR "nss"
34 #define DUMP_CCW_STR "ccw"
35 #define DUMP_FCP_STR "fcp"
36 #define DUMP_NONE_STR "none"
39 * Four shutdown trigger types are supported:
45 #define ON_PANIC_STR "on_panic"
46 #define ON_HALT_STR "on_halt"
47 #define ON_POFF_STR "on_poff"
48 #define ON_REIPL_STR "on_reboot"
50 struct shutdown_action
;
51 struct shutdown_trigger
{
53 struct shutdown_action
*action
;
57 * Five shutdown action types are supported:
59 #define SHUTDOWN_ACTION_IPL_STR "ipl"
60 #define SHUTDOWN_ACTION_REIPL_STR "reipl"
61 #define SHUTDOWN_ACTION_DUMP_STR "dump"
62 #define SHUTDOWN_ACTION_VMCMD_STR "vmcmd"
63 #define SHUTDOWN_ACTION_STOP_STR "stop"
65 struct shutdown_action
{
67 void (*fn
) (struct shutdown_trigger
*trigger
);
71 static char *ipl_type_str(enum ipl_type type
)
78 case IPL_TYPE_FCP_DUMP
:
79 return IPL_FCP_DUMP_STR
;
82 case IPL_TYPE_UNKNOWN
:
84 return IPL_UNKNOWN_STR
;
94 static char *dump_type_str(enum dump_type type
)
109 * Must be in data section since the bss section
110 * is not cleared when these are accessed.
112 static u16 ipl_devno
__attribute__((__section__(".data"))) = 0;
113 u32 ipl_flags
__attribute__((__section__(".data"))) = 0;
116 REIPL_METHOD_CCW_CIO
,
117 REIPL_METHOD_CCW_DIAG
,
119 REIPL_METHOD_FCP_RO_DIAG
,
120 REIPL_METHOD_FCP_RW_DIAG
,
121 REIPL_METHOD_FCP_RO_VM
,
122 REIPL_METHOD_FCP_DUMP
,
124 REIPL_METHOD_DEFAULT
,
130 DUMP_METHOD_CCW_DIAG
,
132 DUMP_METHOD_FCP_DIAG
,
135 static int diag308_set_works
= 0;
137 static int reipl_capabilities
= IPL_TYPE_UNKNOWN
;
139 static enum ipl_type reipl_type
= IPL_TYPE_UNKNOWN
;
140 static enum ipl_method reipl_method
= REIPL_METHOD_DEFAULT
;
141 static struct ipl_parameter_block
*reipl_block_fcp
;
142 static struct ipl_parameter_block
*reipl_block_ccw
;
144 static char reipl_nss_name
[NSS_NAME_SIZE
+ 1];
146 static int dump_capabilities
= DUMP_TYPE_NONE
;
147 static enum dump_type dump_type
= DUMP_TYPE_NONE
;
148 static enum dump_method dump_method
= DUMP_METHOD_NONE
;
149 static struct ipl_parameter_block
*dump_block_fcp
;
150 static struct ipl_parameter_block
*dump_block_ccw
;
152 static struct sclp_ipl_info sclp_ipl_info
;
154 int diag308(unsigned long subcode
, void *addr
)
156 register unsigned long _addr
asm("0") = (unsigned long) addr
;
157 register unsigned long _rc
asm("1") = 0;
160 " diag %0,%2,0x308\n"
163 : "+d" (_addr
), "+d" (_rc
)
164 : "d" (subcode
) : "cc", "memory");
167 EXPORT_SYMBOL_GPL(diag308
);
171 #define DEFINE_IPL_ATTR_RO(_prefix, _name, _format, _value) \
172 static ssize_t sys_##_prefix##_##_name##_show(struct kobject *kobj, \
173 struct kobj_attribute *attr, \
176 return sprintf(page, _format, _value); \
178 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
179 __ATTR(_name, S_IRUGO, sys_##_prefix##_##_name##_show, NULL);
181 #define DEFINE_IPL_ATTR_RW(_prefix, _name, _fmt_out, _fmt_in, _value) \
182 static ssize_t sys_##_prefix##_##_name##_show(struct kobject *kobj, \
183 struct kobj_attribute *attr, \
186 return sprintf(page, _fmt_out, \
187 (unsigned long long) _value); \
189 static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \
190 struct kobj_attribute *attr, \
191 const char *buf, size_t len) \
193 unsigned long long value; \
194 if (sscanf(buf, _fmt_in, &value) != 1) \
199 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
200 __ATTR(_name,(S_IRUGO | S_IWUSR), \
201 sys_##_prefix##_##_name##_show, \
202 sys_##_prefix##_##_name##_store);
204 #define DEFINE_IPL_ATTR_STR_RW(_prefix, _name, _fmt_out, _fmt_in, _value)\
205 static ssize_t sys_##_prefix##_##_name##_show(struct kobject *kobj, \
206 struct kobj_attribute *attr, \
209 return sprintf(page, _fmt_out, _value); \
211 static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \
212 struct kobj_attribute *attr, \
213 const char *buf, size_t len) \
215 strncpy(_value, buf, sizeof(_value) - 1); \
219 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
220 __ATTR(_name,(S_IRUGO | S_IWUSR), \
221 sys_##_prefix##_##_name##_show, \
222 sys_##_prefix##_##_name##_store);
224 static void make_attrs_ro(struct attribute
**attrs
)
227 (*attrs
)->mode
= S_IRUGO
;
236 static __init
enum ipl_type
get_ipl_type(void)
238 struct ipl_parameter_block
*ipl
= IPL_PARMBLOCK_START
;
240 if (ipl_flags
& IPL_NSS_VALID
)
242 if (!(ipl_flags
& IPL_DEVNO_VALID
))
243 return IPL_TYPE_UNKNOWN
;
244 if (!(ipl_flags
& IPL_PARMBLOCK_VALID
))
246 if (ipl
->hdr
.version
> IPL_MAX_SUPPORTED_VERSION
)
247 return IPL_TYPE_UNKNOWN
;
248 if (ipl
->hdr
.pbt
!= DIAG308_IPL_TYPE_FCP
)
249 return IPL_TYPE_UNKNOWN
;
250 if (ipl
->ipl_info
.fcp
.opt
== DIAG308_IPL_OPT_DUMP
)
251 return IPL_TYPE_FCP_DUMP
;
255 struct ipl_info ipl_info
;
256 EXPORT_SYMBOL_GPL(ipl_info
);
258 static ssize_t
ipl_type_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
261 return sprintf(page
, "%s\n", ipl_type_str(ipl_info
.type
));
264 static struct kobj_attribute sys_ipl_type_attr
= __ATTR_RO(ipl_type
);
266 static ssize_t
sys_ipl_device_show(struct kobject
*kobj
,
267 struct kobj_attribute
*attr
, char *page
)
269 struct ipl_parameter_block
*ipl
= IPL_PARMBLOCK_START
;
271 switch (ipl_info
.type
) {
273 return sprintf(page
, "0.0.%04x\n", ipl_devno
);
275 case IPL_TYPE_FCP_DUMP
:
276 return sprintf(page
, "0.0.%04x\n", ipl
->ipl_info
.fcp
.devno
);
282 static struct kobj_attribute sys_ipl_device_attr
=
283 __ATTR(device
, S_IRUGO
, sys_ipl_device_show
, NULL
);
285 static ssize_t
ipl_parameter_read(struct kobject
*kobj
, struct bin_attribute
*attr
,
286 char *buf
, loff_t off
, size_t count
)
288 unsigned int size
= IPL_PARMBLOCK_SIZE
;
292 if (off
+ count
> size
)
294 memcpy(buf
, (void *)IPL_PARMBLOCK_START
+ off
, count
);
298 static struct bin_attribute ipl_parameter_attr
= {
300 .name
= "binary_parameter",
304 .read
= &ipl_parameter_read
,
307 static ssize_t
ipl_scp_data_read(struct kobject
*kobj
, struct bin_attribute
*attr
,
308 char *buf
, loff_t off
, size_t count
)
310 unsigned int size
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.scp_data_len
;
311 void *scp_data
= &IPL_PARMBLOCK_START
->ipl_info
.fcp
.scp_data
;
315 if (off
+ count
> size
)
317 memcpy(buf
, scp_data
+ off
, count
);
321 static struct bin_attribute ipl_scp_data_attr
= {
327 .read
= ipl_scp_data_read
,
330 /* FCP ipl device attributes */
332 DEFINE_IPL_ATTR_RO(ipl_fcp
, wwpn
, "0x%016llx\n", (unsigned long long)
333 IPL_PARMBLOCK_START
->ipl_info
.fcp
.wwpn
);
334 DEFINE_IPL_ATTR_RO(ipl_fcp
, lun
, "0x%016llx\n", (unsigned long long)
335 IPL_PARMBLOCK_START
->ipl_info
.fcp
.lun
);
336 DEFINE_IPL_ATTR_RO(ipl_fcp
, bootprog
, "%lld\n", (unsigned long long)
337 IPL_PARMBLOCK_START
->ipl_info
.fcp
.bootprog
);
338 DEFINE_IPL_ATTR_RO(ipl_fcp
, br_lba
, "%lld\n", (unsigned long long)
339 IPL_PARMBLOCK_START
->ipl_info
.fcp
.br_lba
);
341 static struct attribute
*ipl_fcp_attrs
[] = {
342 &sys_ipl_type_attr
.attr
,
343 &sys_ipl_device_attr
.attr
,
344 &sys_ipl_fcp_wwpn_attr
.attr
,
345 &sys_ipl_fcp_lun_attr
.attr
,
346 &sys_ipl_fcp_bootprog_attr
.attr
,
347 &sys_ipl_fcp_br_lba_attr
.attr
,
351 static struct attribute_group ipl_fcp_attr_group
= {
352 .attrs
= ipl_fcp_attrs
,
355 /* CCW ipl device attributes */
357 static ssize_t
ipl_ccw_loadparm_show(struct kobject
*kobj
,
358 struct kobj_attribute
*attr
, char *page
)
360 char loadparm
[LOADPARM_LEN
+ 1] = {};
362 if (!sclp_ipl_info
.is_valid
)
363 return sprintf(page
, "#unknown#\n");
364 memcpy(loadparm
, &sclp_ipl_info
.loadparm
, LOADPARM_LEN
);
365 EBCASC(loadparm
, LOADPARM_LEN
);
367 return sprintf(page
, "%s\n", loadparm
);
370 static struct kobj_attribute sys_ipl_ccw_loadparm_attr
=
371 __ATTR(loadparm
, 0444, ipl_ccw_loadparm_show
, NULL
);
373 static struct attribute
*ipl_ccw_attrs
[] = {
374 &sys_ipl_type_attr
.attr
,
375 &sys_ipl_device_attr
.attr
,
376 &sys_ipl_ccw_loadparm_attr
.attr
,
380 static struct attribute_group ipl_ccw_attr_group
= {
381 .attrs
= ipl_ccw_attrs
,
384 /* NSS ipl device attributes */
386 DEFINE_IPL_ATTR_RO(ipl_nss
, name
, "%s\n", kernel_nss_name
);
388 static struct attribute
*ipl_nss_attrs
[] = {
389 &sys_ipl_type_attr
.attr
,
390 &sys_ipl_nss_name_attr
.attr
,
394 static struct attribute_group ipl_nss_attr_group
= {
395 .attrs
= ipl_nss_attrs
,
398 /* UNKNOWN ipl device attributes */
400 static struct attribute
*ipl_unknown_attrs
[] = {
401 &sys_ipl_type_attr
.attr
,
405 static struct attribute_group ipl_unknown_attr_group
= {
406 .attrs
= ipl_unknown_attrs
,
409 static struct kset
*ipl_kset
;
411 static int __init
ipl_register_fcp_files(void)
415 rc
= sysfs_create_group(&ipl_kset
->kobj
, &ipl_fcp_attr_group
);
418 rc
= sysfs_create_bin_file(&ipl_kset
->kobj
, &ipl_parameter_attr
);
421 rc
= sysfs_create_bin_file(&ipl_kset
->kobj
, &ipl_scp_data_attr
);
425 sysfs_remove_bin_file(&ipl_kset
->kobj
, &ipl_parameter_attr
);
428 sysfs_remove_group(&ipl_kset
->kobj
, &ipl_fcp_attr_group
);
433 static void ipl_run(struct shutdown_trigger
*trigger
)
435 diag308(DIAG308_IPL
, NULL
);
437 __cpcmd("IPL", NULL
, 0, NULL
);
438 else if (ipl_info
.type
== IPL_TYPE_CCW
)
439 reipl_ccw_dev(&ipl_info
.data
.ccw
.dev_id
);
442 static int __init
ipl_init(void)
446 ipl_kset
= kset_create_and_add("ipl", NULL
, firmware_kobj
);
451 switch (ipl_info
.type
) {
453 rc
= sysfs_create_group(&ipl_kset
->kobj
, &ipl_ccw_attr_group
);
456 case IPL_TYPE_FCP_DUMP
:
457 rc
= ipl_register_fcp_files();
460 rc
= sysfs_create_group(&ipl_kset
->kobj
, &ipl_nss_attr_group
);
463 rc
= sysfs_create_group(&ipl_kset
->kobj
,
464 &ipl_unknown_attr_group
);
469 panic("ipl_init failed: rc = %i\n", rc
);
474 static struct shutdown_action __refdata ipl_action
= {
475 .name
= SHUTDOWN_ACTION_IPL_STR
,
481 * reipl shutdown action: Reboot Linux on shutdown.
484 /* FCP reipl device attributes */
486 DEFINE_IPL_ATTR_RW(reipl_fcp
, wwpn
, "0x%016llx\n", "%016llx\n",
487 reipl_block_fcp
->ipl_info
.fcp
.wwpn
);
488 DEFINE_IPL_ATTR_RW(reipl_fcp
, lun
, "0x%016llx\n", "%016llx\n",
489 reipl_block_fcp
->ipl_info
.fcp
.lun
);
490 DEFINE_IPL_ATTR_RW(reipl_fcp
, bootprog
, "%lld\n", "%lld\n",
491 reipl_block_fcp
->ipl_info
.fcp
.bootprog
);
492 DEFINE_IPL_ATTR_RW(reipl_fcp
, br_lba
, "%lld\n", "%lld\n",
493 reipl_block_fcp
->ipl_info
.fcp
.br_lba
);
494 DEFINE_IPL_ATTR_RW(reipl_fcp
, device
, "0.0.%04llx\n", "0.0.%llx\n",
495 reipl_block_fcp
->ipl_info
.fcp
.devno
);
497 static struct attribute
*reipl_fcp_attrs
[] = {
498 &sys_reipl_fcp_device_attr
.attr
,
499 &sys_reipl_fcp_wwpn_attr
.attr
,
500 &sys_reipl_fcp_lun_attr
.attr
,
501 &sys_reipl_fcp_bootprog_attr
.attr
,
502 &sys_reipl_fcp_br_lba_attr
.attr
,
506 static struct attribute_group reipl_fcp_attr_group
= {
508 .attrs
= reipl_fcp_attrs
,
511 /* CCW reipl device attributes */
513 DEFINE_IPL_ATTR_RW(reipl_ccw
, device
, "0.0.%04llx\n", "0.0.%llx\n",
514 reipl_block_ccw
->ipl_info
.ccw
.devno
);
516 static void reipl_get_ascii_loadparm(char *loadparm
)
518 memcpy(loadparm
, &reipl_block_ccw
->ipl_info
.ccw
.load_param
,
520 EBCASC(loadparm
, LOADPARM_LEN
);
521 loadparm
[LOADPARM_LEN
] = 0;
525 static ssize_t
reipl_ccw_loadparm_show(struct kobject
*kobj
,
526 struct kobj_attribute
*attr
, char *page
)
528 char buf
[LOADPARM_LEN
+ 1];
530 reipl_get_ascii_loadparm(buf
);
531 return sprintf(page
, "%s\n", buf
);
534 static ssize_t
reipl_ccw_loadparm_store(struct kobject
*kobj
,
535 struct kobj_attribute
*attr
,
536 const char *buf
, size_t len
)
540 /* ignore trailing newline */
542 if ((len
> 0) && (buf
[len
- 1] == '\n'))
544 /* loadparm can have max 8 characters and must not start with a blank */
545 if ((lp_len
> LOADPARM_LEN
) || ((lp_len
> 0) && (buf
[0] == ' ')))
547 /* loadparm can only contain "a-z,A-Z,0-9,SP,." */
548 for (i
= 0; i
< lp_len
; i
++) {
549 if (isalpha(buf
[i
]) || isdigit(buf
[i
]) || (buf
[i
] == ' ') ||
554 /* initialize loadparm with blanks */
555 memset(&reipl_block_ccw
->ipl_info
.ccw
.load_param
, ' ', LOADPARM_LEN
);
556 /* copy and convert to ebcdic */
557 memcpy(&reipl_block_ccw
->ipl_info
.ccw
.load_param
, buf
, lp_len
);
558 ASCEBC(reipl_block_ccw
->ipl_info
.ccw
.load_param
, LOADPARM_LEN
);
562 static struct kobj_attribute sys_reipl_ccw_loadparm_attr
=
563 __ATTR(loadparm
, 0644, reipl_ccw_loadparm_show
,
564 reipl_ccw_loadparm_store
);
566 static struct attribute
*reipl_ccw_attrs
[] = {
567 &sys_reipl_ccw_device_attr
.attr
,
568 &sys_reipl_ccw_loadparm_attr
.attr
,
572 static struct attribute_group reipl_ccw_attr_group
= {
574 .attrs
= reipl_ccw_attrs
,
578 /* NSS reipl device attributes */
580 DEFINE_IPL_ATTR_STR_RW(reipl_nss
, name
, "%s\n", "%s\n", reipl_nss_name
);
582 static struct attribute
*reipl_nss_attrs
[] = {
583 &sys_reipl_nss_name_attr
.attr
,
587 static struct attribute_group reipl_nss_attr_group
= {
589 .attrs
= reipl_nss_attrs
,
594 static int reipl_set_type(enum ipl_type type
)
596 if (!(reipl_capabilities
& type
))
601 if (diag308_set_works
)
602 reipl_method
= REIPL_METHOD_CCW_DIAG
;
603 else if (MACHINE_IS_VM
)
604 reipl_method
= REIPL_METHOD_CCW_VM
;
606 reipl_method
= REIPL_METHOD_CCW_CIO
;
609 if (diag308_set_works
)
610 reipl_method
= REIPL_METHOD_FCP_RW_DIAG
;
611 else if (MACHINE_IS_VM
)
612 reipl_method
= REIPL_METHOD_FCP_RO_VM
;
614 reipl_method
= REIPL_METHOD_FCP_RO_DIAG
;
616 case IPL_TYPE_FCP_DUMP
:
617 reipl_method
= REIPL_METHOD_FCP_DUMP
;
620 reipl_method
= REIPL_METHOD_NSS
;
622 case IPL_TYPE_UNKNOWN
:
623 reipl_method
= REIPL_METHOD_DEFAULT
;
632 static ssize_t
reipl_type_show(struct kobject
*kobj
,
633 struct kobj_attribute
*attr
, char *page
)
635 return sprintf(page
, "%s\n", ipl_type_str(reipl_type
));
638 static ssize_t
reipl_type_store(struct kobject
*kobj
,
639 struct kobj_attribute
*attr
,
640 const char *buf
, size_t len
)
644 if (strncmp(buf
, IPL_CCW_STR
, strlen(IPL_CCW_STR
)) == 0)
645 rc
= reipl_set_type(IPL_TYPE_CCW
);
646 else if (strncmp(buf
, IPL_FCP_STR
, strlen(IPL_FCP_STR
)) == 0)
647 rc
= reipl_set_type(IPL_TYPE_FCP
);
648 else if (strncmp(buf
, IPL_NSS_STR
, strlen(IPL_NSS_STR
)) == 0)
649 rc
= reipl_set_type(IPL_TYPE_NSS
);
650 return (rc
!= 0) ? rc
: len
;
653 static struct kobj_attribute reipl_type_attr
=
654 __ATTR(reipl_type
, 0644, reipl_type_show
, reipl_type_store
);
656 static struct kset
*reipl_kset
;
658 void reipl_run(struct shutdown_trigger
*trigger
)
660 struct ccw_dev_id devid
;
661 static char buf
[100];
662 char loadparm
[LOADPARM_LEN
+ 1];
664 switch (reipl_method
) {
665 case REIPL_METHOD_CCW_CIO
:
666 devid
.devno
= reipl_block_ccw
->ipl_info
.ccw
.devno
;
668 reipl_ccw_dev(&devid
);
670 case REIPL_METHOD_CCW_VM
:
671 reipl_get_ascii_loadparm(loadparm
);
672 if (strlen(loadparm
) == 0)
673 sprintf(buf
, "IPL %X CLEAR",
674 reipl_block_ccw
->ipl_info
.ccw
.devno
);
676 sprintf(buf
, "IPL %X CLEAR LOADPARM '%s'",
677 reipl_block_ccw
->ipl_info
.ccw
.devno
, loadparm
);
678 __cpcmd(buf
, NULL
, 0, NULL
);
680 case REIPL_METHOD_CCW_DIAG
:
681 diag308(DIAG308_SET
, reipl_block_ccw
);
682 diag308(DIAG308_IPL
, NULL
);
684 case REIPL_METHOD_FCP_RW_DIAG
:
685 diag308(DIAG308_SET
, reipl_block_fcp
);
686 diag308(DIAG308_IPL
, NULL
);
688 case REIPL_METHOD_FCP_RO_DIAG
:
689 diag308(DIAG308_IPL
, NULL
);
691 case REIPL_METHOD_FCP_RO_VM
:
692 __cpcmd("IPL", NULL
, 0, NULL
);
694 case REIPL_METHOD_NSS
:
695 sprintf(buf
, "IPL %s", reipl_nss_name
);
696 __cpcmd(buf
, NULL
, 0, NULL
);
698 case REIPL_METHOD_DEFAULT
:
700 __cpcmd("IPL", NULL
, 0, NULL
);
701 diag308(DIAG308_IPL
, NULL
);
703 case REIPL_METHOD_FCP_DUMP
:
709 static void __init
reipl_probe(void)
713 buffer
= (void *) get_zeroed_page(GFP_KERNEL
);
716 if (diag308(DIAG308_STORE
, buffer
) == DIAG308_RC_OK
)
717 diag308_set_works
= 1;
718 free_page((unsigned long)buffer
);
721 static int __init
reipl_nss_init(void)
727 rc
= sysfs_create_group(&reipl_kset
->kobj
, &reipl_nss_attr_group
);
730 strncpy(reipl_nss_name
, kernel_nss_name
, NSS_NAME_SIZE
+ 1);
731 reipl_capabilities
|= IPL_TYPE_NSS
;
735 static int __init
reipl_ccw_init(void)
739 reipl_block_ccw
= (void *) get_zeroed_page(GFP_KERNEL
);
740 if (!reipl_block_ccw
)
742 rc
= sysfs_create_group(&reipl_kset
->kobj
, &reipl_ccw_attr_group
);
744 free_page((unsigned long)reipl_block_ccw
);
747 reipl_block_ccw
->hdr
.len
= IPL_PARM_BLK_CCW_LEN
;
748 reipl_block_ccw
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
749 reipl_block_ccw
->hdr
.blk0_len
= IPL_PARM_BLK0_CCW_LEN
;
750 reipl_block_ccw
->hdr
.pbt
= DIAG308_IPL_TYPE_CCW
;
751 reipl_block_ccw
->hdr
.flags
= DIAG308_FLAGS_LP_VALID
;
752 /* check if read scp info worked and set loadparm */
753 if (sclp_ipl_info
.is_valid
)
754 memcpy(reipl_block_ccw
->ipl_info
.ccw
.load_param
,
755 &sclp_ipl_info
.loadparm
, LOADPARM_LEN
);
757 /* read scp info failed: set empty loadparm (EBCDIC blanks) */
758 memset(reipl_block_ccw
->ipl_info
.ccw
.load_param
, 0x40,
760 if (!MACHINE_IS_VM
&& !diag308_set_works
)
761 sys_reipl_ccw_loadparm_attr
.attr
.mode
= S_IRUGO
;
762 if (ipl_info
.type
== IPL_TYPE_CCW
)
763 reipl_block_ccw
->ipl_info
.ccw
.devno
= ipl_devno
;
764 reipl_capabilities
|= IPL_TYPE_CCW
;
768 static int __init
reipl_fcp_init(void)
772 if ((!diag308_set_works
) && (ipl_info
.type
!= IPL_TYPE_FCP
))
774 if ((!diag308_set_works
) && (ipl_info
.type
== IPL_TYPE_FCP
))
775 make_attrs_ro(reipl_fcp_attrs
);
777 reipl_block_fcp
= (void *) get_zeroed_page(GFP_KERNEL
);
778 if (!reipl_block_fcp
)
780 rc
= sysfs_create_group(&reipl_kset
->kobj
, &reipl_fcp_attr_group
);
782 free_page((unsigned long)reipl_block_fcp
);
785 if (ipl_info
.type
== IPL_TYPE_FCP
) {
786 memcpy(reipl_block_fcp
, IPL_PARMBLOCK_START
, PAGE_SIZE
);
788 reipl_block_fcp
->hdr
.len
= IPL_PARM_BLK_FCP_LEN
;
789 reipl_block_fcp
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
790 reipl_block_fcp
->hdr
.blk0_len
= IPL_PARM_BLK0_FCP_LEN
;
791 reipl_block_fcp
->hdr
.pbt
= DIAG308_IPL_TYPE_FCP
;
792 reipl_block_fcp
->ipl_info
.fcp
.opt
= DIAG308_IPL_OPT_IPL
;
794 reipl_capabilities
|= IPL_TYPE_FCP
;
798 static int __init
reipl_init(void)
802 reipl_kset
= kset_create_and_add("reipl", NULL
, firmware_kobj
);
805 rc
= sysfs_create_file(&reipl_kset
->kobj
, &reipl_type_attr
.attr
);
807 kset_unregister(reipl_kset
);
810 rc
= reipl_ccw_init();
813 rc
= reipl_fcp_init();
816 rc
= reipl_nss_init();
819 rc
= reipl_set_type(ipl_info
.type
);
825 static struct shutdown_action __refdata reipl_action
= {
826 .name
= SHUTDOWN_ACTION_REIPL_STR
,
832 * dump shutdown action: Dump Linux on shutdown.
835 /* FCP dump device attributes */
837 DEFINE_IPL_ATTR_RW(dump_fcp
, wwpn
, "0x%016llx\n", "%016llx\n",
838 dump_block_fcp
->ipl_info
.fcp
.wwpn
);
839 DEFINE_IPL_ATTR_RW(dump_fcp
, lun
, "0x%016llx\n", "%016llx\n",
840 dump_block_fcp
->ipl_info
.fcp
.lun
);
841 DEFINE_IPL_ATTR_RW(dump_fcp
, bootprog
, "%lld\n", "%lld\n",
842 dump_block_fcp
->ipl_info
.fcp
.bootprog
);
843 DEFINE_IPL_ATTR_RW(dump_fcp
, br_lba
, "%lld\n", "%lld\n",
844 dump_block_fcp
->ipl_info
.fcp
.br_lba
);
845 DEFINE_IPL_ATTR_RW(dump_fcp
, device
, "0.0.%04llx\n", "0.0.%llx\n",
846 dump_block_fcp
->ipl_info
.fcp
.devno
);
848 static struct attribute
*dump_fcp_attrs
[] = {
849 &sys_dump_fcp_device_attr
.attr
,
850 &sys_dump_fcp_wwpn_attr
.attr
,
851 &sys_dump_fcp_lun_attr
.attr
,
852 &sys_dump_fcp_bootprog_attr
.attr
,
853 &sys_dump_fcp_br_lba_attr
.attr
,
857 static struct attribute_group dump_fcp_attr_group
= {
859 .attrs
= dump_fcp_attrs
,
862 /* CCW dump device attributes */
864 DEFINE_IPL_ATTR_RW(dump_ccw
, device
, "0.0.%04llx\n", "0.0.%llx\n",
865 dump_block_ccw
->ipl_info
.ccw
.devno
);
867 static struct attribute
*dump_ccw_attrs
[] = {
868 &sys_dump_ccw_device_attr
.attr
,
872 static struct attribute_group dump_ccw_attr_group
= {
874 .attrs
= dump_ccw_attrs
,
879 static int dump_set_type(enum dump_type type
)
881 if (!(dump_capabilities
& type
))
885 if (diag308_set_works
)
886 dump_method
= DUMP_METHOD_CCW_DIAG
;
887 else if (MACHINE_IS_VM
)
888 dump_method
= DUMP_METHOD_CCW_VM
;
890 dump_method
= DUMP_METHOD_CCW_CIO
;
893 dump_method
= DUMP_METHOD_FCP_DIAG
;
896 dump_method
= DUMP_METHOD_NONE
;
902 static ssize_t
dump_type_show(struct kobject
*kobj
,
903 struct kobj_attribute
*attr
, char *page
)
905 return sprintf(page
, "%s\n", dump_type_str(dump_type
));
908 static ssize_t
dump_type_store(struct kobject
*kobj
,
909 struct kobj_attribute
*attr
,
910 const char *buf
, size_t len
)
914 if (strncmp(buf
, DUMP_NONE_STR
, strlen(DUMP_NONE_STR
)) == 0)
915 rc
= dump_set_type(DUMP_TYPE_NONE
);
916 else if (strncmp(buf
, DUMP_CCW_STR
, strlen(DUMP_CCW_STR
)) == 0)
917 rc
= dump_set_type(DUMP_TYPE_CCW
);
918 else if (strncmp(buf
, DUMP_FCP_STR
, strlen(DUMP_FCP_STR
)) == 0)
919 rc
= dump_set_type(DUMP_TYPE_FCP
);
920 return (rc
!= 0) ? rc
: len
;
923 static struct kobj_attribute dump_type_attr
=
924 __ATTR(dump_type
, 0644, dump_type_show
, dump_type_store
);
926 static struct kset
*dump_kset
;
928 static void dump_run(struct shutdown_trigger
*trigger
)
930 struct ccw_dev_id devid
;
931 static char buf
[100];
933 switch (dump_method
) {
934 case DUMP_METHOD_CCW_CIO
:
936 devid
.devno
= dump_block_ccw
->ipl_info
.ccw
.devno
;
938 reipl_ccw_dev(&devid
);
940 case DUMP_METHOD_CCW_VM
:
942 sprintf(buf
, "STORE STATUS");
943 __cpcmd(buf
, NULL
, 0, NULL
);
944 sprintf(buf
, "IPL %X", dump_block_ccw
->ipl_info
.ccw
.devno
);
945 __cpcmd(buf
, NULL
, 0, NULL
);
947 case DUMP_METHOD_CCW_DIAG
:
948 diag308(DIAG308_SET
, dump_block_ccw
);
949 diag308(DIAG308_DUMP
, NULL
);
951 case DUMP_METHOD_FCP_DIAG
:
952 diag308(DIAG308_SET
, dump_block_fcp
);
953 diag308(DIAG308_DUMP
, NULL
);
955 case DUMP_METHOD_NONE
:
959 printk(KERN_EMERG
"Dump failed!\n");
962 static int __init
dump_ccw_init(void)
966 dump_block_ccw
= (void *) get_zeroed_page(GFP_KERNEL
);
969 rc
= sysfs_create_group(&dump_kset
->kobj
, &dump_ccw_attr_group
);
971 free_page((unsigned long)dump_block_ccw
);
974 dump_block_ccw
->hdr
.len
= IPL_PARM_BLK_CCW_LEN
;
975 dump_block_ccw
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
976 dump_block_ccw
->hdr
.blk0_len
= IPL_PARM_BLK0_CCW_LEN
;
977 dump_block_ccw
->hdr
.pbt
= DIAG308_IPL_TYPE_CCW
;
978 dump_capabilities
|= DUMP_TYPE_CCW
;
982 static int __init
dump_fcp_init(void)
986 if (!sclp_ipl_info
.has_dump
)
987 return 0; /* LDIPL DUMP is not installed */
988 if (!diag308_set_works
)
990 dump_block_fcp
= (void *) get_zeroed_page(GFP_KERNEL
);
993 rc
= sysfs_create_group(&dump_kset
->kobj
, &dump_fcp_attr_group
);
995 free_page((unsigned long)dump_block_fcp
);
998 dump_block_fcp
->hdr
.len
= IPL_PARM_BLK_FCP_LEN
;
999 dump_block_fcp
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
1000 dump_block_fcp
->hdr
.blk0_len
= IPL_PARM_BLK0_FCP_LEN
;
1001 dump_block_fcp
->hdr
.pbt
= DIAG308_IPL_TYPE_FCP
;
1002 dump_block_fcp
->ipl_info
.fcp
.opt
= DIAG308_IPL_OPT_DUMP
;
1003 dump_capabilities
|= DUMP_TYPE_FCP
;
1007 static int __init
dump_init(void)
1011 dump_kset
= kset_create_and_add("dump", NULL
, firmware_kobj
);
1014 rc
= sysfs_create_file(&dump_kset
->kobj
, &dump_type_attr
.attr
);
1016 kset_unregister(dump_kset
);
1019 rc
= dump_ccw_init();
1022 rc
= dump_fcp_init();
1025 dump_set_type(DUMP_TYPE_NONE
);
1029 static struct shutdown_action __refdata dump_action
= {
1030 .name
= SHUTDOWN_ACTION_DUMP_STR
,
1036 * vmcmd shutdown action: Trigger vm command on shutdown.
1039 static char vmcmd_on_reboot
[128];
1040 static char vmcmd_on_panic
[128];
1041 static char vmcmd_on_halt
[128];
1042 static char vmcmd_on_poff
[128];
1044 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_reboot
, "%s\n", "%s\n", vmcmd_on_reboot
);
1045 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_panic
, "%s\n", "%s\n", vmcmd_on_panic
);
1046 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_halt
, "%s\n", "%s\n", vmcmd_on_halt
);
1047 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_poff
, "%s\n", "%s\n", vmcmd_on_poff
);
1049 static struct attribute
*vmcmd_attrs
[] = {
1050 &sys_vmcmd_on_reboot_attr
.attr
,
1051 &sys_vmcmd_on_panic_attr
.attr
,
1052 &sys_vmcmd_on_halt_attr
.attr
,
1053 &sys_vmcmd_on_poff_attr
.attr
,
1057 static struct attribute_group vmcmd_attr_group
= {
1058 .attrs
= vmcmd_attrs
,
1061 static struct kset
*vmcmd_kset
;
1063 static void vmcmd_run(struct shutdown_trigger
*trigger
)
1065 char *cmd
, *next_cmd
;
1067 if (strcmp(trigger
->name
, ON_REIPL_STR
) == 0)
1068 cmd
= vmcmd_on_reboot
;
1069 else if (strcmp(trigger
->name
, ON_PANIC_STR
) == 0)
1070 cmd
= vmcmd_on_panic
;
1071 else if (strcmp(trigger
->name
, ON_HALT_STR
) == 0)
1072 cmd
= vmcmd_on_halt
;
1073 else if (strcmp(trigger
->name
, ON_POFF_STR
) == 0)
1074 cmd
= vmcmd_on_poff
;
1078 if (strlen(cmd
) == 0)
1081 next_cmd
= strchr(cmd
, '\n');
1086 __cpcmd(cmd
, NULL
, 0, NULL
);
1088 } while (cmd
!= NULL
);
1091 static int vmcmd_init(void)
1095 vmcmd_kset
= kset_create_and_add("vmcmd", NULL
, firmware_kobj
);
1098 return sysfs_create_group(&vmcmd_kset
->kobj
, &vmcmd_attr_group
);
1101 static struct shutdown_action vmcmd_action
= {SHUTDOWN_ACTION_VMCMD_STR
,
1102 vmcmd_run
, vmcmd_init
};
1105 * stop shutdown action: Stop Linux on shutdown.
1108 static void stop_run(struct shutdown_trigger
*trigger
)
1110 if (strcmp(trigger
->name
, ON_PANIC_STR
) == 0)
1111 disabled_wait((unsigned long) __builtin_return_address(0));
1113 signal_processor(smp_processor_id(), sigp_stop
);
1118 static struct shutdown_action stop_action
= {SHUTDOWN_ACTION_STOP_STR
,
1123 static struct shutdown_action
*shutdown_actions_list
[] = {
1124 &ipl_action
, &reipl_action
, &dump_action
, &vmcmd_action
, &stop_action
};
1125 #define SHUTDOWN_ACTIONS_COUNT (sizeof(shutdown_actions_list) / sizeof(void *))
1131 static struct kset
*shutdown_actions_kset
;
1133 static int set_trigger(const char *buf
, struct shutdown_trigger
*trigger
,
1137 for (i
= 0; i
< SHUTDOWN_ACTIONS_COUNT
; i
++) {
1138 if (!shutdown_actions_list
[i
])
1140 if (strncmp(buf
, shutdown_actions_list
[i
]->name
,
1141 strlen(shutdown_actions_list
[i
]->name
)) == 0) {
1142 trigger
->action
= shutdown_actions_list
[i
];
1151 static struct shutdown_trigger on_reboot_trigger
= {ON_REIPL_STR
,
1154 static ssize_t
on_reboot_show(struct kobject
*kobj
,
1155 struct kobj_attribute
*attr
, char *page
)
1157 return sprintf(page
, "%s\n", on_reboot_trigger
.action
->name
);
1160 static ssize_t
on_reboot_store(struct kobject
*kobj
,
1161 struct kobj_attribute
*attr
,
1162 const char *buf
, size_t len
)
1164 return set_trigger(buf
, &on_reboot_trigger
, len
);
1167 static struct kobj_attribute on_reboot_attr
=
1168 __ATTR(on_reboot
, 0644, on_reboot_show
, on_reboot_store
);
1170 static void do_machine_restart(char *__unused
)
1173 on_reboot_trigger
.action
->fn(&on_reboot_trigger
);
1176 void (*_machine_restart
)(char *command
) = do_machine_restart
;
1180 static struct shutdown_trigger on_panic_trigger
= {ON_PANIC_STR
, &stop_action
};
1182 static ssize_t
on_panic_show(struct kobject
*kobj
,
1183 struct kobj_attribute
*attr
, char *page
)
1185 return sprintf(page
, "%s\n", on_panic_trigger
.action
->name
);
1188 static ssize_t
on_panic_store(struct kobject
*kobj
,
1189 struct kobj_attribute
*attr
,
1190 const char *buf
, size_t len
)
1192 return set_trigger(buf
, &on_panic_trigger
, len
);
1195 static struct kobj_attribute on_panic_attr
=
1196 __ATTR(on_panic
, 0644, on_panic_show
, on_panic_store
);
1198 static void do_panic(void)
1200 on_panic_trigger
.action
->fn(&on_panic_trigger
);
1201 stop_run(&on_panic_trigger
);
1206 static struct shutdown_trigger on_halt_trigger
= {ON_HALT_STR
, &stop_action
};
1208 static ssize_t
on_halt_show(struct kobject
*kobj
,
1209 struct kobj_attribute
*attr
, char *page
)
1211 return sprintf(page
, "%s\n", on_halt_trigger
.action
->name
);
1214 static ssize_t
on_halt_store(struct kobject
*kobj
,
1215 struct kobj_attribute
*attr
,
1216 const char *buf
, size_t len
)
1218 return set_trigger(buf
, &on_halt_trigger
, len
);
1221 static struct kobj_attribute on_halt_attr
=
1222 __ATTR(on_halt
, 0644, on_halt_show
, on_halt_store
);
1225 static void do_machine_halt(void)
1228 on_halt_trigger
.action
->fn(&on_halt_trigger
);
1229 stop_run(&on_halt_trigger
);
1231 void (*_machine_halt
)(void) = do_machine_halt
;
1235 static struct shutdown_trigger on_poff_trigger
= {ON_POFF_STR
, &stop_action
};
1237 static ssize_t
on_poff_show(struct kobject
*kobj
,
1238 struct kobj_attribute
*attr
, char *page
)
1240 return sprintf(page
, "%s\n", on_poff_trigger
.action
->name
);
1243 static ssize_t
on_poff_store(struct kobject
*kobj
,
1244 struct kobj_attribute
*attr
,
1245 const char *buf
, size_t len
)
1247 return set_trigger(buf
, &on_poff_trigger
, len
);
1250 static struct kobj_attribute on_poff_attr
=
1251 __ATTR(on_poff
, 0644, on_poff_show
, on_poff_store
);
1254 static void do_machine_power_off(void)
1257 on_poff_trigger
.action
->fn(&on_poff_trigger
);
1258 stop_run(&on_poff_trigger
);
1260 void (*_machine_power_off
)(void) = do_machine_power_off
;
1262 static void __init
shutdown_triggers_init(void)
1264 shutdown_actions_kset
= kset_create_and_add("shutdown_actions", NULL
,
1266 if (!shutdown_actions_kset
)
1268 if (sysfs_create_file(&shutdown_actions_kset
->kobj
,
1269 &on_reboot_attr
.attr
))
1271 if (sysfs_create_file(&shutdown_actions_kset
->kobj
,
1272 &on_panic_attr
.attr
))
1274 if (sysfs_create_file(&shutdown_actions_kset
->kobj
,
1275 &on_halt_attr
.attr
))
1277 if (sysfs_create_file(&shutdown_actions_kset
->kobj
,
1278 &on_poff_attr
.attr
))
1283 panic("shutdown_triggers_init failed\n");
1286 static void __init
shutdown_actions_init(void)
1290 for (i
= 0; i
< SHUTDOWN_ACTIONS_COUNT
; i
++) {
1291 if (!shutdown_actions_list
[i
]->init
)
1293 if (shutdown_actions_list
[i
]->init())
1294 shutdown_actions_list
[i
] = NULL
;
1298 static int __init
s390_ipl_init(void)
1301 sclp_get_ipl_info(&sclp_ipl_info
);
1302 shutdown_actions_init();
1303 shutdown_triggers_init();
1307 __initcall(s390_ipl_init
);
1309 static void __init
strncpy_skip_quote(char *dst
, char *src
, int n
)
1314 for (sx
= 0; src
[sx
] != 0; sx
++) {
1317 dst
[dx
++] = src
[sx
];
1323 static int __init
vmcmd_on_reboot_setup(char *str
)
1327 strncpy_skip_quote(vmcmd_on_reboot
, str
, 127);
1328 vmcmd_on_reboot
[127] = 0;
1329 on_reboot_trigger
.action
= &vmcmd_action
;
1332 __setup("vmreboot=", vmcmd_on_reboot_setup
);
1334 static int __init
vmcmd_on_panic_setup(char *str
)
1338 strncpy_skip_quote(vmcmd_on_panic
, str
, 127);
1339 vmcmd_on_panic
[127] = 0;
1340 on_panic_trigger
.action
= &vmcmd_action
;
1343 __setup("vmpanic=", vmcmd_on_panic_setup
);
1345 static int __init
vmcmd_on_halt_setup(char *str
)
1349 strncpy_skip_quote(vmcmd_on_halt
, str
, 127);
1350 vmcmd_on_halt
[127] = 0;
1351 on_halt_trigger
.action
= &vmcmd_action
;
1354 __setup("vmhalt=", vmcmd_on_halt_setup
);
1356 static int __init
vmcmd_on_poff_setup(char *str
)
1360 strncpy_skip_quote(vmcmd_on_poff
, str
, 127);
1361 vmcmd_on_poff
[127] = 0;
1362 on_poff_trigger
.action
= &vmcmd_action
;
1365 __setup("vmpoff=", vmcmd_on_poff_setup
);
1367 static int on_panic_notify(struct notifier_block
*self
,
1368 unsigned long event
, void *data
)
1374 static struct notifier_block on_panic_nb
= {
1375 .notifier_call
= on_panic_notify
,
1379 void __init
setup_ipl(void)
1381 ipl_info
.type
= get_ipl_type();
1382 switch (ipl_info
.type
) {
1384 ipl_info
.data
.ccw
.dev_id
.devno
= ipl_devno
;
1385 ipl_info
.data
.ccw
.dev_id
.ssid
= 0;
1388 case IPL_TYPE_FCP_DUMP
:
1389 ipl_info
.data
.fcp
.dev_id
.devno
=
1390 IPL_PARMBLOCK_START
->ipl_info
.fcp
.devno
;
1391 ipl_info
.data
.fcp
.dev_id
.ssid
= 0;
1392 ipl_info
.data
.fcp
.wwpn
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.wwpn
;
1393 ipl_info
.data
.fcp
.lun
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.lun
;
1396 strncpy(ipl_info
.data
.nss
.name
, kernel_nss_name
,
1397 sizeof(ipl_info
.data
.nss
.name
));
1399 case IPL_TYPE_UNKNOWN
:
1401 /* We have no info to copy */
1404 atomic_notifier_chain_register(&panic_notifier_list
, &on_panic_nb
);
1407 void __init
ipl_save_parameters(void)
1409 struct cio_iplinfo iplinfo
;
1410 unsigned int *ipl_ptr
;
1413 if (cio_get_iplinfo(&iplinfo
))
1416 ipl_devno
= iplinfo
.devno
;
1417 ipl_flags
|= IPL_DEVNO_VALID
;
1418 if (!iplinfo
.is_qdio
)
1420 ipl_flags
|= IPL_PARMBLOCK_VALID
;
1421 ipl_ptr
= (unsigned int *)__LC_IPL_PARMBLOCK_PTR
;
1422 src
= (void *)(unsigned long)*ipl_ptr
;
1423 dst
= (void *)IPL_PARMBLOCK_ORIGIN
;
1424 memmove(dst
, src
, PAGE_SIZE
);
1425 *ipl_ptr
= IPL_PARMBLOCK_ORIGIN
;
1428 static LIST_HEAD(rcall
);
1429 static DEFINE_MUTEX(rcall_mutex
);
1431 void register_reset_call(struct reset_call
*reset
)
1433 mutex_lock(&rcall_mutex
);
1434 list_add(&reset
->list
, &rcall
);
1435 mutex_unlock(&rcall_mutex
);
1437 EXPORT_SYMBOL_GPL(register_reset_call
);
1439 void unregister_reset_call(struct reset_call
*reset
)
1441 mutex_lock(&rcall_mutex
);
1442 list_del(&reset
->list
);
1443 mutex_unlock(&rcall_mutex
);
1445 EXPORT_SYMBOL_GPL(unregister_reset_call
);
1447 static void do_reset_calls(void)
1449 struct reset_call
*reset
;
1451 list_for_each_entry(reset
, &rcall
, list
)
1455 u32 dump_prefix_page
;
1457 void s390_reset_system(void)
1459 struct _lowcore
*lc
;
1461 lc
= (struct _lowcore
*)(unsigned long) store_prefix();
1463 /* Stack for interrupt/machine check handler */
1464 lc
->panic_stack
= S390_lowcore
.panic_stack
;
1466 /* Save prefix page address for dump case */
1467 dump_prefix_page
= (u32
)(unsigned long) lc
;
1469 /* Disable prefixing */
1472 /* Disable lowcore protection */
1473 __ctl_clear_bit(0,28);
1475 /* Set new machine check handler */
1476 S390_lowcore
.mcck_new_psw
.mask
= psw_kernel_bits
& ~PSW_MASK_MCHECK
;
1477 S390_lowcore
.mcck_new_psw
.addr
=
1478 PSW_ADDR_AMODE
| (unsigned long) s390_base_mcck_handler
;
1480 /* Set new program check handler */
1481 S390_lowcore
.program_new_psw
.mask
= psw_kernel_bits
& ~PSW_MASK_MCHECK
;
1482 S390_lowcore
.program_new_psw
.addr
=
1483 PSW_ADDR_AMODE
| (unsigned long) s390_base_pgm_handler
;