Skip to content

Commit 0daad6c

Browse files
Jonathan-Cavittintel-lab-lkp
authored andcommitted
drm/xe/uapi: Define drm_xe_vm_get_property
Add initial declarations for the drm_xe_vm_get_property ioctl. v2: - Expand kernel docs for drm_xe_vm_get_property (Jianxun) v3: - Remove address type external definitions (Jianxun) - Add fault type to xe_drm_fault struct (Jianxun) v4: - Remove engine class and instance (Ivan) v5: - Add declares for fault type, access type, and fault level (Matt Brost, Ivan) v6: - Fix inconsistent use of whitespace in defines v7: - Rebase and refactor (jcavitt) v8: - Rebase (jcavitt) v9: - Clarify address is canonical (José) v10: - s/uAPI/Link in the commit log links Link: intel/compute-runtime#878 Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com> Acked-by: Matthew Brost <matthew.brost@intel.com> Acked-by: Ivan Briano <ivan.briano@intel.com> Acked-by: José Roberto de Souza <jose.souza@intel.com> Cc: Zhang Jianxun <jianxun.zhang@intel.com> Cc: Ivan Briano <ivan.briano@intel.com> Cc: Matthew Brost <matthew.brost@intel.com>
1 parent 98f1348 commit 0daad6c

1 file changed

Lines changed: 86 additions & 0 deletions

File tree

include/uapi/drm/xe_drm.h

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ extern "C" {
8383
* - &DRM_IOCTL_XE_OBSERVATION
8484
* - &DRM_IOCTL_XE_MADVISE
8585
* - &DRM_IOCTL_XE_VM_QUERY_MEM_RANGE_ATTRS
86+
* - &DRM_IOCTL_XE_VM_GET_PROPERTY
8687
*/
8788

8889
/*
@@ -107,6 +108,7 @@ extern "C" {
107108
#define DRM_XE_MADVISE 0x0c
108109
#define DRM_XE_VM_QUERY_MEM_RANGE_ATTRS 0x0d
109110
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY 0x0e
111+
#define DRM_XE_VM_GET_PROPERTY 0x0f
110112

111113
/* Must be kept compact -- no holes */
112114

@@ -125,6 +127,7 @@ extern "C" {
125127
#define DRM_IOCTL_XE_MADVISE DRM_IOW(DRM_COMMAND_BASE + DRM_XE_MADVISE, struct drm_xe_madvise)
126128
#define DRM_IOCTL_XE_VM_QUERY_MEM_RANGE_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_VM_QUERY_MEM_RANGE_ATTRS, struct drm_xe_vm_query_mem_range_attr)
127129
#define DRM_IOCTL_XE_EXEC_QUEUE_SET_PROPERTY DRM_IOW(DRM_COMMAND_BASE + DRM_XE_EXEC_QUEUE_SET_PROPERTY, struct drm_xe_exec_queue_set_property)
130+
#define DRM_IOCTL_XE_VM_GET_PROPERTY DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_VM_GET_PROPERTY, struct drm_xe_vm_get_property)
128131

129132
/**
130133
* DOC: Xe IOCTL Extensions
@@ -1263,6 +1266,89 @@ struct drm_xe_vm_bind {
12631266
__u64 reserved[2];
12641267
};
12651268

1269+
/** struct xe_vm_fault - Describes faults for %DRM_XE_VM_GET_PROPERTY_FAULTS */
1270+
struct xe_vm_fault {
1271+
/** @address: Canonical address of the fault */
1272+
__u64 address;
1273+
/** @address_precision: Precision of faulted address */
1274+
__u32 address_precision;
1275+
/** @access_type: Type of address access that resulted in fault */
1276+
#define FAULT_ACCESS_TYPE_READ 0
1277+
#define FAULT_ACCESS_TYPE_WRITE 1
1278+
#define FAULT_ACCESS_TYPE_ATOMIC 2
1279+
__u8 access_type;
1280+
/** @fault_type: Type of fault reported */
1281+
#define FAULT_TYPE_NOT_PRESENT 0
1282+
#define FAULT_TYPE_WRITE_ACCESS 1
1283+
#define FAULT_TYPE_ATOMIC_ACCESS 2
1284+
__u8 fault_type;
1285+
/** @fault_level: fault level of the fault */
1286+
#define FAULT_LEVEL_PTE 0
1287+
#define FAULT_LEVEL_PDE 1
1288+
#define FAULT_LEVEL_PDP 2
1289+
#define FAULT_LEVEL_PML4 3
1290+
#define FAULT_LEVEL_PML5 4
1291+
__u8 fault_level;
1292+
/** @pad: MBZ */
1293+
__u8 pad;
1294+
/** @reserved: MBZ */
1295+
__u64 reserved[4];
1296+
};
1297+
1298+
/**
1299+
* struct drm_xe_vm_get_property - Input of &DRM_IOCTL_XE_VM_GET_PROPERTY
1300+
*
1301+
* The user provides a VM and a property to query among DRM_XE_VM_GET_PROPERTY_*,
1302+
* and sets the values in the vm_id and property members, respectively. This
1303+
* determines both the VM to get the property of, as well as the property to
1304+
* report.
1305+
*
1306+
* If size is set to 0, the driver fills it with the required size for the
1307+
* requested property. The user is expected here to allocate memory for the
1308+
* property structure and to provide a pointer to the allocated memory using the
1309+
* data member. For some properties, this may be zero, in which case, the
1310+
* value of the property will be saved to the value member and size will remain
1311+
* zero on return.
1312+
*
1313+
* If size is not zero, then the IOCTL will attempt to copy the requested
1314+
* property into the data member.
1315+
*
1316+
* The IOCTL will return -ENOENT if the VM could not be identified from the
1317+
* provided VM ID, or -EINVAL if the IOCTL fails for any other reason, such as
1318+
* providing an invalid size for the given property or if the property data
1319+
* could not be copied to the memory allocated to the data member.
1320+
*
1321+
* The property member can be:
1322+
* - %DRM_XE_VM_GET_PROPERTY_FAULTS
1323+
*/
1324+
struct drm_xe_vm_get_property {
1325+
/** @extensions: Pointer to the first extension struct, if any */
1326+
__u64 extensions;
1327+
1328+
/** @vm_id: The ID of the VM to query the properties of */
1329+
__u32 vm_id;
1330+
1331+
#define DRM_XE_VM_GET_PROPERTY_FAULTS 0
1332+
/** @property: property to get */
1333+
__u32 property;
1334+
1335+
/** @size: Size to allocate for @data */
1336+
__u32 size;
1337+
1338+
/** @pad: MBZ */
1339+
__u32 pad;
1340+
1341+
union {
1342+
/** @data: Pointer to user-defined array of flexible size and type */
1343+
__u64 data;
1344+
/** @value: Return value for scalar queries */
1345+
__u64 value;
1346+
};
1347+
1348+
/** @reserved: MBZ */
1349+
__u64 reserved[3];
1350+
};
1351+
12661352
/**
12671353
* struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE
12681354
*

0 commit comments

Comments
 (0)