2 * Copyright IBM Corp. 2007
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
6 #ifndef _ASM_S390_SCLP_H
7 #define _ASM_S390_SCLP_H
9 #include <linux/types.h>
10 #include <asm/chpid.h>
13 #define SCLP_CHP_INFO_MASK_SIZE 32
14 #define SCLP_MAX_CORES 256
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
];
22 #define LOADPARM_LEN 8
24 struct sclp_ipl_info
{
27 char loadparm
[LOADPARM_LEN
];
30 struct sclp_core_entry
{
43 } __attribute__((packed
));
45 struct sclp_core_info
{
46 unsigned int configured
;
48 unsigned int combined
;
49 struct sclp_core_entry core
[SCLP_MAX_CORES
];
53 unsigned char has_linemode
: 1;
54 unsigned char has_vt220
: 1;
55 unsigned char has_siif
: 1;
56 unsigned char has_sigpif
: 1;
57 unsigned char has_core_type
: 1;
58 unsigned char has_sprp
: 1;
59 unsigned char has_hvs
: 1;
60 unsigned char has_esca
: 1;
61 unsigned char has_sief2
: 1;
65 unsigned int mtid_prev
;
69 unsigned int max_cores
;
70 unsigned long hsa_size
;
71 unsigned long facilities
;
73 extern struct sclp_info sclp
;
75 int sclp_get_core_info(struct sclp_core_info
*info
);
76 int sclp_core_configure(u8 core
);
77 int sclp_core_deconfigure(u8 core
);
78 int sclp_sdias_blk_count(void);
79 int sclp_sdias_copy(void *dest
, int blk_num
, int nr_blks
);
80 int sclp_chp_configure(struct chp_id chpid
);
81 int sclp_chp_deconfigure(struct chp_id chpid
);
82 int sclp_chp_read_info(struct sclp_chp_info
*info
);
83 void sclp_get_ipl_info(struct sclp_ipl_info
*info
);
84 int sclp_pci_configure(u32 fid
);
85 int sclp_pci_deconfigure(u32 fid
);
86 int memcpy_hsa_kernel(void *dest
, unsigned long src
, size_t count
);
87 int memcpy_hsa_user(void __user
*dest
, unsigned long src
, size_t count
);
88 void sclp_early_detect(void);
89 void _sclp_print_early(const char *);
91 #endif /* _ASM_S390_SCLP_H */