2018-10-10 20:03:06 +03:00
|
|
|
/*
|
|
|
|
* Adjunct Processor (AP) matrix device interfaces
|
|
|
|
*
|
|
|
|
* Copyright 2018 IBM Corp.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or (at
|
|
|
|
* your option) any later version. See the COPYING file in the top-level
|
|
|
|
* directory.
|
|
|
|
*/
|
2019-08-12 08:23:31 +03:00
|
|
|
|
2018-10-10 20:03:06 +03:00
|
|
|
#ifndef HW_S390X_AP_DEVICE_H
|
|
|
|
#define HW_S390X_AP_DEVICE_H
|
|
|
|
|
2019-08-12 08:23:31 +03:00
|
|
|
#include "hw/qdev-core.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2019-08-12 08:23:31 +03:00
|
|
|
|
2020-09-03 01:42:13 +03:00
|
|
|
#define TYPE_AP_DEVICE "ap-device"
|
2018-10-10 20:03:06 +03:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct APDevice {
|
2018-10-10 20:03:06 +03:00
|
|
|
DeviceState parent_obj;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
|
|
|
typedef struct APDevice APDevice;
|
2018-10-10 20:03:06 +03:00
|
|
|
|
2020-09-01 00:07:33 +03:00
|
|
|
DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE,
|
2020-09-03 01:42:13 +03:00
|
|
|
TYPE_AP_DEVICE)
|
2018-10-10 20:03:06 +03:00
|
|
|
|
|
|
|
#endif /* HW_S390X_AP_DEVICE_H */
|