blob: e62a555557ee459df20a4b370bce690a75158820 [file] [log] [blame]
Heiko Carstensab14de62007-02-05 21:18:37 +01001/*
Heiko Carstensab14de62007-02-05 21:18:37 +01002 * Copyright IBM Corp. 2007
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
4 */
5
6#ifndef _ASM_S390_SCLP_H
7#define _ASM_S390_SCLP_H
8
9#include <linux/types.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020010#include <asm/chpid.h>
Heiko Carstensab14de62007-02-05 21:18:37 +010011
Peter Oberparleitere5854a52007-04-27 16:01:31 +020012#define SCLP_CHP_INFO_MASK_SIZE 32
13
14struct sclp_chp_info {
15 u8 recognized[SCLP_CHP_INFO_MASK_SIZE];
16 u8 standby[SCLP_CHP_INFO_MASK_SIZE];
17 u8 configured[SCLP_CHP_INFO_MASK_SIZE];
18};
19
Heiko Carstens05dd2532007-07-10 11:24:09 +020020#define LOADPARM_LEN 8
21
22struct sclp_ipl_info {
23 int is_valid;
24 int has_dump;
25 char loadparm[LOADPARM_LEN];
26};
27
Heiko Carstens08d07962008-01-26 14:10:56 +010028struct sclp_cpu_entry {
29 u8 address;
30 u8 reserved0[13];
31 u8 type;
32 u8 reserved1;
33} __attribute__((packed));
34
35struct sclp_cpu_info {
36 unsigned int configured;
37 unsigned int standby;
38 unsigned int combined;
39 int has_cpu_type;
40 struct sclp_cpu_entry cpu[255];
41};
42
43int sclp_get_cpu_info(struct sclp_cpu_info *info);
44int sclp_cpu_configure(u8 cpu);
45int sclp_cpu_deconfigure(u8 cpu);
Heiko Carstens83119ad2007-07-10 11:24:10 +020046void sclp_facilities_detect(void);
Heiko Carstens23d17422008-07-14 09:59:21 +020047unsigned long long sclp_get_rnmax(void);
48unsigned long long sclp_get_rzm(void);
Christian Borntraeger1526bf92012-05-15 14:15:25 +020049u8 sclp_get_fac85(void);
Heiko Carstens05dd2532007-07-10 11:24:09 +020050int sclp_sdias_blk_count(void);
51int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
52int sclp_chp_configure(struct chp_id chpid);
53int sclp_chp_deconfigure(struct chp_id chpid);
54int sclp_chp_read_info(struct sclp_chp_info *info);
55void sclp_get_ipl_info(struct sclp_ipl_info *info);
Heinz Graalfscd183452012-06-11 16:06:59 +020056bool sclp_has_linemode(void);
57bool sclp_has_vt220(void);
Heiko Carstensab14de62007-02-05 21:18:37 +010058
59#endif /* _ASM_S390_SCLP_H */