s390/mm: implement software dirty bits
[deliverable/linux.git] / arch / s390 / include / asm / sclp.h
CommitLineData
ab14de6c 1/*
ab14de6c
HC
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>
e5854a58 10#include <asm/chpid.h>
ab14de6c 11
e5854a58
PO
12#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
05dd2530
HC
20#define LOADPARM_LEN 8
21
22struct sclp_ipl_info {
23 int is_valid;
24 int has_dump;
25 char loadparm[LOADPARM_LEN];
26};
27
08d07968
HC
28struct 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);
83119ad4 46void sclp_facilities_detect(void);
23d17421
HC
47unsigned long long sclp_get_rnmax(void);
48unsigned long long sclp_get_rzm(void);
05dd2530
HC
49int sclp_sdias_blk_count(void);
50int sclp_sdias_copy(void *dest, int blk_num, int nr_blks);
51int sclp_chp_configure(struct chp_id chpid);
52int sclp_chp_deconfigure(struct chp_id chpid);
53int sclp_chp_read_info(struct sclp_chp_info *info);
54void sclp_get_ipl_info(struct sclp_ipl_info *info);
cd183459
HG
55bool sclp_has_linemode(void);
56bool sclp_has_vt220(void);
7441b062
JG
57int sclp_pci_configure(u32 fid);
58int sclp_pci_deconfigure(u32 fid);
ab14de6c
HC
59
60#endif /* _ASM_S390_SCLP_H */
This page took 0.521911 seconds and 5 git commands to generate.