aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/uapi/linux/kfd_ioctl.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/uapi/linux/kfd_ioctl.h b/include/uapi/linux/kfd_ioctl.h
index 731d0df722e3..6e80501368ae 100644
--- a/include/uapi/linux/kfd_ioctl.h
+++ b/include/uapi/linux/kfd_ioctl.h
@@ -233,29 +233,29 @@ struct kfd_ioctl_wait_events_args {
233}; 233};
234 234
235struct kfd_ioctl_set_scratch_backing_va_args { 235struct kfd_ioctl_set_scratch_backing_va_args {
236 uint64_t va_addr; /* to KFD */ 236 __u64 va_addr; /* to KFD */
237 uint32_t gpu_id; /* to KFD */ 237 __u32 gpu_id; /* to KFD */
238 uint32_t pad; 238 __u32 pad;
239}; 239};
240 240
241struct kfd_ioctl_get_tile_config_args { 241struct kfd_ioctl_get_tile_config_args {
242 /* to KFD: pointer to tile array */ 242 /* to KFD: pointer to tile array */
243 uint64_t tile_config_ptr; 243 __u64 tile_config_ptr;
244 /* to KFD: pointer to macro tile array */ 244 /* to KFD: pointer to macro tile array */
245 uint64_t macro_tile_config_ptr; 245 __u64 macro_tile_config_ptr;
246 /* to KFD: array size allocated by user mode 246 /* to KFD: array size allocated by user mode
247 * from KFD: array size filled by kernel 247 * from KFD: array size filled by kernel
248 */ 248 */
249 uint32_t num_tile_configs; 249 __u32 num_tile_configs;
250 /* to KFD: array size allocated by user mode 250 /* to KFD: array size allocated by user mode
251 * from KFD: array size filled by kernel 251 * from KFD: array size filled by kernel
252 */ 252 */
253 uint32_t num_macro_tile_configs; 253 __u32 num_macro_tile_configs;
254 254
255 uint32_t gpu_id; /* to KFD */ 255 __u32 gpu_id; /* to KFD */
256 uint32_t gb_addr_config; /* from KFD */ 256 __u32 gb_addr_config; /* from KFD */
257 uint32_t num_banks; /* from KFD */ 257 __u32 num_banks; /* from KFD */
258 uint32_t num_ranks; /* from KFD */ 258 __u32 num_ranks; /* from KFD */
259 /* struct size can be extended later if needed 259 /* struct size can be extended later if needed
260 * without breaking ABI compatibility 260 * without breaking ABI compatibility
261 */ 261 */