1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2 /* Copyright 2017 IBM Corp. */
3 #ifndef _UAPI_MISC_OCXL_H
4 #define _UAPI_MISC_OCXL_H
6 #include <linux/types.h>
7 #include <linux/ioctl.h>
10 OCXL_AFU_EVENT_XSL_FAULT_ERROR
= 0,
13 #define OCXL_KERNEL_EVENT_FLAG_LAST 0x0001 /* This is the last event pending */
15 struct ocxl_kernel_event_header
{
21 struct ocxl_kernel_event_xsl_fault_error
{
28 struct ocxl_ioctl_attach
{
35 struct ocxl_ioctl_irq_fd
{
42 #define OCXL_MAGIC 0xCA
44 #define OCXL_IOCTL_ATTACH _IOW(OCXL_MAGIC, 0x10, struct ocxl_ioctl_attach)
45 #define OCXL_IOCTL_IRQ_ALLOC _IOR(OCXL_MAGIC, 0x11, __u64)
46 #define OCXL_IOCTL_IRQ_FREE _IOW(OCXL_MAGIC, 0x12, __u64)
47 #define OCXL_IOCTL_IRQ_SET_FD _IOW(OCXL_MAGIC, 0x13, struct ocxl_ioctl_irq_fd)
49 #endif /* _UAPI_MISC_OCXL_H */