Skip to content

Commit ab79a4b

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) uAPI: 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> Cc: Zhang Jianxun <jianxun.zhang@intel.com> Cc: Ivan Briano <ivan.briano@intel.com> Cc: Matthew Brost <matthew.brost@intel.com>
1 parent be44796 commit ab79a4b

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
@@ -1249,6 +1252,89 @@ struct drm_xe_vm_bind {
12491252
__u64 reserved[2];
12501253
};
12511254

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

0 commit comments

Comments
 (0)