linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Add get_metadata IOCTL to share OCXL information to userspace
@ 2018-02-22  3:03 Alastair D'Silva
  2018-02-22  3:03 ` [PATCH v2 1/2] ocxl: " Alastair D'Silva
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  3:03 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

This series adds a new IOCTL for OpenCAPI, which exposes adapter
metadata to userspace.

--- 
v1->v2:
 - Document the new IOCTL

Alastair D'Silva (2):
  ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL

 Documentation/accelerators/ocxl.rst |  5 +++++
 drivers/misc/ocxl/file.c            | 27 +++++++++++++++++++++++++++
 include/uapi/misc/ocxl.h            | 22 ++++++++++++++++++++++
 3 files changed, 54 insertions(+)

-- 
2.14.3

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v2 1/2] ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  3:03 [PATCH v2 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
@ 2018-02-22  3:03 ` Alastair D'Silva
  2018-02-22  3:03 ` [PATCH v2 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
  2018-02-22  4:17 ` [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
  2 siblings, 0 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  3:03 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

Some required information is not exposed to userspace currently (eg. the
PASID), pass this information back, along with other information which
is currently communicated via sysfs, which saves some parsing effort in
userspace.

Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
---
 drivers/misc/ocxl/file.c | 27 +++++++++++++++++++++++++++
 include/uapi/misc/ocxl.h | 22 ++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c
index d9aa407db06a..11514a8444e5 100644
--- a/drivers/misc/ocxl/file.c
+++ b/drivers/misc/ocxl/file.c
@@ -102,10 +102,32 @@ static long afu_ioctl_attach(struct ocxl_context *ctx,
 	return rc;
 }
 
+static long afu_ioctl_get_metadata(struct ocxl_context *ctx,
+		struct ocxl_ioctl_get_metadata __user *uarg)
+{
+	struct ocxl_ioctl_get_metadata arg;
+
+	memset(&arg, 0, sizeof(arg));
+
+	arg.version = 0;
+
+	arg.afu_version_major = ctx->afu->config.version_major;
+	arg.afu_version_minor = ctx->afu->config.version_minor;
+	arg.pasid = ctx->pasid;
+	arg.pp_mmio_size = ctx->afu->config.pp_mmio_stride;
+	arg.global_mmio_size = ctx->afu->config.global_mmio_size;
+
+	if (copy_to_user(uarg, &arg, sizeof(arg)))
+		return -EFAULT;
+
+	return 0;
+}
+
 #define CMD_STR(x) (x == OCXL_IOCTL_ATTACH ? "ATTACH" :			\
 			x == OCXL_IOCTL_IRQ_ALLOC ? "IRQ_ALLOC" :	\
 			x == OCXL_IOCTL_IRQ_FREE ? "IRQ_FREE" :		\
 			x == OCXL_IOCTL_IRQ_SET_FD ? "IRQ_SET_FD" :	\
+			x == OCXL_IOCTL_GET_METADATA ? "GET_METADATA" :	\
 			"UNKNOWN")
 
 static long afu_ioctl(struct file *file, unsigned int cmd,
@@ -157,6 +179,11 @@ static long afu_ioctl(struct file *file, unsigned int cmd,
 					irq_fd.eventfd);
 		break;
 
+	case OCXL_IOCTL_GET_METADATA:
+		rc = afu_ioctl_get_metadata(ctx,
+				(struct ocxl_ioctl_get_metadata __user *) args);
+		break;
+
 	default:
 		rc = -EINVAL;
 	}
diff --git a/include/uapi/misc/ocxl.h b/include/uapi/misc/ocxl.h
index 4b0b0b756f3e..16e1f48ce280 100644
--- a/include/uapi/misc/ocxl.h
+++ b/include/uapi/misc/ocxl.h
@@ -32,6 +32,27 @@ struct ocxl_ioctl_attach {
 	__u64 reserved3;
 };
 
