blob: cb9faf1ea5cfd5db60a602e45af058bceddc06f2 [file] [log] [blame]
Heiko Carstensab14de62007-02-05 21:18:37 +01001/*
2 * include/asm-s390/sclp.h
3 *
4 * Copyright IBM Corp. 2007
5 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
6 */
7
8#ifndef _ASM_S390_SCLP_H
9#define _ASM_S390_SCLP_H
10
11#include <linux/types.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020012#include <asm/chpid.h>
Heiko Carstensab14de62007-02-05 21:18:37 +010013
Peter Oberparleitere5854a52007-04-27 16:01:31 +020014#define SCLP_CHP_INFO_MASK_SIZE 32
15
16struct sclp_chp_info {
17 u8 recognized[SCLP_CHP_INFO_MASK_SIZE];
18 u8 standby[SCLP_CHP_INFO_MASK_SIZE];
19 u8 configured[SCLP_CHP_INFO_MASK_SIZE];
20};
21
Heiko Carstens05dd2532007-07-10 11:24:09 +020022#define LOADPARM_LEN 8
23
24struct sclp_ipl_info {
25 int is_valid;
26 int has_dump;
27 char loadparm[LOADPARM_LEN];
28};
29
30void sclp_readinfo_early(void);
Heiko Carstens83119ad2007-07-10 11:24:10 +020031void sclp_facilities_detect(void);
Heiko Carstens05dd2532007-07-10 11:24:09 +020032unsigned long long sclp_memory_detect(void);
33int sclp_sdias_blk_count(void);
34int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
35int sclp_chp_configure(struct chp_id chpid);
36int sclp_chp_deconfigure(struct chp_id chpid);
37int sclp_chp_read_info(struct sclp_chp_info *info);
38void sclp_get_ipl_info(struct sclp_ipl_info *info);
Heiko Carstensab14de62007-02-05 21:18:37 +010039
40#endif /* _ASM_S390_SCLP_H */