2017-12-04 17:39:38 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
2005-06-26 05:55:32 +08:00
|
|
|
/*
|
2012-07-20 17:15:04 +08:00
|
|
|
* Copyright IBM Corp. 2004, 2005
|
2006-09-20 21:59:24 +08:00
|
|
|
* Interface implementation for communication with the z/VM control program
|
2005-06-26 05:55:32 +08:00
|
|
|
* Version 1.0
|
|
|
|
* Author(s): Christian Borntraeger <cborntra@de.ibm.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* z/VMs CP offers the possibility to issue commands via the diagnose code 8
|
|
|
|
* this driver implements a character device that issues these commands and
|
|
|
|
* returns the answer of CP.
|
|
|
|
*
|
|
|
|
* The idea of this driver is based on cpint from Neale Ferguson
|
|
|
|
*/
|
|
|
|
|
2017-08-07 21:16:16 +08:00
|
|
|
#ifndef _UAPI_ASM_VMCP_H
|
|
|
|
#define _UAPI_ASM_VMCP_H
|
|
|
|
|
2005-06-26 05:55:32 +08:00
|
|
|
#include <linux/ioctl.h>
|
|
|
|
|
2017-08-07 21:16:16 +08:00
|
|
|
#define VMCP_GETCODE _IOR(0x10, 1, int)
|
|
|
|
#define VMCP_SETBUF _IOW(0x10, 2, int)
|
|
|
|
#define VMCP_GETSIZE _IOR(0x10, 3, int)
|
2005-06-26 05:55:32 +08:00
|
|
|
|
2017-08-07 21:16:16 +08:00
|
|
|
#endif /* _UAPI_ASM_VMCP_H */
|