+/*
+ * Version contains the version of the struct.
+ * Versions will always be backwards compatible, that is, new versions will not
+ * alter existing fields
+ */
+struct ocxl_ioctl_get_metadata {
+	__u16 version;
+
+	// Version 0 fields
+	__u8  afu_version_major;
+	__u8  afu_version_minor;
+	__u32 pasid;
+
+	__u64 pp_mmio_size;
+	__u64 global_mmio_size;
+
+	// End version 0 fields
+
+	__u64 reserved[13]; // Total of 16*u64
+};
+
 struct ocxl_ioctl_irq_fd {
 	__u64 irq_offset;
 	__s32 eventfd;
@@ -45,5 +66,6 @@ struct ocxl_ioctl_irq_fd {
 #define OCXL_IOCTL_IRQ_ALLOC	_IOR(OCXL_MAGIC, 0x11, __u64)
 #define OCXL_IOCTL_IRQ_FREE	_IOW(OCXL_MAGIC, 0x12, __u64)
 #define OCXL_IOCTL_IRQ_SET_FD	_IOW(OCXL_MAGIC, 0x13, struct ocxl_ioctl_irq_fd)
+#define OCXL_IOCTL_GET_METADATA _IOR(OCXL_MAGIC, 0x14, struct ocxl_ioctl_get_metadata)
 
 #endif /* _UAPI_MISC_OCXL_H */
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL
  2018-02-22  3:03 [PATCH v2 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
  2018-02-22  3:03 ` [PATCH v2 1/2] ocxl: " Alastair D'Silva
@ 2018-02-22  3:03 ` Alastair D'Silva
  2018-02-22  4:17 ` [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
  2 siblings, 0 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  3:03 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
---
 Documentation/accelerators/ocxl.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Documentation/accelerators/ocxl.rst b/Documentation/accelerators/ocxl.rst
index 4f7af841d935..ddcc58d01cfb 100644
--- a/Documentation/accelerators/ocxl.rst
+++ b/Documentation/accelerators/ocxl.rst
@@ -152,6 +152,11 @@ OCXL_IOCTL_IRQ_SET_FD:
   Associate an event fd to an AFU interrupt so that the user process
   can be notified when the AFU sends an interrupt.
 
+OCXL_IOCTL_GET_METADATA:
+
+  Obtains configuration information from the card, such at the size of
+  MMIO areas, the AFU version, and the PASID for the current context.
+
 
 mmap
 ----
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  3:03 [PATCH v2 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
  2018-02-22  3:03 ` [PATCH v2 1/2] ocxl: " Alastair D'Silva
  2018-02-22  3:03 ` [PATCH v2 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
@ 2018-02-22  4:17 ` Alastair D'Silva
  2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
  2018-02-22  4:17   ` [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
  2 siblings, 2 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  4:17 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

This series adds a new IOCTL for OpenCAPI, which exposes adapter
metadata to userspace.

--- 
v1->v2:
 - Document the new IOCTL

v2->v3:
 - Rename metadata struct
 - Document a couple of struct members that are not immediately obvious

Alastair D'Silva (2):
  ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL

 Documentation/accelerators/ocxl.rst |  5 +++++
 drivers/misc/ocxl/file.c            | 27 +++++++++++++++++++++++++++
 include/uapi/misc/ocxl.h            | 17 +++++++++++++++++
 3 files changed, 49 insertions(+)

-- 
2.14.3

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v3 1/2] ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  4:17 ` [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
@ 2018-02-22  4:17   ` Alastair D'Silva
  2018-02-22  5:21     ` Andrew Donnellan
                       ` (2 more replies)
  2018-02-22  4:17   ` [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
  1 sibling, 3 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  4:17 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

Some required information is not exposed to userspace currently (eg. the
PASID), pass this information back, along with other information which
is currently communicated via sysfs, which saves some parsing effort in
userspace.

Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
---
 drivers/misc/ocxl/file.c | 27 +++++++++++++++++++++++++++
 include/uapi/misc/ocxl.h | 17 +++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c
index d9aa407db06a..90df1be5ef3f 100644
--- a/drivers/misc/ocxl/file.c
+++ b/drivers/misc/ocxl/file.c
@@ -102,10 +102,32 @@ static long afu_ioctl_attach(struct ocxl_context *ctx,
 	return rc;
 }
 
+static long afu_ioctl_get_metadata(struct ocxl_context *ctx,
+		struct ocxl_ioctl_metadata __user *uarg)
+{
+	struct ocxl_ioctl_metadata arg;
+
+	memset(&arg, 0, sizeof(arg));
+
+	arg.version = 0;
+
+	arg.afu_version_major = ctx->afu->config.version_major;
+	arg.afu_version_minor = ctx->afu->config.version_minor;
+	arg.pasid = ctx->pasid;
+	arg.pp_mmio_size = ctx->afu->config.pp_mmio_stride;
+	arg.global_mmio_size = ctx->afu->config.global_mmio_size;
+
+	if (copy_to_user(uarg, &arg, sizeof(arg)))
+		return -EFAULT;
+
+	return 0;
+}
+
 #define CMD_STR(x) (x == OCXL_IOCTL_ATTACH ? "ATTACH" :			\
 			x == OCXL_IOCTL_IRQ_ALLOC ? "IRQ_ALLOC" :	\
 			x == OCXL_IOCTL_IRQ_FREE ? "IRQ_FREE" :		\
 			x == OCXL_IOCTL_IRQ_SET_FD ? "IRQ_SET_FD" :	\
+			x == OCXL_IOCTL_GET_METADATA ? "GET_METADATA" :	\
 			"UNKNOWN")
 
 static long afu_ioctl(struct file *file, unsigned int cmd,
@@ -157,6 +179,11 @@ static long afu_ioctl(struct file *file, unsigned int cmd,
 					irq_fd.eventfd);
 		break;
 
+	case OCXL_IOCTL_GET_METADATA:
+		rc = afu_ioctl_get_metadata(ctx,
+				(struct ocxl_ioctl_metadata __user *) args);
+		break;
+
 	default:
 		rc = -EINVAL;
 	}
diff --git a/include/uapi/misc/ocxl.h b/include/uapi/misc/ocxl.h
index 4b0b0b756f3e..0af83d80fb3e 100644
--- a/include/uapi/misc/ocxl.h
+++ b/include/uapi/misc/ocxl.h
@@ -32,6 +32,22 @@ struct ocxl_ioctl_attach {
 	__u64 reserved3;
 };
 
+struct ocxl_ioctl_metadata {
+	__u16 version; // struct version, always backwards compatible
+
+	// Version 0 fields
+	__u8  afu_version_major;
+	__u8  afu_version_minor;
+	__u32 pasid;		// PASID assigned to the current context
+
+	__u64 pp_mmio_size;	// Per PASID MMIO size
+	__u64 global_mmio_size;
+
+	// End version 0 fields
+
+	__u64 reserved[13]; // Total of 16*u64
+};
+
 struct ocxl_ioctl_irq_fd {
 	__u64 irq_offset;
 	__s32 eventfd;
@@ -45,5 +61,6 @@ struct ocxl_ioctl_irq_fd {
 #define OCXL_IOCTL_IRQ_ALLOC	_IOR(OCXL_MAGIC, 0x11, __u64)
 #define OCXL_IOCTL_IRQ_FREE	_IOW(OCXL_MAGIC, 0x12, __u64)
 #define OCXL_IOCTL_IRQ_SET_FD	_IOW(OCXL_MAGIC, 0x13, struct ocxl_ioctl_irq_fd)
+#define OCXL_IOCTL_GET_METADATA _IOR(OCXL_MAGIC, 0x14, struct ocxl_ioctl_metadata)
 
 #endif /* _UAPI_MISC_OCXL_H */
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL
  2018-02-22  4:17 ` [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
  2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
@ 2018-02-22  4:17   ` Alastair D'Silva
  2018-02-22  5:21     ` Andrew Donnellan
  2018-02-22 12:16     ` Frederic Barrat
  1 sibling, 2 replies; 11+ messages in thread
From: Alastair D'Silva @ 2018-02-22  4:17 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel
  Cc: frederic.barrat, andrew.donnellan, arnd, gregkh, alastair,
	Alastair D'Silva

From: Alastair D'Silva <alastair@d-silva.org>

Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
---
 Documentation/accelerators/ocxl.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Documentation/accelerators/ocxl.rst b/Documentation/accelerators/ocxl.rst
index 4f7af841d935..ddcc58d01cfb 100644
--- a/Documentation/accelerators/ocxl.rst
+++ b/Documentation/accelerators/ocxl.rst
@@ -152,6 +152,11 @@ OCXL_IOCTL_IRQ_SET_FD:
   Associate an event fd to an AFU interrupt so that the user process
   can be notified when the AFU sends an interrupt.
 
+OCXL_IOCTL_GET_METADATA:
+
+  Obtains configuration information from the card, such at the size of
+  MMIO areas, the AFU version, and the PASID for the current context.
+
 
 mmap
 ----
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v3 1/2] ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
@ 2018-02-22  5:21     ` Andrew Donnellan
  2018-02-22 12:16     ` Frederic Barrat
  2018-03-05 12:36     ` [v3, " Michael Ellerman
  2 siblings, 0 replies; 11+ messages in thread
From: Andrew Donnellan @ 2018-02-22  5:21 UTC (permalink / raw)
  To: Alastair D'Silva, linuxppc-dev, linux-kernel
  Cc: frederic.barrat, arnd, gregkh, Alastair D'Silva

On 22/02/18 15:17, Alastair D'Silva wrote:
> From: Alastair D'Silva <alastair@d-silva.org>
> 
> Some required information is not exposed to userspace currently (eg. the
> PASID), pass this information back, along with other information which
> is currently communicated via sysfs, which saves some parsing effort in
> userspace.
> 
> Signed-off-by: Alastair D'Silva <alastair@d-silva.org>

Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>


-- 
Andrew Donnellan              OzLabs, ADL Canberra
andrew.donnellan@au1.ibm.com  IBM Australia Limited

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL
  2018-02-22  4:17   ` [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
@ 2018-02-22  5:21     ` Andrew Donnellan
  2018-02-22 12:16     ` Frederic Barrat
  1 sibling, 0 replies; 11+ messages in thread
From: Andrew Donnellan @ 2018-02-22  5:21 UTC (permalink / raw)
  To: Alastair D'Silva, linuxppc-dev, linux-kernel
  Cc: frederic.barrat, arnd, gregkh, Alastair D'Silva

On 22/02/18 15:17, Alastair D'Silva wrote:
> From: Alastair D'Silva <alastair@d-silva.org>
> 
> Signed-off-by: Alastair D'Silva <alastair@d-silva.org>

Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>

-- 
Andrew Donnellan              OzLabs, ADL Canberra
andrew.donnellan@au1.ibm.com  IBM Australia Limited

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3 1/2] ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
  2018-02-22  5:21     ` Andrew Donnellan
@ 2018-02-22 12:16     ` Frederic Barrat
  2018-03-05 12:36     ` [v3, " Michael Ellerman
  2 siblings, 0 replies; 11+ messages in thread
From: Frederic Barrat @ 2018-02-22 12:16 UTC (permalink / raw)
  To: Alastair D'Silva, linuxppc-dev, linux-kernel
  Cc: arnd, frederic.barrat, gregkh, andrew.donnellan, Alastair D'Silva



Le 22/02/2018 à 05:17, Alastair D'Silva a écrit :
> From: Alastair D'Silva <alastair@d-silva.org>
> 
> Some required information is not exposed to userspace currently (eg. the
> PASID), pass this information back, along with other information which
> is currently communicated via sysfs, which saves some parsing effort in
> userspace.
> 
> Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
> ---

Thanks!
Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>


>   drivers/misc/ocxl/file.c | 27 +++++++++++++++++++++++++++
>   include/uapi/misc/ocxl.h | 17 +++++++++++++++++
>   2 files changed, 44 insertions(+)
> 
> diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c
> index d9aa407db06a..90df1be5ef3f 100644
> --- a/drivers/misc/ocxl/file.c
> +++ b/drivers/misc/ocxl/file.c
> @@ -102,10 +102,32 @@ static long afu_ioctl_attach(struct ocxl_context *ctx,
>   	return rc;
>   }
> 
> +static long afu_ioctl_get_metadata(struct ocxl_context *ctx,
> +		struct ocxl_ioctl_metadata __user *uarg)
> +{
> +	struct ocxl_ioctl_metadata arg;
> +
> +	memset(&arg, 0, sizeof(arg));
> +
> +	arg.version = 0;
> +
> +	arg.afu_version_major = ctx->afu->config.version_major;
> +	arg.afu_version_minor = ctx->afu->config.version_minor;
> +	arg.pasid = ctx->pasid;
> +	arg.pp_mmio_size = ctx->afu->config.pp_mmio_stride;
> +	arg.global_mmio_size = ctx->afu->config.global_mmio_size;
> +
> +	if (copy_to_user(uarg, &arg, sizeof(arg)))
> +		return -EFAULT;
> +
> +	return 0;
> +}
> +
>   #define CMD_STR(x) (x == OCXL_IOCTL_ATTACH ? "ATTACH" :			\
>   			x == OCXL_IOCTL_IRQ_ALLOC ? "IRQ_ALLOC" :	\
>   			x == OCXL_IOCTL_IRQ_FREE ? "IRQ_FREE" :		\
>   			x == OCXL_IOCTL_IRQ_SET_FD ? "IRQ_SET_FD" :	\
> +			x == OCXL_IOCTL_GET_METADATA ? "GET_METADATA" :	\
>   			"UNKNOWN")
> 
>   static long afu_ioctl(struct file *file, unsigned int cmd,
> @@ -157,6 +179,11 @@ static long afu_ioctl(struct file *file, unsigned int cmd,
>   					irq_fd.eventfd);
>   		break;
> 
> +	case OCXL_IOCTL_GET_METADATA:
> +		rc = afu_ioctl_get_metadata(ctx,
> +				(struct ocxl_ioctl_metadata __user *) args);
> +		break;
> +
>   	default:
>   		rc = -EINVAL;
>   	}
> diff --git a/include/uapi/misc/ocxl.h b/include/uapi/misc/ocxl.h
> index 4b0b0b756f3e..0af83d80fb3e 100644
> --- a/include/uapi/misc/ocxl.h
> +++ b/include/uapi/misc/ocxl.h
> @@ -32,6 +32,22 @@ struct ocxl_ioctl_attach {
>   	__u64 reserved3;
>   };
> 
> +struct ocxl_ioctl_metadata {
> +	__u16 version; // struct version, always backwards compatible
> +
> +	// Version 0 fields
> +	__u8  afu_version_major;
> +	__u8  afu_version_minor;
> +	__u32 pasid;		// PASID assigned to the current context
> +
> +	__u64 pp_mmio_size;	// Per PASID MMIO size
> +	__u64 global_mmio_size;
> +
> +	// End version 0 fields
> +
> +	__u64 reserved[13]; // Total of 16*u64
> +};
> +
>   struct ocxl_ioctl_irq_fd {
>   	__u64 irq_offset;
>   	__s32 eventfd;
> @@ -45,5 +61,6 @@ struct ocxl_ioctl_irq_fd {
>   #define OCXL_IOCTL_IRQ_ALLOC	_IOR(OCXL_MAGIC, 0x11, __u64)
>   #define OCXL_IOCTL_IRQ_FREE	_IOW(OCXL_MAGIC, 0x12, __u64)
>   #define OCXL_IOCTL_IRQ_SET_FD	_IOW(OCXL_MAGIC, 0x13, struct ocxl_ioctl_irq_fd)
> +#define OCXL_IOCTL_GET_METADATA _IOR(OCXL_MAGIC, 0x14, struct ocxl_ioctl_metadata)
> 
>   #endif /* _UAPI_MISC_OCXL_H */
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL
  2018-02-22  4:17   ` [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
  2018-02-22  5:21     ` Andrew Donnellan
@ 2018-02-22 12:16     ` Frederic Barrat
  1 sibling, 0 replies; 11+ messages in thread
From: Frederic Barrat @ 2018-02-22 12:16 UTC (permalink / raw)
  To: Alastair D'Silva, linuxppc-dev, linux-kernel
  Cc: arnd, frederic.barrat, gregkh, andrew.donnellan, Alastair D'Silva



Le 22/02/2018 à 05:17, Alastair D'Silva a écrit :
> From: Alastair D'Silva <alastair@d-silva.org>
> 
> Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
> ---


Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>



>   Documentation/accelerators/ocxl.rst | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/Documentation/accelerators/ocxl.rst b/Documentation/accelerators/ocxl.rst
> index 4f7af841d935..ddcc58d01cfb 100644
> --- a/Documentation/accelerators/ocxl.rst
> +++ b/Documentation/accelerators/ocxl.rst
> @@ -152,6 +152,11 @@ OCXL_IOCTL_IRQ_SET_FD:
>     Associate an event fd to an AFU interrupt so that the user process
>     can be notified when the AFU sends an interrupt.
> 
> +OCXL_IOCTL_GET_METADATA:
> +
> +  Obtains configuration information from the card, such at the size of
> +  MMIO areas, the AFU version, and the PASID for the current context.
> +
> 
>   mmap
>   ----
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [v3, 1/2] ocxl: Add get_metadata IOCTL to share OCXL information to userspace
  2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
  2018-02-22  5:21     ` Andrew Donnellan
  2018-02-22 12:16     ` Frederic Barrat
@ 2018-03-05 12:36     ` Michael Ellerman
  2 siblings, 0 replies; 11+ messages in thread
From: Michael Ellerman @ 2018-03-05 12:36 UTC (permalink / raw)
  To: Alastair D'Silva, linuxppc-dev, linux-kernel
  Cc: alastair, arnd, frederic.barrat, gregkh, andrew.donnellan,
	Alastair D'Silva

On Thu, 2018-02-22 at 04:17:38 UTC, "Alastair D'Silva" wrote:
> From: Alastair D'Silva <alastair@d-silva.org>
> 
> Some required information is not exposed to userspace currently (eg. the
> PASID), pass this information back, along with other information which
> is currently communicated via sysfs, which saves some parsing effort in
> userspace.
> 
> Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
> Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
> Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>

Series applied to powerpc fixes, thanks.

https://git.kernel.org/powerpc/c/07c5ccd70ad702e561fcda8e4df494

cheers

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-03-05 12:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-22  3:03 [PATCH v2 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
2018-02-22  3:03 ` [PATCH v2 1/2] ocxl: " Alastair D'Silva
2018-02-22  3:03 ` [PATCH v2 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
2018-02-22  4:17 ` [PATCH v3 0/2] Add get_metadata IOCTL to share OCXL information to userspace Alastair D'Silva
2018-02-22  4:17   ` [PATCH v3 1/2] ocxl: " Alastair D'Silva
2018-02-22  5:21     ` Andrew Donnellan
2018-02-22 12:16     ` Frederic Barrat
2018-03-05 12:36     ` [v3, " Michael Ellerman
2018-02-22  4:17   ` [PATCH v3 2/2] ocxl: Document the OCXL_IOCTL_GET_METADATA IOCTL Alastair D'Silva
2018-02-22  5:21     ` Andrew Donnellan
2018-02-22 12:16     ` Frederic Barrat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).