2 * ipl/reipl/dump support for Linux on s390.
4 * Copyright IBM Corp. 2005, 2012
5 * Author(s): Michael Holzheu <holzheu@de.ibm.com>
6 * Heiko Carstens <heiko.carstens@de.ibm.com>
7 * Volker Sameske <sameske@de.ibm.com>
10 #include <linux/types.h>
11 #include <linux/export.h>
12 #include <linux/init.h>
13 #include <linux/device.h>
14 #include <linux/delay.h>
15 #include <linux/reboot.h>
16 #include <linux/ctype.h>
18 #include <linux/gfp.h>
19 #include <linux/crash_dump.h>
20 #include <linux/debug_locks.h>
24 #include <asm/setup.h>
25 #include <asm/cpcmd.h>
27 #include <asm/ebcdic.h>
28 #include <asm/reset.h>
30 #include <asm/checksum.h>
31 #include <asm/debug.h>
32 #include <asm/os_info.h>
35 #define IPL_PARM_BLOCK_VERSION 0
37 #define IPL_UNKNOWN_STR "unknown"
38 #define IPL_CCW_STR "ccw"
39 #define IPL_FCP_STR "fcp"
40 #define IPL_FCP_DUMP_STR "fcp_dump"
41 #define IPL_NSS_STR "nss"
43 #define DUMP_CCW_STR "ccw"
44 #define DUMP_FCP_STR "fcp"
45 #define DUMP_NONE_STR "none"
48 * Four shutdown trigger types are supported:
55 #define ON_PANIC_STR "on_panic"
56 #define ON_HALT_STR "on_halt"
57 #define ON_POFF_STR "on_poff"
58 #define ON_REIPL_STR "on_reboot"
59 #define ON_RESTART_STR "on_restart"
61 struct shutdown_action
;
62 struct shutdown_trigger
{
64 struct shutdown_action
*action
;
68 * The following shutdown action types are supported:
70 #define SHUTDOWN_ACTION_IPL_STR "ipl"
71 #define SHUTDOWN_ACTION_REIPL_STR "reipl"
72 #define SHUTDOWN_ACTION_DUMP_STR "dump"
73 #define SHUTDOWN_ACTION_VMCMD_STR "vmcmd"
74 #define SHUTDOWN_ACTION_STOP_STR "stop"
75 #define SHUTDOWN_ACTION_DUMP_REIPL_STR "dump_reipl"
77 struct shutdown_action
{
79 void (*fn
) (struct shutdown_trigger
*trigger
);
84 static char *ipl_type_str(enum ipl_type type
)
91 case IPL_TYPE_FCP_DUMP
:
92 return IPL_FCP_DUMP_STR
;
95 case IPL_TYPE_UNKNOWN
:
97 return IPL_UNKNOWN_STR
;
107 static char *dump_type_str(enum dump_type type
)
111 return DUMP_NONE_STR
;
122 * Must be in data section since the bss section
123 * is not cleared when these are accessed.
125 static u8 ipl_ssid
__section(.data
) = 0;
126 static u16 ipl_devno
__section(.data
) = 0;
127 u32 ipl_flags
__section(.data
) = 0;
130 REIPL_METHOD_CCW_CIO
,
131 REIPL_METHOD_CCW_DIAG
,
133 REIPL_METHOD_FCP_RO_DIAG
,
134 REIPL_METHOD_FCP_RW_DIAG
,
135 REIPL_METHOD_FCP_RO_VM
,
136 REIPL_METHOD_FCP_DUMP
,
138 REIPL_METHOD_NSS_DIAG
,
139 REIPL_METHOD_DEFAULT
,
145 DUMP_METHOD_CCW_DIAG
,
147 DUMP_METHOD_FCP_DIAG
,
150 static int diag308_set_works
= 0;
152 static struct ipl_parameter_block ipl_block
;
154 static int reipl_capabilities
= IPL_TYPE_UNKNOWN
;
156 static enum ipl_type reipl_type
= IPL_TYPE_UNKNOWN
;
157 static enum ipl_method reipl_method
= REIPL_METHOD_DEFAULT
;
158 static struct ipl_parameter_block
*reipl_block_fcp
;
159 static struct ipl_parameter_block
*reipl_block_ccw
;
160 static struct ipl_parameter_block
*reipl_block_nss
;
161 static struct ipl_parameter_block
*reipl_block_actual
;
163 static int dump_capabilities
= DUMP_TYPE_NONE
;
164 static enum dump_type dump_type
= DUMP_TYPE_NONE
;
165 static enum dump_method dump_method
= DUMP_METHOD_NONE
;
166 static struct ipl_parameter_block
*dump_block_fcp
;
167 static struct ipl_parameter_block
*dump_block_ccw
;
169 static struct sclp_ipl_info sclp_ipl_info
;
171 static inline int __diag308(unsigned long subcode
, void *addr
)
173 register unsigned long _addr
asm("0") = (unsigned long) addr
;
174 register unsigned long _rc
asm("1") = 0;
177 " diag %0,%2,0x308\n"
180 : "+d" (_addr
), "+d" (_rc
)
181 : "d" (subcode
) : "cc", "memory");
185 int diag308(unsigned long subcode
, void *addr
)
187 diag_stat_inc(DIAG_STAT_X308
);
188 return __diag308(subcode
, addr
);
190 EXPORT_SYMBOL_GPL(diag308
);
194 #define IPL_ATTR_SHOW_FN(_prefix, _name, _format, args...) \
195 static ssize_t sys_##_prefix##_##_name##_show(struct kobject *kobj, \
196 struct kobj_attribute *attr, \
199 return snprintf(page, PAGE_SIZE, _format, ##args); \
202 #define IPL_ATTR_CCW_STORE_FN(_prefix, _name, _ipl_blk) \
203 static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \
204 struct kobj_attribute *attr, \
205 const char *buf, size_t len) \
207 unsigned long long ssid, devno; \
209 if (sscanf(buf, "0.%llx.%llx\n", &ssid, &devno) != 2) \
212 if (ssid > __MAX_SSID || devno > __MAX_SUBCHANNEL) \
215 _ipl_blk.ssid = ssid; \
216 _ipl_blk.devno = devno; \
220 #define DEFINE_IPL_CCW_ATTR_RW(_prefix, _name, _ipl_blk) \
221 IPL_ATTR_SHOW_FN(_prefix, _name, "0.%x.%04x\n", \
222 _ipl_blk.ssid, _ipl_blk.devno); \
223 IPL_ATTR_CCW_STORE_FN(_prefix, _name, _ipl_blk); \
224 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
225 __ATTR(_name, (S_IRUGO | S_IWUSR), \
226 sys_##_prefix##_##_name##_show, \
227 sys_##_prefix##_##_name##_store) \
229 #define DEFINE_IPL_ATTR_RO(_prefix, _name, _format, _value) \
230 IPL_ATTR_SHOW_FN(_prefix, _name, _format, _value) \
231 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
232 __ATTR(_name, S_IRUGO, sys_##_prefix##_##_name##_show, NULL)
234 #define DEFINE_IPL_ATTR_RW(_prefix, _name, _fmt_out, _fmt_in, _value) \
235 IPL_ATTR_SHOW_FN(_prefix, _name, _fmt_out, (unsigned long long) _value) \
236 static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \
237 struct kobj_attribute *attr, \
238 const char *buf, size_t len) \
240 unsigned long long value; \
241 if (sscanf(buf, _fmt_in, &value) != 1) \
246 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
247 __ATTR(_name,(S_IRUGO | S_IWUSR), \
248 sys_##_prefix##_##_name##_show, \
249 sys_##_prefix##_##_name##_store)
251 #define DEFINE_IPL_ATTR_STR_RW(_prefix, _name, _fmt_out, _fmt_in, _value)\
252 IPL_ATTR_SHOW_FN(_prefix, _name, _fmt_out, _value) \
253 static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \
254 struct kobj_attribute *attr, \
255 const char *buf, size_t len) \
257 strncpy(_value, buf, sizeof(_value) - 1); \
261 static struct kobj_attribute sys_##_prefix##_##_name##_attr = \
262 __ATTR(_name,(S_IRUGO | S_IWUSR), \
263 sys_##_prefix##_##_name##_show, \
264 sys_##_prefix##_##_name##_store)
266 static void make_attrs_ro(struct attribute
**attrs
)
269 (*attrs
)->mode
= S_IRUGO
;
278 static __init
enum ipl_type
get_ipl_type(void)
280 struct ipl_parameter_block
*ipl
= IPL_PARMBLOCK_START
;
282 if (ipl_flags
& IPL_NSS_VALID
)
284 if (!(ipl_flags
& IPL_DEVNO_VALID
))
285 return IPL_TYPE_UNKNOWN
;
286 if (!(ipl_flags
& IPL_PARMBLOCK_VALID
))
288 if (ipl
->hdr
.version
> IPL_MAX_SUPPORTED_VERSION
)
289 return IPL_TYPE_UNKNOWN
;
290 if (ipl
->hdr
.pbt
!= DIAG308_IPL_TYPE_FCP
)
291 return IPL_TYPE_UNKNOWN
;
292 if (ipl
->ipl_info
.fcp
.opt
== DIAG308_IPL_OPT_DUMP
)
293 return IPL_TYPE_FCP_DUMP
;
297 struct ipl_info ipl_info
;
298 EXPORT_SYMBOL_GPL(ipl_info
);
300 static ssize_t
ipl_type_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
303 return sprintf(page
, "%s\n", ipl_type_str(ipl_info
.type
));
306 static struct kobj_attribute sys_ipl_type_attr
= __ATTR_RO(ipl_type
);
308 /* VM IPL PARM routines */
309 static size_t reipl_get_ascii_vmparm(char *dest
, size_t size
,
310 const struct ipl_parameter_block
*ipb
)
314 char has_lowercase
= 0;
317 if ((ipb
->ipl_info
.ccw
.vm_flags
& DIAG308_VM_FLAGS_VP_VALID
) &&
318 (ipb
->ipl_info
.ccw
.vm_parm_len
> 0)) {
320 len
= min_t(size_t, size
- 1, ipb
->ipl_info
.ccw
.vm_parm_len
);
321 memcpy(dest
, ipb
->ipl_info
.ccw
.vm_parm
, len
);
322 /* If at least one character is lowercase, we assume mixed
323 * case; otherwise we convert everything to lowercase.
325 for (i
= 0; i
< len
; i
++)
326 if ((dest
[i
] > 0x80 && dest
[i
] < 0x8a) || /* a-i */
327 (dest
[i
] > 0x90 && dest
[i
] < 0x9a) || /* j-r */
328 (dest
[i
] > 0xa1 && dest
[i
] < 0xaa)) { /* s-z */
333 EBC_TOLOWER(dest
, len
);
341 size_t append_ipl_vmparm(char *dest
, size_t size
)
346 if (diag308_set_works
&& (ipl_block
.hdr
.pbt
== DIAG308_IPL_TYPE_CCW
))
347 rc
= reipl_get_ascii_vmparm(dest
, size
, &ipl_block
);
353 static ssize_t
ipl_vm_parm_show(struct kobject
*kobj
,
354 struct kobj_attribute
*attr
, char *page
)
356 char parm
[DIAG308_VMPARM_SIZE
+ 1] = {};
358 append_ipl_vmparm(parm
, sizeof(parm
));
359 return sprintf(page
, "%s\n", parm
);
362 static size_t scpdata_length(const char* buf
, size_t count
)
365 if (buf
[count
- 1] != '\0' && buf
[count
- 1] != ' ')
372 static size_t reipl_append_ascii_scpdata(char *dest
, size_t size
,
373 const struct ipl_parameter_block
*ipb
)
379 count
= min(size
- 1, scpdata_length(ipb
->ipl_info
.fcp
.scp_data
,
380 ipb
->ipl_info
.fcp
.scp_data_len
));
385 for (i
= 0; i
< count
; i
++) {
386 if (!isascii(ipb
->ipl_info
.fcp
.scp_data
[i
])) {
390 if (!has_lowercase
&& islower(ipb
->ipl_info
.fcp
.scp_data
[i
]))
395 memcpy(dest
, ipb
->ipl_info
.fcp
.scp_data
, count
);
397 for (i
= 0; i
< count
; i
++)
398 dest
[i
] = tolower(ipb
->ipl_info
.fcp
.scp_data
[i
]);
404 size_t append_ipl_scpdata(char *dest
, size_t len
)
409 if (ipl_block
.hdr
.pbt
== DIAG308_IPL_TYPE_FCP
)
410 rc
= reipl_append_ascii_scpdata(dest
, len
, &ipl_block
);
417 static struct kobj_attribute sys_ipl_vm_parm_attr
=
418 __ATTR(parm
, S_IRUGO
, ipl_vm_parm_show
, NULL
);
420 static ssize_t
sys_ipl_device_show(struct kobject
*kobj
,
421 struct kobj_attribute
*attr
, char *page
)
423 struct ipl_parameter_block
*ipl
= IPL_PARMBLOCK_START
;
425 switch (ipl_info
.type
) {
427 return sprintf(page
, "0.%x.%04x\n", ipl_ssid
, ipl_devno
);
429 case IPL_TYPE_FCP_DUMP
:
430 return sprintf(page
, "0.0.%04x\n", ipl
->ipl_info
.fcp
.devno
);
436 static struct kobj_attribute sys_ipl_device_attr
=
437 __ATTR(device
, S_IRUGO
, sys_ipl_device_show
, NULL
);
439 static ssize_t
ipl_parameter_read(struct file
*filp
, struct kobject
*kobj
,
440 struct bin_attribute
*attr
, char *buf
,
441 loff_t off
, size_t count
)
443 return memory_read_from_buffer(buf
, count
, &off
, IPL_PARMBLOCK_START
,
446 static struct bin_attribute ipl_parameter_attr
=
447 __BIN_ATTR(binary_parameter
, S_IRUGO
, ipl_parameter_read
, NULL
,
450 static ssize_t
ipl_scp_data_read(struct file
*filp
, struct kobject
*kobj
,
451 struct bin_attribute
*attr
, char *buf
,
452 loff_t off
, size_t count
)
454 unsigned int size
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.scp_data_len
;
455 void *scp_data
= &IPL_PARMBLOCK_START
->ipl_info
.fcp
.scp_data
;
457 return memory_read_from_buffer(buf
, count
, &off
, scp_data
, size
);
459 static struct bin_attribute ipl_scp_data_attr
=
460 __BIN_ATTR(scp_data
, S_IRUGO
, ipl_scp_data_read
, NULL
, PAGE_SIZE
);
462 static struct bin_attribute
*ipl_fcp_bin_attrs
[] = {
468 /* FCP ipl device attributes */
470 DEFINE_IPL_ATTR_RO(ipl_fcp
, wwpn
, "0x%016llx\n", (unsigned long long)
471 IPL_PARMBLOCK_START
->ipl_info
.fcp
.wwpn
);
472 DEFINE_IPL_ATTR_RO(ipl_fcp
, lun
, "0x%016llx\n", (unsigned long long)
473 IPL_PARMBLOCK_START
->ipl_info
.fcp
.lun
);
474 DEFINE_IPL_ATTR_RO(ipl_fcp
, bootprog
, "%lld\n", (unsigned long long)
475 IPL_PARMBLOCK_START
->ipl_info
.fcp
.bootprog
);
476 DEFINE_IPL_ATTR_RO(ipl_fcp
, br_lba
, "%lld\n", (unsigned long long)
477 IPL_PARMBLOCK_START
->ipl_info
.fcp
.br_lba
);
479 static ssize_t
ipl_ccw_loadparm_show(struct kobject
*kobj
,
480 struct kobj_attribute
*attr
, char *page
)
482 char loadparm
[LOADPARM_LEN
+ 1] = {};
484 if (!sclp_ipl_info
.is_valid
)
485 return sprintf(page
, "#unknown#\n");
486 memcpy(loadparm
, &sclp_ipl_info
.loadparm
, LOADPARM_LEN
);
487 EBCASC(loadparm
, LOADPARM_LEN
);
489 return sprintf(page
, "%s\n", loadparm
);
492 static struct kobj_attribute sys_ipl_ccw_loadparm_attr
=
493 __ATTR(loadparm
, 0444, ipl_ccw_loadparm_show
, NULL
);
495 static struct attribute
*ipl_fcp_attrs
[] = {
496 &sys_ipl_type_attr
.attr
,
497 &sys_ipl_device_attr
.attr
,
498 &sys_ipl_fcp_wwpn_attr
.attr
,
499 &sys_ipl_fcp_lun_attr
.attr
,
500 &sys_ipl_fcp_bootprog_attr
.attr
,
501 &sys_ipl_fcp_br_lba_attr
.attr
,
502 &sys_ipl_ccw_loadparm_attr
.attr
,
506 static struct attribute_group ipl_fcp_attr_group
= {
507 .attrs
= ipl_fcp_attrs
,
508 .bin_attrs
= ipl_fcp_bin_attrs
,
511 /* CCW ipl device attributes */
513 static struct attribute
*ipl_ccw_attrs_vm
[] = {
514 &sys_ipl_type_attr
.attr
,
515 &sys_ipl_device_attr
.attr
,
516 &sys_ipl_ccw_loadparm_attr
.attr
,
517 &sys_ipl_vm_parm_attr
.attr
,
521 static struct attribute
*ipl_ccw_attrs_lpar
[] = {
522 &sys_ipl_type_attr
.attr
,
523 &sys_ipl_device_attr
.attr
,
524 &sys_ipl_ccw_loadparm_attr
.attr
,
528 static struct attribute_group ipl_ccw_attr_group_vm
= {
529 .attrs
= ipl_ccw_attrs_vm
,
532 static struct attribute_group ipl_ccw_attr_group_lpar
= {
533 .attrs
= ipl_ccw_attrs_lpar
536 /* NSS ipl device attributes */
538 DEFINE_IPL_ATTR_RO(ipl_nss
, name
, "%s\n", kernel_nss_name
);
540 static struct attribute
*ipl_nss_attrs
[] = {
541 &sys_ipl_type_attr
.attr
,
542 &sys_ipl_nss_name_attr
.attr
,
543 &sys_ipl_ccw_loadparm_attr
.attr
,
544 &sys_ipl_vm_parm_attr
.attr
,
548 static struct attribute_group ipl_nss_attr_group
= {
549 .attrs
= ipl_nss_attrs
,
552 /* UNKNOWN ipl device attributes */
554 static struct attribute
*ipl_unknown_attrs
[] = {
555 &sys_ipl_type_attr
.attr
,
559 static struct attribute_group ipl_unknown_attr_group
= {
560 .attrs
= ipl_unknown_attrs
,
563 static struct kset
*ipl_kset
;
565 static void __ipl_run(void *unused
)
567 if (MACHINE_IS_LPAR
&& ipl_info
.type
== IPL_TYPE_CCW
)
568 diag308(DIAG308_LOAD_NORMAL_DUMP
, NULL
);
569 diag308(DIAG308_LOAD_CLEAR
, NULL
);
571 __cpcmd("IPL", NULL
, 0, NULL
);
572 else if (ipl_info
.type
== IPL_TYPE_CCW
)
573 reipl_ccw_dev(&ipl_info
.data
.ccw
.dev_id
);
576 static void ipl_run(struct shutdown_trigger
*trigger
)
578 smp_call_ipl_cpu(__ipl_run
, NULL
);
581 static int __init
ipl_init(void)
585 ipl_kset
= kset_create_and_add("ipl", NULL
, firmware_kobj
);
590 switch (ipl_info
.type
) {
593 rc
= sysfs_create_group(&ipl_kset
->kobj
,
594 &ipl_ccw_attr_group_vm
);
596 rc
= sysfs_create_group(&ipl_kset
->kobj
,
597 &ipl_ccw_attr_group_lpar
);
600 case IPL_TYPE_FCP_DUMP
:
601 rc
= sysfs_create_group(&ipl_kset
->kobj
, &ipl_fcp_attr_group
);
604 rc
= sysfs_create_group(&ipl_kset
->kobj
, &ipl_nss_attr_group
);
607 rc
= sysfs_create_group(&ipl_kset
->kobj
,
608 &ipl_unknown_attr_group
);
613 panic("ipl_init failed: rc = %i\n", rc
);
618 static struct shutdown_action __refdata ipl_action
= {
619 .name
= SHUTDOWN_ACTION_IPL_STR
,
625 * reipl shutdown action: Reboot Linux on shutdown.
628 /* VM IPL PARM attributes */
629 static ssize_t
reipl_generic_vmparm_show(struct ipl_parameter_block
*ipb
,
632 char vmparm
[DIAG308_VMPARM_SIZE
+ 1] = {};
634 reipl_get_ascii_vmparm(vmparm
, sizeof(vmparm
), ipb
);
635 return sprintf(page
, "%s\n", vmparm
);
638 static ssize_t
reipl_generic_vmparm_store(struct ipl_parameter_block
*ipb
,
640 const char *buf
, size_t len
)
644 /* ignore trailing newline */
646 if ((len
> 0) && (buf
[len
- 1] == '\n'))
649 if (ip_len
> vmparm_max
)
652 /* parm is used to store kernel options, check for common chars */
653 for (i
= 0; i
< ip_len
; i
++)
654 if (!(isalnum(buf
[i
]) || isascii(buf
[i
]) || isprint(buf
[i
])))
657 memset(ipb
->ipl_info
.ccw
.vm_parm
, 0, DIAG308_VMPARM_SIZE
);
658 ipb
->ipl_info
.ccw
.vm_parm_len
= ip_len
;
660 ipb
->ipl_info
.ccw
.vm_flags
|= DIAG308_VM_FLAGS_VP_VALID
;
661 memcpy(ipb
->ipl_info
.ccw
.vm_parm
, buf
, ip_len
);
662 ASCEBC(ipb
->ipl_info
.ccw
.vm_parm
, ip_len
);
664 ipb
->ipl_info
.ccw
.vm_flags
&= ~DIAG308_VM_FLAGS_VP_VALID
;
671 static ssize_t
reipl_nss_vmparm_show(struct kobject
*kobj
,
672 struct kobj_attribute
*attr
, char *page
)
674 return reipl_generic_vmparm_show(reipl_block_nss
, page
);
677 static ssize_t
reipl_nss_vmparm_store(struct kobject
*kobj
,
678 struct kobj_attribute
*attr
,
679 const char *buf
, size_t len
)
681 return reipl_generic_vmparm_store(reipl_block_nss
, 56, buf
, len
);
685 static ssize_t
reipl_ccw_vmparm_show(struct kobject
*kobj
,
686 struct kobj_attribute
*attr
, char *page
)
688 return reipl_generic_vmparm_show(reipl_block_ccw
, page
);
691 static ssize_t
reipl_ccw_vmparm_store(struct kobject
*kobj
,
692 struct kobj_attribute
*attr
,
693 const char *buf
, size_t len
)
695 return reipl_generic_vmparm_store(reipl_block_ccw
, 64, buf
, len
);
698 static struct kobj_attribute sys_reipl_nss_vmparm_attr
=
699 __ATTR(parm
, S_IRUGO
| S_IWUSR
, reipl_nss_vmparm_show
,
700 reipl_nss_vmparm_store
);
701 static struct kobj_attribute sys_reipl_ccw_vmparm_attr
=
702 __ATTR(parm
, S_IRUGO
| S_IWUSR
, reipl_ccw_vmparm_show
,
703 reipl_ccw_vmparm_store
);
705 /* FCP reipl device attributes */
707 static ssize_t
reipl_fcp_scpdata_read(struct file
*filp
, struct kobject
*kobj
,
708 struct bin_attribute
*attr
,
709 char *buf
, loff_t off
, size_t count
)
711 size_t size
= reipl_block_fcp
->ipl_info
.fcp
.scp_data_len
;
712 void *scp_data
= reipl_block_fcp
->ipl_info
.fcp
.scp_data
;
714 return memory_read_from_buffer(buf
, count
, &off
, scp_data
, size
);
717 static ssize_t
reipl_fcp_scpdata_write(struct file
*filp
, struct kobject
*kobj
,
718 struct bin_attribute
*attr
,
719 char *buf
, loff_t off
, size_t count
)
721 size_t scpdata_len
= count
;
728 memcpy(reipl_block_fcp
->ipl_info
.fcp
.scp_data
, buf
, count
);
729 if (scpdata_len
% 8) {
730 padding
= 8 - (scpdata_len
% 8);
731 memset(reipl_block_fcp
->ipl_info
.fcp
.scp_data
+ scpdata_len
,
733 scpdata_len
+= padding
;
736 reipl_block_fcp
->ipl_info
.fcp
.scp_data_len
= scpdata_len
;
737 reipl_block_fcp
->hdr
.len
= IPL_PARM_BLK_FCP_LEN
+ scpdata_len
;
738 reipl_block_fcp
->hdr
.blk0_len
= IPL_PARM_BLK0_FCP_LEN
+ scpdata_len
;
742 static struct bin_attribute sys_reipl_fcp_scp_data_attr
=
743 __BIN_ATTR(scp_data
, (S_IRUGO
| S_IWUSR
), reipl_fcp_scpdata_read
,
744 reipl_fcp_scpdata_write
, DIAG308_SCPDATA_SIZE
);
746 static struct bin_attribute
*reipl_fcp_bin_attrs
[] = {
747 &sys_reipl_fcp_scp_data_attr
,
751 DEFINE_IPL_ATTR_RW(reipl_fcp
, wwpn
, "0x%016llx\n", "%llx\n",
752 reipl_block_fcp
->ipl_info
.fcp
.wwpn
);
753 DEFINE_IPL_ATTR_RW(reipl_fcp
, lun
, "0x%016llx\n", "%llx\n",
754 reipl_block_fcp
->ipl_info
.fcp
.lun
);
755 DEFINE_IPL_ATTR_RW(reipl_fcp
, bootprog
, "%lld\n", "%lld\n",
756 reipl_block_fcp
->ipl_info
.fcp
.bootprog
);
757 DEFINE_IPL_ATTR_RW(reipl_fcp
, br_lba
, "%lld\n", "%lld\n",
758 reipl_block_fcp
->ipl_info
.fcp
.br_lba
);
759 DEFINE_IPL_ATTR_RW(reipl_fcp
, device
, "0.0.%04llx\n", "0.0.%llx\n",
760 reipl_block_fcp
->ipl_info
.fcp
.devno
);
762 static void reipl_get_ascii_loadparm(char *loadparm
,
763 struct ipl_parameter_block
*ibp
)
765 memcpy(loadparm
, ibp
->hdr
.loadparm
, LOADPARM_LEN
);
766 EBCASC(loadparm
, LOADPARM_LEN
);
767 loadparm
[LOADPARM_LEN
] = 0;
771 static ssize_t
reipl_generic_loadparm_show(struct ipl_parameter_block
*ipb
,
774 char buf
[LOADPARM_LEN
+ 1];
776 reipl_get_ascii_loadparm(buf
, ipb
);
777 return sprintf(page
, "%s\n", buf
);
780 static ssize_t
reipl_generic_loadparm_store(struct ipl_parameter_block
*ipb
,
781 const char *buf
, size_t len
)
785 /* ignore trailing newline */
787 if ((len
> 0) && (buf
[len
- 1] == '\n'))
789 /* loadparm can have max 8 characters and must not start with a blank */
790 if ((lp_len
> LOADPARM_LEN
) || ((lp_len
> 0) && (buf
[0] == ' ')))
792 /* loadparm can only contain "a-z,A-Z,0-9,SP,." */
793 for (i
= 0; i
< lp_len
; i
++) {
794 if (isalpha(buf
[i
]) || isdigit(buf
[i
]) || (buf
[i
] == ' ') ||
799 /* initialize loadparm with blanks */
800 memset(ipb
->hdr
.loadparm
, ' ', LOADPARM_LEN
);
801 /* copy and convert to ebcdic */
802 memcpy(ipb
->hdr
.loadparm
, buf
, lp_len
);
803 ASCEBC(ipb
->hdr
.loadparm
, LOADPARM_LEN
);
808 static ssize_t
reipl_fcp_loadparm_show(struct kobject
*kobj
,
809 struct kobj_attribute
*attr
, char *page
)
811 return reipl_generic_loadparm_show(reipl_block_fcp
, page
);
814 static ssize_t
reipl_fcp_loadparm_store(struct kobject
*kobj
,
815 struct kobj_attribute
*attr
,
816 const char *buf
, size_t len
)
818 return reipl_generic_loadparm_store(reipl_block_fcp
, buf
, len
);
821 static struct kobj_attribute sys_reipl_fcp_loadparm_attr
=
822 __ATTR(loadparm
, S_IRUGO
| S_IWUSR
, reipl_fcp_loadparm_show
,
823 reipl_fcp_loadparm_store
);
825 static struct attribute
*reipl_fcp_attrs
[] = {
826 &sys_reipl_fcp_device_attr
.attr
,
827 &sys_reipl_fcp_wwpn_attr
.attr
,
828 &sys_reipl_fcp_lun_attr
.attr
,
829 &sys_reipl_fcp_bootprog_attr
.attr
,
830 &sys_reipl_fcp_br_lba_attr
.attr
,
831 &sys_reipl_fcp_loadparm_attr
.attr
,
835 static struct attribute_group reipl_fcp_attr_group
= {
836 .attrs
= reipl_fcp_attrs
,
837 .bin_attrs
= reipl_fcp_bin_attrs
,
840 /* CCW reipl device attributes */
841 DEFINE_IPL_CCW_ATTR_RW(reipl_ccw
, device
, reipl_block_ccw
->ipl_info
.ccw
);
844 static ssize_t
reipl_nss_loadparm_show(struct kobject
*kobj
,
845 struct kobj_attribute
*attr
, char *page
)
847 return reipl_generic_loadparm_show(reipl_block_nss
, page
);
850 static ssize_t
reipl_nss_loadparm_store(struct kobject
*kobj
,
851 struct kobj_attribute
*attr
,
852 const char *buf
, size_t len
)
854 return reipl_generic_loadparm_store(reipl_block_nss
, buf
, len
);
858 static ssize_t
reipl_ccw_loadparm_show(struct kobject
*kobj
,
859 struct kobj_attribute
*attr
, char *page
)
861 return reipl_generic_loadparm_show(reipl_block_ccw
, page
);
864 static ssize_t
reipl_ccw_loadparm_store(struct kobject
*kobj
,
865 struct kobj_attribute
*attr
,
866 const char *buf
, size_t len
)
868 return reipl_generic_loadparm_store(reipl_block_ccw
, buf
, len
);
871 static struct kobj_attribute sys_reipl_ccw_loadparm_attr
=
872 __ATTR(loadparm
, S_IRUGO
| S_IWUSR
, reipl_ccw_loadparm_show
,
873 reipl_ccw_loadparm_store
);
875 static struct attribute
*reipl_ccw_attrs_vm
[] = {
876 &sys_reipl_ccw_device_attr
.attr
,
877 &sys_reipl_ccw_loadparm_attr
.attr
,
878 &sys_reipl_ccw_vmparm_attr
.attr
,
882 static struct attribute
*reipl_ccw_attrs_lpar
[] = {
883 &sys_reipl_ccw_device_attr
.attr
,
884 &sys_reipl_ccw_loadparm_attr
.attr
,
888 static struct attribute_group reipl_ccw_attr_group_vm
= {
890 .attrs
= reipl_ccw_attrs_vm
,
893 static struct attribute_group reipl_ccw_attr_group_lpar
= {
895 .attrs
= reipl_ccw_attrs_lpar
,
899 /* NSS reipl device attributes */
900 static void reipl_get_ascii_nss_name(char *dst
,
901 struct ipl_parameter_block
*ipb
)
903 memcpy(dst
, ipb
->ipl_info
.ccw
.nss_name
, NSS_NAME_SIZE
);
904 EBCASC(dst
, NSS_NAME_SIZE
);
905 dst
[NSS_NAME_SIZE
] = 0;
908 static ssize_t
reipl_nss_name_show(struct kobject
*kobj
,
909 struct kobj_attribute
*attr
, char *page
)
911 char nss_name
[NSS_NAME_SIZE
+ 1] = {};
913 reipl_get_ascii_nss_name(nss_name
, reipl_block_nss
);
914 return sprintf(page
, "%s\n", nss_name
);
917 static ssize_t
reipl_nss_name_store(struct kobject
*kobj
,
918 struct kobj_attribute
*attr
,
919 const char *buf
, size_t len
)
923 /* ignore trailing newline */
925 if ((len
> 0) && (buf
[len
- 1] == '\n'))
928 if (nss_len
> NSS_NAME_SIZE
)
931 memset(reipl_block_nss
->ipl_info
.ccw
.nss_name
, 0x40, NSS_NAME_SIZE
);
933 reipl_block_nss
->ipl_info
.ccw
.vm_flags
|=
934 DIAG308_VM_FLAGS_NSS_VALID
;
935 memcpy(reipl_block_nss
->ipl_info
.ccw
.nss_name
, buf
, nss_len
);
936 ASCEBC(reipl_block_nss
->ipl_info
.ccw
.nss_name
, nss_len
);
937 EBC_TOUPPER(reipl_block_nss
->ipl_info
.ccw
.nss_name
, nss_len
);
939 reipl_block_nss
->ipl_info
.ccw
.vm_flags
&=
940 ~DIAG308_VM_FLAGS_NSS_VALID
;
946 static struct kobj_attribute sys_reipl_nss_name_attr
=
947 __ATTR(name
, S_IRUGO
| S_IWUSR
, reipl_nss_name_show
,
948 reipl_nss_name_store
);
950 static struct kobj_attribute sys_reipl_nss_loadparm_attr
=
951 __ATTR(loadparm
, S_IRUGO
| S_IWUSR
, reipl_nss_loadparm_show
,
952 reipl_nss_loadparm_store
);
954 static struct attribute
*reipl_nss_attrs
[] = {
955 &sys_reipl_nss_name_attr
.attr
,
956 &sys_reipl_nss_loadparm_attr
.attr
,
957 &sys_reipl_nss_vmparm_attr
.attr
,
961 static struct attribute_group reipl_nss_attr_group
= {
963 .attrs
= reipl_nss_attrs
,
966 static void set_reipl_block_actual(struct ipl_parameter_block
*reipl_block
)
968 reipl_block_actual
= reipl_block
;
969 os_info_entry_add(OS_INFO_REIPL_BLOCK
, reipl_block_actual
,
970 reipl_block
->hdr
.len
);
975 static int reipl_set_type(enum ipl_type type
)
977 if (!(reipl_capabilities
& type
))
982 if (diag308_set_works
)
983 reipl_method
= REIPL_METHOD_CCW_DIAG
;
984 else if (MACHINE_IS_VM
)
985 reipl_method
= REIPL_METHOD_CCW_VM
;
987 reipl_method
= REIPL_METHOD_CCW_CIO
;
988 set_reipl_block_actual(reipl_block_ccw
);
991 if (diag308_set_works
)
992 reipl_method
= REIPL_METHOD_FCP_RW_DIAG
;
993 else if (MACHINE_IS_VM
)
994 reipl_method
= REIPL_METHOD_FCP_RO_VM
;
996 reipl_method
= REIPL_METHOD_FCP_RO_DIAG
;
997 set_reipl_block_actual(reipl_block_fcp
);
999 case IPL_TYPE_FCP_DUMP
:
1000 reipl_method
= REIPL_METHOD_FCP_DUMP
;
1003 if (diag308_set_works
)
1004 reipl_method
= REIPL_METHOD_NSS_DIAG
;
1006 reipl_method
= REIPL_METHOD_NSS
;
1007 set_reipl_block_actual(reipl_block_nss
);
1009 case IPL_TYPE_UNKNOWN
:
1010 reipl_method
= REIPL_METHOD_DEFAULT
;
1019 static ssize_t
reipl_type_show(struct kobject
*kobj
,
1020 struct kobj_attribute
*attr
, char *page
)
1022 return sprintf(page
, "%s\n", ipl_type_str(reipl_type
));
1025 static ssize_t
reipl_type_store(struct kobject
*kobj
,
1026 struct kobj_attribute
*attr
,
1027 const char *buf
, size_t len
)
1031 if (strncmp(buf
, IPL_CCW_STR
, strlen(IPL_CCW_STR
)) == 0)
1032 rc
= reipl_set_type(IPL_TYPE_CCW
);
1033 else if (strncmp(buf
, IPL_FCP_STR
, strlen(IPL_FCP_STR
)) == 0)
1034 rc
= reipl_set_type(IPL_TYPE_FCP
);
1035 else if (strncmp(buf
, IPL_NSS_STR
, strlen(IPL_NSS_STR
)) == 0)
1036 rc
= reipl_set_type(IPL_TYPE_NSS
);
1037 return (rc
!= 0) ? rc
: len
;
1040 static struct kobj_attribute reipl_type_attr
=
1041 __ATTR(reipl_type
, 0644, reipl_type_show
, reipl_type_store
);
1043 static struct kset
*reipl_kset
;
1044 static struct kset
*reipl_fcp_kset
;
1046 static void get_ipl_string(char *dst
, struct ipl_parameter_block
*ipb
,
1047 const enum ipl_method m
)
1049 char loadparm
[LOADPARM_LEN
+ 1] = {};
1050 char vmparm
[DIAG308_VMPARM_SIZE
+ 1] = {};
1051 char nss_name
[NSS_NAME_SIZE
+ 1] = {};
1054 reipl_get_ascii_loadparm(loadparm
, ipb
);
1055 reipl_get_ascii_nss_name(nss_name
, ipb
);
1056 reipl_get_ascii_vmparm(vmparm
, sizeof(vmparm
), ipb
);
1059 case REIPL_METHOD_CCW_VM
:
1060 pos
= sprintf(dst
, "IPL %X CLEAR", ipb
->ipl_info
.ccw
.devno
);
1062 case REIPL_METHOD_NSS
:
1063 pos
= sprintf(dst
, "IPL %s", nss_name
);
1068 if (strlen(loadparm
) > 0)
1069 pos
+= sprintf(dst
+ pos
, " LOADPARM '%s'", loadparm
);
1070 if (strlen(vmparm
) > 0)
1071 sprintf(dst
+ pos
, " PARM %s", vmparm
);
1074 static void __reipl_run(void *unused
)
1076 struct ccw_dev_id devid
;
1077 static char buf
[128];
1079 switch (reipl_method
) {
1080 case REIPL_METHOD_CCW_CIO
:
1081 devid
.ssid
= reipl_block_ccw
->ipl_info
.ccw
.ssid
;
1082 devid
.devno
= reipl_block_ccw
->ipl_info
.ccw
.devno
;
1083 reipl_ccw_dev(&devid
);
1085 case REIPL_METHOD_CCW_VM
:
1086 get_ipl_string(buf
, reipl_block_ccw
, REIPL_METHOD_CCW_VM
);
1087 __cpcmd(buf
, NULL
, 0, NULL
);
1089 case REIPL_METHOD_CCW_DIAG
:
1090 diag308(DIAG308_SET
, reipl_block_ccw
);
1091 if (MACHINE_IS_LPAR
)
1092 diag308(DIAG308_LOAD_NORMAL_DUMP
, NULL
);
1094 diag308(DIAG308_LOAD_CLEAR
, NULL
);
1096 case REIPL_METHOD_FCP_RW_DIAG
:
1097 diag308(DIAG308_SET
, reipl_block_fcp
);
1098 diag308(DIAG308_LOAD_CLEAR
, NULL
);
1100 case REIPL_METHOD_FCP_RO_DIAG
:
1101 diag308(DIAG308_LOAD_CLEAR
, NULL
);
1103 case REIPL_METHOD_FCP_RO_VM
:
1104 __cpcmd("IPL", NULL
, 0, NULL
);
1106 case REIPL_METHOD_NSS_DIAG
:
1107 diag308(DIAG308_SET
, reipl_block_nss
);
1108 diag308(DIAG308_LOAD_CLEAR
, NULL
);
1110 case REIPL_METHOD_NSS
:
1111 get_ipl_string(buf
, reipl_block_nss
, REIPL_METHOD_NSS
);
1112 __cpcmd(buf
, NULL
, 0, NULL
);
1114 case REIPL_METHOD_DEFAULT
:
1116 __cpcmd("IPL", NULL
, 0, NULL
);
1117 diag308(DIAG308_LOAD_CLEAR
, NULL
);
1119 case REIPL_METHOD_FCP_DUMP
:
1122 disabled_wait((unsigned long) __builtin_return_address(0));
1125 static void reipl_run(struct shutdown_trigger
*trigger
)
1127 smp_call_ipl_cpu(__reipl_run
, NULL
);
1130 static void reipl_block_ccw_init(struct ipl_parameter_block
*ipb
)
1132 ipb
->hdr
.len
= IPL_PARM_BLK_CCW_LEN
;
1133 ipb
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
1134 ipb
->hdr
.blk0_len
= IPL_PARM_BLK0_CCW_LEN
;
1135 ipb
->hdr
.pbt
= DIAG308_IPL_TYPE_CCW
;
1138 static void reipl_block_ccw_fill_parms(struct ipl_parameter_block
*ipb
)
1141 /* check if read scp info worked and set loadparm */
1142 if (sclp_ipl_info
.is_valid
)
1143 memcpy(ipb
->hdr
.loadparm
, &sclp_ipl_info
.loadparm
, LOADPARM_LEN
);
1145 /* read scp info failed: set empty loadparm (EBCDIC blanks) */
1146 memset(ipb
->hdr
.loadparm
, 0x40, LOADPARM_LEN
);
1147 ipb
->hdr
.flags
= DIAG308_FLAGS_LP_VALID
;
1150 if (MACHINE_IS_VM
&& diag308_set_works
&&
1151 (ipl_block
.ipl_info
.ccw
.vm_flags
& DIAG308_VM_FLAGS_VP_VALID
)) {
1153 ipb
->ipl_info
.ccw
.vm_flags
|= DIAG308_VM_FLAGS_VP_VALID
;
1154 ipb
->ipl_info
.ccw
.vm_parm_len
=
1155 ipl_block
.ipl_info
.ccw
.vm_parm_len
;
1156 memcpy(ipb
->ipl_info
.ccw
.vm_parm
,
1157 ipl_block
.ipl_info
.ccw
.vm_parm
, DIAG308_VMPARM_SIZE
);
1161 static int __init
reipl_nss_init(void)
1168 reipl_block_nss
= (void *) get_zeroed_page(GFP_KERNEL
);
1169 if (!reipl_block_nss
)
1172 if (!diag308_set_works
)
1173 sys_reipl_nss_vmparm_attr
.attr
.mode
= S_IRUGO
;
1175 rc
= sysfs_create_group(&reipl_kset
->kobj
, &reipl_nss_attr_group
);
1179 reipl_block_ccw_init(reipl_block_nss
);
1180 if (ipl_info
.type
== IPL_TYPE_NSS
) {
1181 memset(reipl_block_nss
->ipl_info
.ccw
.nss_name
,
1182 ' ', NSS_NAME_SIZE
);
1183 memcpy(reipl_block_nss
->ipl_info
.ccw
.nss_name
,
1184 kernel_nss_name
, strlen(kernel_nss_name
));
1185 ASCEBC(reipl_block_nss
->ipl_info
.ccw
.nss_name
, NSS_NAME_SIZE
);
1186 reipl_block_nss
->ipl_info
.ccw
.vm_flags
|=
1187 DIAG308_VM_FLAGS_NSS_VALID
;
1189 reipl_block_ccw_fill_parms(reipl_block_nss
);
1192 reipl_capabilities
|= IPL_TYPE_NSS
;
1196 static int __init
reipl_ccw_init(void)
1200 reipl_block_ccw
= (void *) get_zeroed_page(GFP_KERNEL
);
1201 if (!reipl_block_ccw
)
1204 if (MACHINE_IS_VM
) {
1205 if (!diag308_set_works
)
1206 sys_reipl_ccw_vmparm_attr
.attr
.mode
= S_IRUGO
;
1207 rc
= sysfs_create_group(&reipl_kset
->kobj
,
1208 &reipl_ccw_attr_group_vm
);
1210 if(!diag308_set_works
)
1211 sys_reipl_ccw_loadparm_attr
.attr
.mode
= S_IRUGO
;
1212 rc
= sysfs_create_group(&reipl_kset
->kobj
,
1213 &reipl_ccw_attr_group_lpar
);
1218 reipl_block_ccw_init(reipl_block_ccw
);
1219 if (ipl_info
.type
== IPL_TYPE_CCW
) {
1220 reipl_block_ccw
->ipl_info
.ccw
.ssid
= ipl_ssid
;
1221 reipl_block_ccw
->ipl_info
.ccw
.devno
= ipl_devno
;
1222 reipl_block_ccw_fill_parms(reipl_block_ccw
);
1225 reipl_capabilities
|= IPL_TYPE_CCW
;
1229 static int __init
reipl_fcp_init(void)
1233 if (!diag308_set_works
) {
1234 if (ipl_info
.type
== IPL_TYPE_FCP
) {
1235 make_attrs_ro(reipl_fcp_attrs
);
1236 sys_reipl_fcp_scp_data_attr
.attr
.mode
= S_IRUGO
;
1241 reipl_block_fcp
= (void *) get_zeroed_page(GFP_KERNEL
);
1242 if (!reipl_block_fcp
)
1245 /* sysfs: create fcp kset for mixing attr group and bin attrs */
1246 reipl_fcp_kset
= kset_create_and_add(IPL_FCP_STR
, NULL
,
1248 if (!reipl_fcp_kset
) {
1249 free_page((unsigned long) reipl_block_fcp
);
1253 rc
= sysfs_create_group(&reipl_fcp_kset
->kobj
, &reipl_fcp_attr_group
);
1255 kset_unregister(reipl_fcp_kset
);
1256 free_page((unsigned long) reipl_block_fcp
);
1260 if (ipl_info
.type
== IPL_TYPE_FCP
) {
1261 memcpy(reipl_block_fcp
, IPL_PARMBLOCK_START
, PAGE_SIZE
);
1263 * Fix loadparm: There are systems where the (SCSI) LOADPARM
1264 * is invalid in the SCSI IPL parameter block, so take it
1265 * always from sclp_ipl_info.
1267 memcpy(reipl_block_fcp
->hdr
.loadparm
, sclp_ipl_info
.loadparm
,
1270 reipl_block_fcp
->hdr
.len
= IPL_PARM_BLK_FCP_LEN
;
1271 reipl_block_fcp
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
1272 reipl_block_fcp
->hdr
.blk0_len
= IPL_PARM_BLK0_FCP_LEN
;
1273 reipl_block_fcp
->hdr
.pbt
= DIAG308_IPL_TYPE_FCP
;
1274 reipl_block_fcp
->ipl_info
.fcp
.opt
= DIAG308_IPL_OPT_IPL
;
1276 reipl_capabilities
|= IPL_TYPE_FCP
;
1280 static int __init
reipl_type_init(void)
1282 enum ipl_type reipl_type
= ipl_info
.type
;
1283 struct ipl_parameter_block
*reipl_block
;
1286 reipl_block
= os_info_old_entry(OS_INFO_REIPL_BLOCK
, &size
);
1290 * If we have an OS info reipl block, this will be used
1292 if (reipl_block
->hdr
.pbt
== DIAG308_IPL_TYPE_FCP
) {
1293 memcpy(reipl_block_fcp
, reipl_block
, size
);
1294 reipl_type
= IPL_TYPE_FCP
;
1295 } else if (reipl_block
->hdr
.pbt
== DIAG308_IPL_TYPE_CCW
) {
1296 memcpy(reipl_block_ccw
, reipl_block
, size
);
1297 reipl_type
= IPL_TYPE_CCW
;
1300 return reipl_set_type(reipl_type
);
1303 static int __init
reipl_init(void)
1307 reipl_kset
= kset_create_and_add("reipl", NULL
, firmware_kobj
);
1310 rc
= sysfs_create_file(&reipl_kset
->kobj
, &reipl_type_attr
.attr
);
1312 kset_unregister(reipl_kset
);
1315 rc
= reipl_ccw_init();
1318 rc
= reipl_fcp_init();
1321 rc
= reipl_nss_init();
1324 return reipl_type_init();
1327 static struct shutdown_action __refdata reipl_action
= {
1328 .name
= SHUTDOWN_ACTION_REIPL_STR
,
1334 * dump shutdown action: Dump Linux on shutdown.
1337 /* FCP dump device attributes */
1339 DEFINE_IPL_ATTR_RW(dump_fcp
, wwpn
, "0x%016llx\n", "%llx\n",
1340 dump_block_fcp
->ipl_info
.fcp
.wwpn
);
1341 DEFINE_IPL_ATTR_RW(dump_fcp
, lun
, "0x%016llx\n", "%llx\n",
1342 dump_block_fcp
->ipl_info
.fcp
.lun
);
1343 DEFINE_IPL_ATTR_RW(dump_fcp
, bootprog
, "%lld\n", "%lld\n",
1344 dump_block_fcp
->ipl_info
.fcp
.bootprog
);
1345 DEFINE_IPL_ATTR_RW(dump_fcp
, br_lba
, "%lld\n", "%lld\n",
1346 dump_block_fcp
->ipl_info
.fcp
.br_lba
);
1347 DEFINE_IPL_ATTR_RW(dump_fcp
, device
, "0.0.%04llx\n", "0.0.%llx\n",
1348 dump_block_fcp
->ipl_info
.fcp
.devno
);
1350 static struct attribute
*dump_fcp_attrs
[] = {
1351 &sys_dump_fcp_device_attr
.attr
,
1352 &sys_dump_fcp_wwpn_attr
.attr
,
1353 &sys_dump_fcp_lun_attr
.attr
,
1354 &sys_dump_fcp_bootprog_attr
.attr
,
1355 &sys_dump_fcp_br_lba_attr
.attr
,
1359 static struct attribute_group dump_fcp_attr_group
= {
1360 .name
= IPL_FCP_STR
,
1361 .attrs
= dump_fcp_attrs
,
1364 /* CCW dump device attributes */
1365 DEFINE_IPL_CCW_ATTR_RW(dump_ccw
, device
, dump_block_ccw
->ipl_info
.ccw
);
1367 static struct attribute
*dump_ccw_attrs
[] = {
1368 &sys_dump_ccw_device_attr
.attr
,
1372 static struct attribute_group dump_ccw_attr_group
= {
1373 .name
= IPL_CCW_STR
,
1374 .attrs
= dump_ccw_attrs
,
1379 static int dump_set_type(enum dump_type type
)
1381 if (!(dump_capabilities
& type
))
1385 if (diag308_set_works
)
1386 dump_method
= DUMP_METHOD_CCW_DIAG
;
1387 else if (MACHINE_IS_VM
)
1388 dump_method
= DUMP_METHOD_CCW_VM
;
1390 dump_method
= DUMP_METHOD_CCW_CIO
;
1393 dump_method
= DUMP_METHOD_FCP_DIAG
;
1396 dump_method
= DUMP_METHOD_NONE
;
1402 static ssize_t
dump_type_show(struct kobject
*kobj
,
1403 struct kobj_attribute
*attr
, char *page
)
1405 return sprintf(page
, "%s\n", dump_type_str(dump_type
));
1408 static ssize_t
dump_type_store(struct kobject
*kobj
,
1409 struct kobj_attribute
*attr
,
1410 const char *buf
, size_t len
)
1414 if (strncmp(buf
, DUMP_NONE_STR
, strlen(DUMP_NONE_STR
)) == 0)
1415 rc
= dump_set_type(DUMP_TYPE_NONE
);
1416 else if (strncmp(buf
, DUMP_CCW_STR
, strlen(DUMP_CCW_STR
)) == 0)
1417 rc
= dump_set_type(DUMP_TYPE_CCW
);
1418 else if (strncmp(buf
, DUMP_FCP_STR
, strlen(DUMP_FCP_STR
)) == 0)
1419 rc
= dump_set_type(DUMP_TYPE_FCP
);
1420 return (rc
!= 0) ? rc
: len
;
1423 static struct kobj_attribute dump_type_attr
=
1424 __ATTR(dump_type
, 0644, dump_type_show
, dump_type_store
);
1426 static struct kset
*dump_kset
;
1428 static void diag308_dump(void *dump_block
)
1430 diag308(DIAG308_SET
, dump_block
);
1432 if (diag308(DIAG308_LOAD_NORMAL_DUMP
, NULL
) != 0x302)
1434 udelay_simple(USEC_PER_SEC
);
1438 static void __dump_run(void *unused
)
1440 struct ccw_dev_id devid
;
1441 static char buf
[100];
1443 switch (dump_method
) {
1444 case DUMP_METHOD_CCW_CIO
:
1445 devid
.ssid
= dump_block_ccw
->ipl_info
.ccw
.ssid
;
1446 devid
.devno
= dump_block_ccw
->ipl_info
.ccw
.devno
;
1447 reipl_ccw_dev(&devid
);
1449 case DUMP_METHOD_CCW_VM
:
1450 sprintf(buf
, "STORE STATUS");
1451 __cpcmd(buf
, NULL
, 0, NULL
);
1452 sprintf(buf
, "IPL %X", dump_block_ccw
->ipl_info
.ccw
.devno
);
1453 __cpcmd(buf
, NULL
, 0, NULL
);
1455 case DUMP_METHOD_CCW_DIAG
:
1456 diag308_dump(dump_block_ccw
);
1458 case DUMP_METHOD_FCP_DIAG
:
1459 diag308_dump(dump_block_fcp
);
1466 static void dump_run(struct shutdown_trigger
*trigger
)
1468 if (dump_method
== DUMP_METHOD_NONE
)
1471 smp_call_ipl_cpu(__dump_run
, NULL
);
1474 static int __init
dump_ccw_init(void)
1478 dump_block_ccw
= (void *) get_zeroed_page(GFP_KERNEL
);
1479 if (!dump_block_ccw
)
1481 rc
= sysfs_create_group(&dump_kset
->kobj
, &dump_ccw_attr_group
);
1483 free_page((unsigned long)dump_block_ccw
);
1486 dump_block_ccw
->hdr
.len
= IPL_PARM_BLK_CCW_LEN
;
1487 dump_block_ccw
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
1488 dump_block_ccw
->hdr
.blk0_len
= IPL_PARM_BLK0_CCW_LEN
;
1489 dump_block_ccw
->hdr
.pbt
= DIAG308_IPL_TYPE_CCW
;
1490 dump_capabilities
|= DUMP_TYPE_CCW
;
1494 static int __init
dump_fcp_init(void)
1498 if (!sclp_ipl_info
.has_dump
)
1499 return 0; /* LDIPL DUMP is not installed */
1500 if (!diag308_set_works
)
1502 dump_block_fcp
= (void *) get_zeroed_page(GFP_KERNEL
);
1503 if (!dump_block_fcp
)
1505 rc
= sysfs_create_group(&dump_kset
->kobj
, &dump_fcp_attr_group
);
1507 free_page((unsigned long)dump_block_fcp
);
1510 dump_block_fcp
->hdr
.len
= IPL_PARM_BLK_FCP_LEN
;
1511 dump_block_fcp
->hdr
.version
= IPL_PARM_BLOCK_VERSION
;
1512 dump_block_fcp
->hdr
.blk0_len
= IPL_PARM_BLK0_FCP_LEN
;
1513 dump_block_fcp
->hdr
.pbt
= DIAG308_IPL_TYPE_FCP
;
1514 dump_block_fcp
->ipl_info
.fcp
.opt
= DIAG308_IPL_OPT_DUMP
;
1515 dump_capabilities
|= DUMP_TYPE_FCP
;
1519 static int __init
dump_init(void)
1523 dump_kset
= kset_create_and_add("dump", NULL
, firmware_kobj
);
1526 rc
= sysfs_create_file(&dump_kset
->kobj
, &dump_type_attr
.attr
);
1528 kset_unregister(dump_kset
);
1531 rc
= dump_ccw_init();
1534 rc
= dump_fcp_init();
1537 dump_set_type(DUMP_TYPE_NONE
);
1541 static struct shutdown_action __refdata dump_action
= {
1542 .name
= SHUTDOWN_ACTION_DUMP_STR
,
1547 static void dump_reipl_run(struct shutdown_trigger
*trigger
)
1549 unsigned long ipib
= (unsigned long) reipl_block_actual
;
1552 csum
= (__force
unsigned int)
1553 csum_partial(reipl_block_actual
, reipl_block_actual
->hdr
.len
, 0);
1554 mem_assign_absolute(S390_lowcore
.ipib
, ipib
);
1555 mem_assign_absolute(S390_lowcore
.ipib_checksum
, csum
);
1559 static int __init
dump_reipl_init(void)
1561 if (!diag308_set_works
)
1567 static struct shutdown_action __refdata dump_reipl_action
= {
1568 .name
= SHUTDOWN_ACTION_DUMP_REIPL_STR
,
1569 .fn
= dump_reipl_run
,
1570 .init
= dump_reipl_init
,
1574 * vmcmd shutdown action: Trigger vm command on shutdown.
1577 static char vmcmd_on_reboot
[128];
1578 static char vmcmd_on_panic
[128];
1579 static char vmcmd_on_halt
[128];
1580 static char vmcmd_on_poff
[128];
1581 static char vmcmd_on_restart
[128];
1583 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_reboot
, "%s\n", "%s\n", vmcmd_on_reboot
);
1584 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_panic
, "%s\n", "%s\n", vmcmd_on_panic
);
1585 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_halt
, "%s\n", "%s\n", vmcmd_on_halt
);
1586 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_poff
, "%s\n", "%s\n", vmcmd_on_poff
);
1587 DEFINE_IPL_ATTR_STR_RW(vmcmd
, on_restart
, "%s\n", "%s\n", vmcmd_on_restart
);
1589 static struct attribute
*vmcmd_attrs
[] = {
1590 &sys_vmcmd_on_reboot_attr
.attr
,
1591 &sys_vmcmd_on_panic_attr
.attr
,
1592 &sys_vmcmd_on_halt_attr
.attr
,
1593 &sys_vmcmd_on_poff_attr
.attr
,
1594 &sys_vmcmd_on_restart_attr
.attr
,
1598 static struct attribute_group vmcmd_attr_group
= {
1599 .attrs
= vmcmd_attrs
,
1602 static struct kset
*vmcmd_kset
;
1604 static void vmcmd_run(struct shutdown_trigger
*trigger
)
1608 if (strcmp(trigger
->name
, ON_REIPL_STR
) == 0)
1609 cmd
= vmcmd_on_reboot
;
1610 else if (strcmp(trigger
->name
, ON_PANIC_STR
) == 0)
1611 cmd
= vmcmd_on_panic
;
1612 else if (strcmp(trigger
->name
, ON_HALT_STR
) == 0)
1613 cmd
= vmcmd_on_halt
;
1614 else if (strcmp(trigger
->name
, ON_POFF_STR
) == 0)
1615 cmd
= vmcmd_on_poff
;
1616 else if (strcmp(trigger
->name
, ON_RESTART_STR
) == 0)
1617 cmd
= vmcmd_on_restart
;
1621 if (strlen(cmd
) == 0)
1623 __cpcmd(cmd
, NULL
, 0, NULL
);
1626 static int vmcmd_init(void)
1630 vmcmd_kset
= kset_create_and_add("vmcmd", NULL
, firmware_kobj
);
1633 return sysfs_create_group(&vmcmd_kset
->kobj
, &vmcmd_attr_group
);
1636 static struct shutdown_action vmcmd_action
= {SHUTDOWN_ACTION_VMCMD_STR
,
1637 vmcmd_run
, vmcmd_init
};
1640 * stop shutdown action: Stop Linux on shutdown.
1643 static void stop_run(struct shutdown_trigger
*trigger
)
1645 if (strcmp(trigger
->name
, ON_PANIC_STR
) == 0 ||
1646 strcmp(trigger
->name
, ON_RESTART_STR
) == 0)
1647 disabled_wait((unsigned long) __builtin_return_address(0));
1651 static struct shutdown_action stop_action
= {SHUTDOWN_ACTION_STOP_STR
,
1656 static struct shutdown_action
*shutdown_actions_list
[] = {
1657 &ipl_action
, &reipl_action
, &dump_reipl_action
, &dump_action
,
1658 &vmcmd_action
, &stop_action
};
1659 #define SHUTDOWN_ACTIONS_COUNT (sizeof(shutdown_actions_list) / sizeof(void *))
1665 static struct kset
*shutdown_actions_kset
;
1667 static int set_trigger(const char *buf
, struct shutdown_trigger
*trigger
,
1672 for (i
= 0; i
< SHUTDOWN_ACTIONS_COUNT
; i
++) {
1673 if (sysfs_streq(buf
, shutdown_actions_list
[i
]->name
)) {
1674 if (shutdown_actions_list
[i
]->init_rc
) {
1675 return shutdown_actions_list
[i
]->init_rc
;
1677 trigger
->action
= shutdown_actions_list
[i
];
1687 static struct shutdown_trigger on_reboot_trigger
= {ON_REIPL_STR
,
1690 static ssize_t
on_reboot_show(struct kobject
*kobj
,
1691 struct kobj_attribute
*attr
, char *page
)
1693 return sprintf(page
, "%s\n", on_reboot_trigger
.action
->name
);
1696 static ssize_t
on_reboot_store(struct kobject
*kobj
,
1697 struct kobj_attribute
*attr
,
1698 const char *buf
, size_t len
)
1700 return set_trigger(buf
, &on_reboot_trigger
, len
);
1702 static struct kobj_attribute on_reboot_attr
= __ATTR_RW(on_reboot
);
1704 static void do_machine_restart(char *__unused
)
1707 on_reboot_trigger
.action
->fn(&on_reboot_trigger
);
1710 void (*_machine_restart
)(char *command
) = do_machine_restart
;
1714 static struct shutdown_trigger on_panic_trigger
= {ON_PANIC_STR
, &stop_action
};
1716 static ssize_t
on_panic_show(struct kobject
*kobj
,
1717 struct kobj_attribute
*attr
, char *page
)
1719 return sprintf(page
, "%s\n", on_panic_trigger
.action
->name
);
1722 static ssize_t
on_panic_store(struct kobject
*kobj
,
1723 struct kobj_attribute
*attr
,
1724 const char *buf
, size_t len
)
1726 return set_trigger(buf
, &on_panic_trigger
, len
);
1728 static struct kobj_attribute on_panic_attr
= __ATTR_RW(on_panic
);
1730 static void do_panic(void)
1733 on_panic_trigger
.action
->fn(&on_panic_trigger
);
1734 stop_run(&on_panic_trigger
);
1739 static struct shutdown_trigger on_restart_trigger
= {ON_RESTART_STR
,
1742 static ssize_t
on_restart_show(struct kobject
*kobj
,
1743 struct kobj_attribute
*attr
, char *page
)
1745 return sprintf(page
, "%s\n", on_restart_trigger
.action
->name
);
1748 static ssize_t
on_restart_store(struct kobject
*kobj
,
1749 struct kobj_attribute
*attr
,
1750 const char *buf
, size_t len
)
1752 return set_trigger(buf
, &on_restart_trigger
, len
);
1754 static struct kobj_attribute on_restart_attr
= __ATTR_RW(on_restart
);
1756 static void __do_restart(void *ignore
)
1758 __arch_local_irq_stosm(0x04); /* enable DAT */
1760 #ifdef CONFIG_CRASH_DUMP
1763 on_restart_trigger
.action
->fn(&on_restart_trigger
);
1764 stop_run(&on_restart_trigger
);
1767 void do_restart(void)
1772 smp_call_online_cpu(__do_restart
, NULL
);
1777 static struct shutdown_trigger on_halt_trigger
= {ON_HALT_STR
, &stop_action
};
1779 static ssize_t
on_halt_show(struct kobject
*kobj
,
1780 struct kobj_attribute
*attr
, char *page
)
1782 return sprintf(page
, "%s\n", on_halt_trigger
.action
->name
);
1785 static ssize_t
on_halt_store(struct kobject
*kobj
,
1786 struct kobj_attribute
*attr
,
1787 const char *buf
, size_t len
)
1789 return set_trigger(buf
, &on_halt_trigger
, len
);
1791 static struct kobj_attribute on_halt_attr
= __ATTR_RW(on_halt
);
1793 static void do_machine_halt(void)
1796 on_halt_trigger
.action
->fn(&on_halt_trigger
);
1797 stop_run(&on_halt_trigger
);
1799 void (*_machine_halt
)(void) = do_machine_halt
;
1803 static struct shutdown_trigger on_poff_trigger
= {ON_POFF_STR
, &stop_action
};
1805 static ssize_t
on_poff_show(struct kobject
*kobj
,
1806 struct kobj_attribute
*attr
, char *page
)
1808 return sprintf(page
, "%s\n", on_poff_trigger
.action
->name
);
1811 static ssize_t
on_poff_store(struct kobject
*kobj
,
1812 struct kobj_attribute
*attr
,
1813 const char *buf
, size_t len
)
1815 return set_trigger(buf
, &on_poff_trigger
, len
);
1817 static struct kobj_attribute on_poff_attr
= __ATTR_RW(on_poff
);
1819 static void do_machine_power_off(void)
1822 on_poff_trigger
.action
->fn(&on_poff_trigger
);
1823 stop_run(&on_poff_trigger
);
1825 void (*_machine_power_off
)(void) = do_machine_power_off
;
1827 static struct attribute
*shutdown_action_attrs
[] = {
1828 &on_restart_attr
.attr
,
1829 &on_reboot_attr
.attr
,
1830 &on_panic_attr
.attr
,
1836 static struct attribute_group shutdown_action_attr_group
= {
1837 .attrs
= shutdown_action_attrs
,
1840 static void __init
shutdown_triggers_init(void)
1842 shutdown_actions_kset
= kset_create_and_add("shutdown_actions", NULL
,
1844 if (!shutdown_actions_kset
)
1846 if (sysfs_create_group(&shutdown_actions_kset
->kobj
,
1847 &shutdown_action_attr_group
))
1851 panic("shutdown_triggers_init failed\n");
1854 static void __init
shutdown_actions_init(void)
1858 for (i
= 0; i
< SHUTDOWN_ACTIONS_COUNT
; i
++) {
1859 if (!shutdown_actions_list
[i
]->init
)
1861 shutdown_actions_list
[i
]->init_rc
=
1862 shutdown_actions_list
[i
]->init();
1866 static int __init
s390_ipl_init(void)
1868 char str
[8] = {0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40};
1870 sclp_early_get_ipl_info(&sclp_ipl_info
);
1872 * Fix loadparm: There are systems where the (SCSI) LOADPARM
1873 * returned by read SCP info is invalid (contains EBCDIC blanks)
1874 * when the system has been booted via diag308. In that case we use
1875 * the value from diag308, if available.
1877 * There are also systems where diag308 store does not work in
1878 * case the system is booted from HMC. Fortunately in this case
1879 * READ SCP info provides the correct value.
1881 if (memcmp(sclp_ipl_info
.loadparm
, str
, sizeof(str
)) == 0 &&
1883 memcpy(sclp_ipl_info
.loadparm
, ipl_block
.hdr
.loadparm
,
1885 shutdown_actions_init();
1886 shutdown_triggers_init();
1890 __initcall(s390_ipl_init
);
1892 static void __init
strncpy_skip_quote(char *dst
, char *src
, int n
)
1897 for (sx
= 0; src
[sx
] != 0; sx
++) {
1900 dst
[dx
++] = src
[sx
];
1906 static int __init
vmcmd_on_reboot_setup(char *str
)
1910 strncpy_skip_quote(vmcmd_on_reboot
, str
, 127);
1911 vmcmd_on_reboot
[127] = 0;
1912 on_reboot_trigger
.action
= &vmcmd_action
;
1915 __setup("vmreboot=", vmcmd_on_reboot_setup
);
1917 static int __init
vmcmd_on_panic_setup(char *str
)
1921 strncpy_skip_quote(vmcmd_on_panic
, str
, 127);
1922 vmcmd_on_panic
[127] = 0;
1923 on_panic_trigger
.action
= &vmcmd_action
;
1926 __setup("vmpanic=", vmcmd_on_panic_setup
);
1928 static int __init
vmcmd_on_halt_setup(char *str
)
1932 strncpy_skip_quote(vmcmd_on_halt
, str
, 127);
1933 vmcmd_on_halt
[127] = 0;
1934 on_halt_trigger
.action
= &vmcmd_action
;
1937 __setup("vmhalt=", vmcmd_on_halt_setup
);
1939 static int __init
vmcmd_on_poff_setup(char *str
)
1943 strncpy_skip_quote(vmcmd_on_poff
, str
, 127);
1944 vmcmd_on_poff
[127] = 0;
1945 on_poff_trigger
.action
= &vmcmd_action
;
1948 __setup("vmpoff=", vmcmd_on_poff_setup
);
1950 static int on_panic_notify(struct notifier_block
*self
,
1951 unsigned long event
, void *data
)
1957 static struct notifier_block on_panic_nb
= {
1958 .notifier_call
= on_panic_notify
,
1959 .priority
= INT_MIN
,
1962 void __init
setup_ipl(void)
1964 ipl_info
.type
= get_ipl_type();
1965 switch (ipl_info
.type
) {
1967 ipl_info
.data
.ccw
.dev_id
.ssid
= ipl_ssid
;
1968 ipl_info
.data
.ccw
.dev_id
.devno
= ipl_devno
;
1971 case IPL_TYPE_FCP_DUMP
:
1972 ipl_info
.data
.fcp
.dev_id
.ssid
= 0;
1973 ipl_info
.data
.fcp
.dev_id
.devno
=
1974 IPL_PARMBLOCK_START
->ipl_info
.fcp
.devno
;
1975 ipl_info
.data
.fcp
.wwpn
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.wwpn
;
1976 ipl_info
.data
.fcp
.lun
= IPL_PARMBLOCK_START
->ipl_info
.fcp
.lun
;
1979 strncpy(ipl_info
.data
.nss
.name
, kernel_nss_name
,
1980 sizeof(ipl_info
.data
.nss
.name
));
1982 case IPL_TYPE_UNKNOWN
:
1983 /* We have no info to copy */
1986 atomic_notifier_chain_register(&panic_notifier_list
, &on_panic_nb
);
1989 void __init
ipl_update_parameters(void)
1993 rc
= diag308(DIAG308_STORE
, &ipl_block
);
1994 if ((rc
== DIAG308_RC_OK
) || (rc
== DIAG308_RC_NOCONFIG
))
1995 diag308_set_works
= 1;
1998 void __init
ipl_verify_parameters(void)
2000 struct cio_iplinfo iplinfo
;
2002 if (cio_get_iplinfo(&iplinfo
))
2005 ipl_ssid
= iplinfo
.ssid
;
2006 ipl_devno
= iplinfo
.devno
;
2007 ipl_flags
|= IPL_DEVNO_VALID
;
2008 if (!iplinfo
.is_qdio
)
2010 ipl_flags
|= IPL_PARMBLOCK_VALID
;
2013 static LIST_HEAD(rcall
);
2014 static DEFINE_MUTEX(rcall_mutex
);
2016 void register_reset_call(struct reset_call
*reset
)
2018 mutex_lock(&rcall_mutex
);
2019 list_add(&reset
->list
, &rcall
);
2020 mutex_unlock(&rcall_mutex
);
2022 EXPORT_SYMBOL_GPL(register_reset_call
);
2024 void unregister_reset_call(struct reset_call
*reset
)
2026 mutex_lock(&rcall_mutex
);
2027 list_del(&reset
->list
);
2028 mutex_unlock(&rcall_mutex
);
2030 EXPORT_SYMBOL_GPL(unregister_reset_call
);
2032 static void do_reset_calls(void)
2034 struct reset_call
*reset
;
2036 if (diag308_set_works
) {
2040 list_for_each_entry(reset
, &rcall
, list
)
2044 void s390_reset_system(void)
2048 lc
= (struct lowcore
*)(unsigned long) store_prefix();
2050 /* Stack for interrupt/machine check handler */
2051 lc
->panic_stack
= S390_lowcore
.panic_stack
;
2053 /* Disable prefixing */
2056 /* Disable lowcore protection */
2057 __ctl_clear_bit(0,28);
2059 /* Set new machine check handler */
2060 S390_lowcore
.mcck_new_psw
.mask
= PSW_KERNEL_BITS
| PSW_MASK_DAT
;
2061 S390_lowcore
.mcck_new_psw
.addr
=
2062 (unsigned long) s390_base_mcck_handler
;
2064 /* Set new program check handler */
2065 S390_lowcore
.program_new_psw
.mask
= PSW_KERNEL_BITS
| PSW_MASK_DAT
;
2066 S390_lowcore
.program_new_psw
.addr
=
2067 (unsigned long) s390_base_pgm_handler
;