s390/sclp: detect intervention bypass facility
[cascardo/linux.git] / arch / s390 / include / asm / sclp.h
1 /*
2  *    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>
10 #include <asm/chpid.h>
11 #include <asm/cpu.h>
12
13 #define SCLP_CHP_INFO_MASK_SIZE         32
14 #define SCLP_MAX_CORES                  256
15
16 struct 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
22 #define LOADPARM_LEN 8
23
24 struct sclp_ipl_info {
25         int is_valid;
26         int has_dump;
27         char loadparm[LOADPARM_LEN];
28 };
29
30 struct sclp_core_entry {
31         u8 core_id;
32         u8 reserved0;
33         u8 : 4;
34         u8 sief2 : 1;
35         u8 : 3;
36         u8 : 2;
37         u8 gpere : 1;
38         u8 siif : 1;
39         u8 sigpif : 1;
40         u8 : 3;
41         u8 reserved2[3];
42         u8 : 2;
43         u8 ib : 1;
44         u8 : 5;
45         u8 reserved3[6];
46         u8 type;
47         u8 reserved1;
48 } __attribute__((packed));
49
50 struct sclp_core_info {
51         unsigned int configured;
52         unsigned int standby;
53         unsigned int combined;
54         struct sclp_core_entry core[SCLP_MAX_CORES];
55 };
56
57 struct sclp_info {
58         unsigned char has_linemode : 1;
59         unsigned char has_vt220 : 1;
60         unsigned char has_siif : 1;
61         unsigned char has_sigpif : 1;
62         unsigned char has_core_type : 1;
63         unsigned char has_sprp : 1;
64         unsigned char has_hvs : 1;
65         unsigned char has_esca : 1;
66         unsigned char has_sief2 : 1;
67         unsigned char has_64bscao : 1;
68         unsigned char has_gpere : 1;
69         unsigned char has_cmma : 1;
70         unsigned char has_gsls : 1;
71         unsigned char has_ib : 1;
72         unsigned int ibc;
73         unsigned int mtid;
74         unsigned int mtid_cp;
75         unsigned int mtid_prev;
76         unsigned long rzm;
77         unsigned long rnmax;
78         unsigned long hamax;
79         unsigned int max_cores;
80         unsigned long hsa_size;
81         unsigned long facilities;
82         unsigned int hmfai;
83 };
84 extern struct sclp_info sclp;
85
86 struct zpci_report_error_header {
87         u8 version;     /* Interface version byte */
88         u8 action;      /* Action qualifier byte
89                          * 1: Deconfigure and repair action requested
90                          *      (OpenCrypto Problem Call Home)
91                          * 2: Informational Report
92                          *      (OpenCrypto Successful Diagnostics Execution)
93                          */
94         u16 length;     /* Length of Subsequent Data (up to 4K – SCLP header */
95         u8 data[0];     /* Subsequent Data passed verbatim to SCLP ET 24 */
96 } __packed;
97
98 int sclp_get_core_info(struct sclp_core_info *info);
99 int sclp_core_configure(u8 core);
100 int sclp_core_deconfigure(u8 core);
101 int sclp_sdias_blk_count(void);
102 int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
103 int sclp_chp_configure(struct chp_id chpid);
104 int sclp_chp_deconfigure(struct chp_id chpid);
105 int sclp_chp_read_info(struct sclp_chp_info *info);
106 void sclp_get_ipl_info(struct sclp_ipl_info *info);
107 int sclp_pci_configure(u32 fid);
108 int sclp_pci_deconfigure(u32 fid);
109 int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid);
110 int memcpy_hsa_kernel(void *dest, unsigned long src, size_t count);
111 int memcpy_hsa_user(void __user *dest, unsigned long src, size_t count);
112 void sclp_early_detect(void);
113 void _sclp_print_early(const char *);
114 void sclp_ocf_cpc_name_copy(char *dst);
115
116 #endif /* _ASM_S390_SCLP_H */