[S390] sclp: introduce some new interfaces.
[deliverable/linux.git] / include / asm-s390 / sclp.h
CommitLineData
ab14de6c
HC
1/*
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>
e5854a58 12#include <asm/chpid.h>
ab14de6c 13
e5854a58
PO
14#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
05dd2530
HC
22#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);
31unsigned long long sclp_memory_detect(void);
32int sclp_sdias_blk_count(void);
33int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
34int sclp_chp_configure(struct chp_id chpid);
35int sclp_chp_deconfigure(struct chp_id chpid);
36int sclp_chp_read_info(struct sclp_chp_info *info);
37void sclp_get_ipl_info(struct sclp_ipl_info *info);
ab14de6c
HC
38
39#endif /* _ASM_S390_SCLP_H */
This page took 0.076634 seconds and 5 git commands to generate.