gem5  v21.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
kfd_ioctl.h
Go to the documentation of this file.
1 /*
2  * Copyright 2014 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef KFD_IOCTL_H_INCLUDED
24 #define KFD_IOCTL_H_INCLUDED
25 
26 #include <cstdint>
27 #include <drm/drm.h>
28 #include <linux/ioctl.h>
29 #include <linux/types.h>
30 
31 namespace gem5
32 {
33 
34 /*
35  * - 1.1 - initial version
36  * - 1.3 - Add SMI events support
37  */
38 #define KFD_IOCTL_MAJOR_VERSION 1
39 #define KFD_IOCTL_MINOR_VERSION 3
40 
42 {
43  uint32_t major_version; /* from KFD */
44  uint32_t minor_version; /* from KFD */
45 };
46 
47 /* For kfd_ioctl_create_queue_args.queue_type. */
48 #define KFD_IOC_QUEUE_TYPE_COMPUTE 0
49 #define KFD_IOC_QUEUE_TYPE_SDMA 1
50 #define KFD_IOC_QUEUE_TYPE_COMPUTE_AQL 2
51 #define KFD_IOC_QUEUE_TYPE_SDMA_XGMI 3
52 
53 #define KFD_MAX_QUEUE_PERCENTAGE 100
54 #define KFD_MAX_QUEUE_PRIORITY 15
55 
57 {
58  uint64_t ring_base_address; /* to KFD */
59  uint64_t write_pointer_address; /* from KFD */
60  uint64_t read_pointer_address; /* from KFD */
61  uint64_t doorbell_offset; /* from KFD */
62 
63  uint32_t ring_size; /* to KFD */
64  uint32_t gpu_id; /* to KFD */
65  uint32_t queue_type; /* to KFD */
66  uint32_t queue_percentage; /* to KFD */
67  uint32_t queue_priority; /* to KFD */
68  uint32_t queue_id; /* from KFD */
69 
70  uint64_t eop_buffer_address; /* to KFD */
71  uint64_t eop_buffer_size; /* to KFD */
72  uint64_t ctx_save_restore_address; /* to KFD */
73  uint32_t ctx_save_restore_size; /* to KFD */
74  uint32_t ctl_stack_size; /* to KFD */
75 };
76 
78 {
79  uint32_t queue_id; /* to KFD */
80  uint32_t pad;
81 };
82 
84 {
85  uint64_t ring_base_address; /* to KFD */
86 
87  uint32_t queue_id; /* to KFD */
88  uint32_t ring_size; /* to KFD */
89  uint32_t queue_percentage; /* to KFD */
90  uint32_t queue_priority; /* to KFD */
91 };
92 
94 {
95  uint32_t queue_id; /* to KFD */
96  uint32_t num_cu_mask; /* to KFD */
97  uint64_t cu_mask_ptr; /* to KFD */
98 };
99 
101 {
102  uint64_t ctl_stack_address; /* to KFD */
103  uint32_t ctl_stack_used_size; /* from KFD */
104  uint32_t save_area_used_size; /* from KFD */
105  uint32_t queue_id; /* to KFD */
106  uint32_t pad;
107 };
108 
109 /* For kfd_ioctl_set_memory_policy_args.default_policy and alternate_policy */
110 #define KFD_IOC_CACHE_POLICY_COHERENT 0
111 #define KFD_IOC_CACHE_POLICY_NONCOHERENT 1
112 
114 {
115  uint64_t alternate_aperture_base; /* to KFD */
116  uint64_t alternate_aperture_size; /* to KFD */
117 
118  uint32_t gpu_id; /* to KFD */
119  uint32_t default_policy; /* to KFD */
120  uint32_t alternate_policy; /* to KFD */
121  uint32_t pad;
122 };
123 
124 /*
125  * All counters are monotonic. They are used for profiling of compute jobs.
126  * The profiling is done by userspace.
127  *
128  * In case of GPU reset, the counter should not be affected.
129  */
130 
132 {
133  uint64_t gpu_clock_counter; /* from KFD */
134  uint64_t cpu_clock_counter; /* from KFD */
135  uint64_t system_clock_counter; /* from KFD */
136  uint64_t system_clock_freq; /* from KFD */
137 
138  uint32_t gpu_id; /* to KFD */
139  uint32_t pad;
140 };
141 
143 {
144  uint64_t lds_base; /* from KFD */
145  uint64_t lds_limit; /* from KFD */
146  uint64_t scratch_base; /* from KFD */
147  uint64_t scratch_limit; /* from KFD */
148  uint64_t gpuvm_base; /* from KFD */
149  uint64_t gpuvm_limit; /* from KFD */
150  uint32_t gpu_id; /* from KFD */
151  uint32_t pad;
152 };
153 
154 /*
155  * AMDKFD_IOC_GET_PROCESS_APERTURES is deprecated. Use
156  * AMDKFD_IOC_GET_PROCESS_APERTURES_NEW instead, which supports an
157  * unlimited number of GPUs.
158  */
159 #define NUM_OF_SUPPORTED_GPUS 7
161 {
164 
165  /* from KFD, should be in the range [1 - NUM_OF_SUPPORTED_GPUS] */
166  uint32_t num_of_nodes;
167  uint32_t pad;
168 };
169 
171 {
172  /* User allocated. Pointer to struct kfd_process_device_apertures
173  * filled in by Kernel
174  */
176  /* to KFD - indicates amount of memory present in
177  * kfd_process_device_apertures_ptr
178  * from KFD - Number of entries filled by KFD.
179  */
180  uint32_t num_of_nodes;
181  uint32_t pad;
182 };
183 
184 #define MAX_ALLOWED_NUM_POINTS 100
185 #define MAX_ALLOWED_AW_BUFF_SIZE 4096
186 #define MAX_ALLOWED_WAC_BUFF_SIZE 128
187 
189 {
190  uint32_t gpu_id; /* to KFD */
191  uint32_t pad;
192 };
193 
195 {
196  uint32_t gpu_id; /* to KFD */
197  uint32_t pad;
198 };
199 
201 {
202  uint64_t content_ptr; /* a pointer to the actual content */
203  uint32_t gpu_id; /* to KFD */
204  uint32_t buf_size_in_bytes; /*including gpu_id and buf_size */
205 };
206 
208 {
209  uint64_t content_ptr; /* a pointer to the actual content */
210  uint32_t gpu_id; /* to KFD */
211  uint32_t buf_size_in_bytes; /*including gpu_id and buf_size */
212 };
213 
214 /* Matching HSA_EVENTTYPE */
215 #define KFD_IOC_EVENT_SIGNAL 0
216 #define KFD_IOC_EVENT_NODECHANGE 1
217 #define KFD_IOC_EVENT_DEVICESTATECHANGE 2
218 #define KFD_IOC_EVENT_HW_EXCEPTION 3
219 #define KFD_IOC_EVENT_SYSTEM_EVENT 4
220 #define KFD_IOC_EVENT_DEBUG_EVENT 5
221 #define KFD_IOC_EVENT_PROFILE_EVENT 6
222 #define KFD_IOC_EVENT_QUEUE_EVENT 7
223 #define KFD_IOC_EVENT_MEMORY 8
224 
225 #define KFD_IOC_WAIT_RESULT_COMPLETE 0
226 #define KFD_IOC_WAIT_RESULT_TIMEOUT 1
227 #define KFD_IOC_WAIT_RESULT_FAIL 2
228 
229 #define KFD_SIGNAL_EVENT_LIMIT 4096
230 
231 /* For kfd_event_data.hw_exception_data.reset_type. */
232 #define KFD_HW_EXCEPTION_WHOLE_GPU_RESET 0
233 #define KFD_HW_EXCEPTION_PER_ENGINE_RESET 1
234 
235 /* For kfd_event_data.hw_exception_data.reset_cause. */
236 #define KFD_HW_EXCEPTION_GPU_HANG 0
237 #define KFD_HW_EXCEPTION_ECC 1
238 
239 /* For kfd_hsa_memory_exception_data.ErrorType */
240 #define KFD_MEM_ERR_NO_RAS 0
241 #define KFD_MEM_ERR_SRAM_ECC 1
242 #define KFD_MEM_ERR_POISON_CONSUMED 2
243 #define KFD_MEM_ERR_GPU_HANG 3
244 
246 {
247  uint64_t event_page_offset; /* from KFD */
248  uint32_t event_trigger_data; /* from KFD - signal events only */
249  uint32_t event_type; /* to KFD */
250  uint32_t auto_reset; /* to KFD */
251  uint32_t node_id; /* to KFD - only valid for certain
252  event types */
253  uint32_t event_id; /* from KFD */
254  uint32_t event_slot_index; /* from KFD */
255 };
256 
258 {
259  uint32_t event_id; /* to KFD */
260  uint32_t pad;
261 };
262 
264 {
265  uint32_t event_id; /* to KFD */
266  uint32_t pad;
267 };
268 
270 {
271  uint32_t event_id; /* to KFD */
272  uint32_t pad;
273 };
274 
276 {
277  uint32_t NotPresent; /* Page not present or supervisor privilege */
278  uint32_t ReadOnly; /* Write access to a read-only page */
279  uint32_t NoExecute; /* Execute access to a page marked NX */
280  uint32_t imprecise; /* Can't determine the exact fault address */
281 };
282 
283 /* memory exception data */
285 {
287  uint64_t va;
288  uint32_t gpu_id;
289  uint32_t ErrorType; /* 0 = no RAS error,
290  * 1 = ECC_SRAM,
291  * 2 = Link_SYNFLOOD (poison),
292  * 3 = GPU hang(not attributable to a specific cause),
293  * other values reserved
294  */
295 };
296 
297 /* hw exception data */
299 {
300  uint32_t reset_type;
301  uint32_t reset_cause;
302  uint32_t memory_lost;
303  uint32_t gpu_id;
304 };
305 
306 /* Event data */
308 {
309  union
310  {
313  }; /* From KFD */
314  uint64_t kfd_event_data_ext; /* pointer to an extension structure
315  for future exception types */
316  uint32_t event_id; /* to KFD */
317  uint32_t pad;
318 };
319 
321 {
322  uint64_t events_ptr; /* pointed to struct
323  kfd_event_data array, to KFD */
324  uint32_t num_events; /* to KFD */
325  uint32_t wait_for_all; /* to KFD */
326  uint32_t timeout; /* to KFD */
327  uint32_t wait_result; /* from KFD */
328 };
329 
331 {
332  uint64_t va_addr; /* to KFD */
333  uint32_t gpu_id; /* to KFD */
334  uint32_t pad;
335 };
336 
338 {
339  /* to KFD: pointer to tile array */
340  uint64_t tile_config_ptr;
341  /* to KFD: pointer to macro tile array */
343  /* to KFD: array size allocated by user mode
344  * from KFD: array size filled by kernel
345  */
347  /* to KFD: array size allocated by user mode
348  * from KFD: array size filled by kernel
349  */
351 
352  uint32_t gpu_id; /* to KFD */
353  uint32_t gb_addr_config; /* from KFD */
354  uint32_t num_banks; /* from KFD */
355  uint32_t num_ranks; /* from KFD */
356  /* struct size can be extended later if needed
357  * without breaking ABI compatibility
358  */
359 };
360 
362 {
363  uint64_t tba_addr; /* to KFD */
364  uint64_t tma_addr; /* to KFD */
365  uint32_t gpu_id; /* to KFD */
366  uint32_t pad;
367 };
368 
370 {
371  uint32_t drm_fd; /* to KFD */
372  uint32_t gpu_id; /* to KFD */
373 };
374 
375 /* Allocation flags: memory types */
376 #define KFD_IOC_ALLOC_MEM_FLAGS_VRAM (1 << 0)
377 #define KFD_IOC_ALLOC_MEM_FLAGS_GTT (1 << 1)
378 #define KFD_IOC_ALLOC_MEM_FLAGS_USERPTR (1 << 2)
379 #define KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL (1 << 3)
380 #define KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP (1 << 4)
381 /* Allocation flags: attributes/access options */
382 #define KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE (1 << 31)
383 #define KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE (1 << 30)
384 #define KFD_IOC_ALLOC_MEM_FLAGS_PUBLIC (1 << 29)
385 #define KFD_IOC_ALLOC_MEM_FLAGS_NO_SUBSTITUTE (1 << 28)
386 #define KFD_IOC_ALLOC_MEM_FLAGS_AQL_QUEUE_MEM (1 << 27)
387 #define KFD_IOC_ALLOC_MEM_FLAGS_COHERENT (1 << 26)
388 
389 /* Allocate memory for later SVM (shared virtual memory) mapping.
390  *
391  * @va_addr: virtual address of the memory to be allocated
392  * all later mappings on all GPUs will use this address
393  * @size: size in bytes
394  * @handle: buffer handle returned to user mode, used to refer to
395  * this allocation for mapping, unmapping and freeing
396  * @mmap_offset: for CPU-mapping the allocation by mmapping a render node
397  * for userptrs this is overloaded to specify the CPU address
398  * @gpu_id: device identifier
399  * @flags: memory type and attributes. See KFD_IOC_ALLOC_MEM_FLAGS above
400  */
402 {
403  uint64_t va_addr; /* to KFD */
404  uint64_t size; /* to KFD */
405  uint64_t handle; /* from KFD */
406  uint64_t mmap_offset; /* to KFD (userptr), from KFD (mmap offset) */
407  uint32_t gpu_id; /* to KFD */
408  uint32_t flags;
409 };
410 
411 /* Free memory allocated with kfd_ioctl_alloc_memory_of_gpu
412  *
413  * @handle: memory handle returned by alloc
414  */
416 {
417  uint64_t handle; /* to KFD */
418 };
419 
420 /* Map memory to one or more GPUs
421  *
422  * @handle: memory handle returned by alloc
423  * @device_ids_array_ptr: array of gpu_ids (uint32_t per device)
424  * @n_devices: number of devices in the array
425  * @n_success: number of devices mapped successfully
426  *
427  * @n_success returns information to the caller how many devices from
428  * the start of the array have mapped the buffer successfully. It can
429  * be passed into a subsequent retry call to skip those devices. For
430  * the first call the caller should initialize it to 0.
431  *
432  * If the ioctl completes with return code 0 (success), n_success ==
433  * n_devices.
434  */
436 {
437  uint64_t handle; /* to KFD */
438  uint64_t device_ids_array_ptr; /* to KFD */
439  uint32_t n_devices; /* to KFD */
440  uint32_t n_success; /* to/from KFD */
441 };
442 
443 /* Unmap memory from one or more GPUs
444  *
445  * same arguments as for mapping
446  */
448 {
449  uint64_t handle; /* to KFD */
450  uint64_t device_ids_array_ptr; /* to KFD */
451  uint32_t n_devices; /* to KFD */
452  uint32_t n_success; /* to/from KFD */
453 };
454 
455 /* Allocate GWS for specific queue
456  *
457  * @queue_id: queue's id that GWS is allocated for
458  * @num_gws: how many GWS to allocate
459  * @first_gws: index of the first GWS allocated.
460  * only support contiguous GWS allocation
461  */
463 {
464  uint32_t queue_id; /* to KFD */
465  uint32_t num_gws; /* to KFD */
466  uint32_t first_gws; /* from KFD */
467  uint32_t pad;
468 };
469 
471 {
472  uint64_t size; /* from KFD */
473  uint64_t metadata_ptr; /* to KFD */
474  uint32_t metadata_size; /* to KFD (space allocated by user)
475  * from KFD (actual metadata size) */
476  uint32_t gpu_id; /* from KFD */
477  uint32_t flags; /* from KFD (KFD_IOC_ALLOC_MEM_FLAGS) */
478  uint32_t dmabuf_fd; /* to KFD */
479 };
480 
482 {
483  uint64_t va_addr; /* to KFD */
484  uint64_t handle; /* from KFD */
485  uint32_t gpu_id; /* to KFD */
486  uint32_t dmabuf_fd; /* to KFD */
487 };
488 
489 /*
490  * KFD SMI(System Management Interface) events
491  */
493 {
494  KFD_SMI_EVENT_NONE = 0, /* not used */
495  KFD_SMI_EVENT_VMFAULT = 1, /* event start counting at 1 */
499 };
500 
501 #define KFD_SMI_EVENT_MASK_FROM_INDEX(i) (1ULL << ((i) - 1))
502 
504 {
505  uint32_t gpuid; /* to KFD */
506  uint32_t anon_fd; /* from KFD */
507 };
508 
509 /* Register offset inside the remapped mmio page
510  */
512 {
515 };
516 
517 #define AMDKFD_IOCTL_BASE 'K'
518 #define AMDKFD_IO(nr) _IO(AMDKFD_IOCTL_BASE, nr)
519 #define AMDKFD_IOR(nr, type) _IOR(AMDKFD_IOCTL_BASE, nr, type)
520 #define AMDKFD_IOW(nr, type) _IOW(AMDKFD_IOCTL_BASE, nr, type)
521 #define AMDKFD_IOWR(nr, type) _IOWR(AMDKFD_IOCTL_BASE, nr, type)
522 
523 #define AMDKFD_IOC_GET_VERSION \
524  AMDKFD_IOR(0x01, struct kfd_ioctl_get_version_args)
525 
526 #define AMDKFD_IOC_CREATE_QUEUE \
527  AMDKFD_IOWR(0x02, struct kfd_ioctl_create_queue_args)
528 
529 #define AMDKFD_IOC_DESTROY_QUEUE \
530  AMDKFD_IOWR(0x03, struct kfd_ioctl_destroy_queue_args)
531 
532 #define AMDKFD_IOC_SET_MEMORY_POLICY \
533  AMDKFD_IOW(0x04, struct kfd_ioctl_set_memory_policy_args)
534 
535 #define AMDKFD_IOC_GET_CLOCK_COUNTERS \
536  AMDKFD_IOWR(0x05, struct kfd_ioctl_get_clock_counters_args)
537 
538 #define AMDKFD_IOC_GET_PROCESS_APERTURES \
539  AMDKFD_IOR(0x06, struct kfd_ioctl_get_process_apertures_args)
540 
541 #define AMDKFD_IOC_UPDATE_QUEUE \
542  AMDKFD_IOW(0x07, struct kfd_ioctl_update_queue_args)
543 
544 #define AMDKFD_IOC_CREATE_EVENT \
545  AMDKFD_IOWR(0x08, struct kfd_ioctl_create_event_args)
546 
547 #define AMDKFD_IOC_DESTROY_EVENT \
548  AMDKFD_IOW(0x09, struct kfd_ioctl_destroy_event_args)
549 
550 #define AMDKFD_IOC_SET_EVENT \
551  AMDKFD_IOW(0x0A, struct kfd_ioctl_set_event_args)
552 
553 #define AMDKFD_IOC_RESET_EVENT \
554  AMDKFD_IOW(0x0B, struct kfd_ioctl_reset_event_args)
555 
556 #define AMDKFD_IOC_WAIT_EVENTS \
557  AMDKFD_IOWR(0x0C, struct kfd_ioctl_wait_events_args)
558 
559 #define AMDKFD_IOC_DBG_REGISTER \
560  AMDKFD_IOW(0x0D, struct kfd_ioctl_dbg_register_args)
561 
562 #define AMDKFD_IOC_DBG_UNREGISTER \
563  AMDKFD_IOW(0x0E, struct kfd_ioctl_dbg_unregister_args)
564 
565 #define AMDKFD_IOC_DBG_ADDRESS_WATCH \
566  AMDKFD_IOW(0x0F, struct kfd_ioctl_dbg_address_watch_args)
567 
568 #define AMDKFD_IOC_DBG_WAVE_CONTROL \
569  AMDKFD_IOW(0x10, struct kfd_ioctl_dbg_wave_control_args)
570 
571 #define AMDKFD_IOC_SET_SCRATCH_BACKING_VA \
572  AMDKFD_IOWR(0x11, struct kfd_ioctl_set_scratch_backing_va_args)
573 
574 #define AMDKFD_IOC_GET_TILE_CONFIG \
575  AMDKFD_IOWR(0x12, struct kfd_ioctl_get_tile_config_args)
576 
577 #define AMDKFD_IOC_SET_TRAP_HANDLER \
578  AMDKFD_IOW(0x13, struct kfd_ioctl_set_trap_handler_args)
579 
580 #define AMDKFD_IOC_GET_PROCESS_APERTURES_NEW \
581  AMDKFD_IOWR(0x14, \
582  struct kfd_ioctl_get_process_apertures_new_args)
583 
584 #define AMDKFD_IOC_ACQUIRE_VM \
585  AMDKFD_IOW(0x15, struct kfd_ioctl_acquire_vm_args)
586 
587 #define AMDKFD_IOC_ALLOC_MEMORY_OF_GPU \
588  AMDKFD_IOWR(0x16, struct kfd_ioctl_alloc_memory_of_gpu_args)
589 
590 #define AMDKFD_IOC_FREE_MEMORY_OF_GPU \
591  AMDKFD_IOW(0x17, struct kfd_ioctl_free_memory_of_gpu_args)
592 
593 #define AMDKFD_IOC_MAP_MEMORY_TO_GPU \
594  AMDKFD_IOWR(0x18, struct kfd_ioctl_map_memory_to_gpu_args)
595 
596 #define AMDKFD_IOC_UNMAP_MEMORY_FROM_GPU \
597  AMDKFD_IOWR(0x19, struct kfd_ioctl_unmap_memory_from_gpu_args)
598 
599 #define AMDKFD_IOC_SET_CU_MASK \
600  AMDKFD_IOW(0x1A, struct kfd_ioctl_set_cu_mask_args)
601 
602 #define AMDKFD_IOC_GET_QUEUE_WAVE_STATE \
603  AMDKFD_IOWR(0x1B, struct kfd_ioctl_get_queue_wave_state_args)
604 
605 #define AMDKFD_IOC_GET_DMABUF_INFO \
606  AMDKFD_IOWR(0x1C, struct kfd_ioctl_get_dmabuf_info_args)
607 
608 #define AMDKFD_IOC_IMPORT_DMABUF \
609  AMDKFD_IOWR(0x1D, struct kfd_ioctl_import_dmabuf_args)
610 
611 #define AMDKFD_IOC_ALLOC_QUEUE_GWS \
612  AMDKFD_IOWR(0x1E, struct kfd_ioctl_alloc_queue_gws_args)
613 
614 #define AMDKFD_IOC_SMI_EVENTS \
615  AMDKFD_IOWR(0x1F, struct kfd_ioctl_smi_events_args)
616 
617 #define AMDKFD_COMMAND_START 0x01
618 #define AMDKFD_COMMAND_END 0x20
619 
620 } // namespace gem5
621 
622 #endif
gem5::kfd_ioctl_create_queue_args::queue_priority
uint32_t queue_priority
Definition: kfd_ioctl.h:67
gem5::kfd_ioctl_import_dmabuf_args::handle
uint64_t handle
Definition: kfd_ioctl.h:484
gem5::kfd_event_data
Definition: kfd_ioctl.h:307
gem5::kfd_ioctl_get_tile_config_args::num_macro_tile_configs
uint32_t num_macro_tile_configs
Definition: kfd_ioctl.h:350
gem5::kfd_process_device_apertures::pad
uint32_t pad
Definition: kfd_ioctl.h:151
gem5::kfd_hsa_hw_exception_data::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:303
gem5::kfd_memory_exception_failure
Definition: kfd_ioctl.h:275
gem5::kfd_ioctl_dbg_address_watch_args::content_ptr
uint64_t content_ptr
Definition: kfd_ioctl.h:202
gem5::kfd_ioctl_get_process_apertures_new_args::pad
uint32_t pad
Definition: kfd_ioctl.h:181
gem5::kfd_ioctl_wait_events_args::events_ptr
uint64_t events_ptr
Definition: kfd_ioctl.h:322
gem5::kfd_ioctl_alloc_queue_gws_args
Definition: kfd_ioctl.h:462
gem5::kfd_ioctl_get_process_apertures_new_args::num_of_nodes
uint32_t num_of_nodes
Definition: kfd_ioctl.h:180
gem5::kfd_memory_exception_failure::NotPresent
uint32_t NotPresent
Definition: kfd_ioctl.h:277
gem5::kfd_ioctl_set_event_args::event_id
uint32_t event_id
Definition: kfd_ioctl.h:265
gem5::kfd_ioctl_create_queue_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:64
gem5::kfd_ioctl_get_queue_wave_state_args::ctl_stack_used_size
uint32_t ctl_stack_used_size
Definition: kfd_ioctl.h:103
gem5::kfd_process_device_apertures::lds_base
uint64_t lds_base
Definition: kfd_ioctl.h:144
gem5::kfd_ioctl_create_queue_args
Definition: kfd_ioctl.h:56
gem5::kfd_ioctl_get_queue_wave_state_args::ctl_stack_address
uint64_t ctl_stack_address
Definition: kfd_ioctl.h:102
gem5::kfd_hsa_memory_exception_data::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:288
gem5::kfd_ioctl_alloc_memory_of_gpu_args
Definition: kfd_ioctl.h:401
gem5::kfd_ioctl_alloc_queue_gws_args::first_gws
uint32_t first_gws
Definition: kfd_ioctl.h:466
gem5::kfd_ioctl_dbg_address_watch_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:203
gem5::kfd_ioctl_set_trap_handler_args
Definition: kfd_ioctl.h:361
gem5::kfd_ioctl_map_memory_to_gpu_args::n_success
uint32_t n_success
Definition: kfd_ioctl.h:440
gem5::kfd_ioctl_get_tile_config_args
Definition: kfd_ioctl.h:337
gem5::kfd_ioctl_map_memory_to_gpu_args
Definition: kfd_ioctl.h:435
gem5::kfd_ioctl_create_event_args::event_slot_index
uint32_t event_slot_index
Definition: kfd_ioctl.h:254
gem5::kfd_process_device_apertures
Definition: kfd_ioctl.h:142
gem5::kfd_ioctl_import_dmabuf_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:485
gem5::kfd_hsa_memory_exception_data
Definition: kfd_ioctl.h:284
gem5::kfd_ioctl_update_queue_args::queue_percentage
uint32_t queue_percentage
Definition: kfd_ioctl.h:89
gem5::kfd_ioctl_set_memory_policy_args::alternate_aperture_size
uint64_t alternate_aperture_size
Definition: kfd_ioctl.h:116
gem5::kfd_ioctl_create_event_args::event_type
uint32_t event_type
Definition: kfd_ioctl.h:249
gem5::kfd_process_device_apertures::gpuvm_base
uint64_t gpuvm_base
Definition: kfd_ioctl.h:148
gem5::kfd_ioctl_dbg_wave_control_args::content_ptr
uint64_t content_ptr
Definition: kfd_ioctl.h:209
gem5::kfd_ioctl_set_scratch_backing_va_args
Definition: kfd_ioctl.h:330
gem5::KFD_SMI_EVENT_GPU_PRE_RESET
@ KFD_SMI_EVENT_GPU_PRE_RESET
Definition: kfd_ioctl.h:497
gem5::KFD_MMIO_REMAP_HDP_REG_FLUSH_CNTL
@ KFD_MMIO_REMAP_HDP_REG_FLUSH_CNTL
Definition: kfd_ioctl.h:514
gem5::kfd_ioctl_dbg_register_args
Definition: kfd_ioctl.h:188
gem5::kfd_hsa_memory_exception_data::ErrorType
uint32_t ErrorType
Definition: kfd_ioctl.h:289
gem5::kfd_ioctl_update_queue_args
Definition: kfd_ioctl.h:83
gem5::kfd_ioctl_set_scratch_backing_va_args::va_addr
uint64_t va_addr
Definition: kfd_ioctl.h:332
gem5::kfd_ioctl_get_queue_wave_state_args
Definition: kfd_ioctl.h:100
gem5::kfd_ioctl_get_queue_wave_state_args::save_area_used_size
uint32_t save_area_used_size
Definition: kfd_ioctl.h:104
gem5::kfd_ioctl_get_dmabuf_info_args::size
uint64_t size
Definition: kfd_ioctl.h:472
gem5::kfd_ioctl_unmap_memory_from_gpu_args
Definition: kfd_ioctl.h:447
gem5::kfd_ioctl_alloc_queue_gws_args::num_gws
uint32_t num_gws
Definition: kfd_ioctl.h:465
gem5::kfd_ioctl_get_version_args
Definition: kfd_ioctl.h:41
gem5::kfd_ioctl_get_tile_config_args::tile_config_ptr
uint64_t tile_config_ptr
Definition: kfd_ioctl.h:340
gem5::kfd_ioctl_set_memory_policy_args
Definition: kfd_ioctl.h:113
gem5::kfd_ioctl_set_cu_mask_args::num_cu_mask
uint32_t num_cu_mask
Definition: kfd_ioctl.h:96
gem5::KFD_SMI_EVENT_VMFAULT
@ KFD_SMI_EVENT_VMFAULT
Definition: kfd_ioctl.h:495
gem5::kfd_memory_exception_failure::imprecise
uint32_t imprecise
Definition: kfd_ioctl.h:280
gem5::kfd_ioctl_get_version_args::minor_version
uint32_t minor_version
Definition: kfd_ioctl.h:44
gem5::kfd_ioctl_get_queue_wave_state_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:105
gem5::kfd_ioctl_get_process_apertures_new_args::kfd_process_device_apertures_ptr
uint64_t kfd_process_device_apertures_ptr
Definition: kfd_ioctl.h:175
gem5::kfd_event_data::kfd_event_data_ext
uint64_t kfd_event_data_ext
Definition: kfd_ioctl.h:314
gem5::kfd_hsa_hw_exception_data::memory_lost
uint32_t memory_lost
Definition: kfd_ioctl.h:302
gem5::kfd_hsa_memory_exception_data::va
uint64_t va
Definition: kfd_ioctl.h:287
gem5::kfd_ioctl_alloc_queue_gws_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:464
gem5::kfd_ioctl_set_memory_policy_args::default_policy
uint32_t default_policy
Definition: kfd_ioctl.h:119
gem5::kfd_process_device_apertures::scratch_base
uint64_t scratch_base
Definition: kfd_ioctl.h:146
gem5::kfd_ioctl_get_tile_config_args::gb_addr_config
uint32_t gb_addr_config
Definition: kfd_ioctl.h:353
gem5::kfd_ioctl_create_queue_args::ctx_save_restore_size
uint32_t ctx_save_restore_size
Definition: kfd_ioctl.h:73
gem5::kfd_ioctl_create_queue_args::ring_size
uint32_t ring_size
Definition: kfd_ioctl.h:63
gem5::kfd_hsa_hw_exception_data
Definition: kfd_ioctl.h:298
gem5::kfd_ioctl_set_cu_mask_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:95
gem5::kfd_ioctl_get_dmabuf_info_args::dmabuf_fd
uint32_t dmabuf_fd
Definition: kfd_ioctl.h:478
gem5::kfd_ioctl_get_dmabuf_info_args::metadata_ptr
uint64_t metadata_ptr
Definition: kfd_ioctl.h:473
gem5::kfd_ioctl_set_cu_mask_args
Definition: kfd_ioctl.h:93
gem5::kfd_ioctl_get_tile_config_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:352
gem5::kfd_ioctl_dbg_address_watch_args::buf_size_in_bytes
uint32_t buf_size_in_bytes
Definition: kfd_ioctl.h:204
gem5::kfd_ioctl_get_tile_config_args::num_ranks
uint32_t num_ranks
Definition: kfd_ioctl.h:355
gem5::kfd_ioctl_set_cu_mask_args::cu_mask_ptr
uint64_t cu_mask_ptr
Definition: kfd_ioctl.h:97
gem5::kfd_ioctl_acquire_vm_args
Definition: kfd_ioctl.h:369
gem5::kfd_ioctl_dbg_wave_control_args
Definition: kfd_ioctl.h:207
gem5::kfd_ioctl_get_queue_wave_state_args::pad
uint32_t pad
Definition: kfd_ioctl.h:106
gem5::kfd_ioctl_get_clock_counters_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:138
gem5::kfd_ioctl_import_dmabuf_args
Definition: kfd_ioctl.h:481
gem5::kfd_ioctl_free_memory_of_gpu_args
Definition: kfd_ioctl.h:415
gem5::kfd_ioctl_destroy_queue_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:79
gem5::kfd_ioctl_acquire_vm_args::drm_fd
uint32_t drm_fd
Definition: kfd_ioctl.h:371
gem5::kfd_memory_exception_failure::ReadOnly
uint32_t ReadOnly
Definition: kfd_ioctl.h:278
gem5::kfd_ioctl_get_clock_counters_args::system_clock_freq
uint64_t system_clock_freq
Definition: kfd_ioctl.h:136
gem5::kfd_ioctl_alloc_memory_of_gpu_args::flags
uint32_t flags
Definition: kfd_ioctl.h:408
gem5::kfd_ioctl_smi_events_args::gpuid
uint32_t gpuid
Definition: kfd_ioctl.h:505
gem5::kfd_ioctl_get_tile_config_args::num_tile_configs
uint32_t num_tile_configs
Definition: kfd_ioctl.h:346
gem5::kfd_ioctl_dbg_unregister_args
Definition: kfd_ioctl.h:194
gem5::kfd_ioctl_destroy_queue_args
Definition: kfd_ioctl.h:77
gem5::kfd_ioctl_get_clock_counters_args
Definition: kfd_ioctl.h:131
gem5::kfd_memory_exception_failure::NoExecute
uint32_t NoExecute
Definition: kfd_ioctl.h:279
gem5::kfd_ioctl_create_queue_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:68
gem5::kfd_ioctl_get_tile_config_args::num_banks
uint32_t num_banks
Definition: kfd_ioctl.h:354
gem5::kfd_ioctl_get_dmabuf_info_args::metadata_size
uint32_t metadata_size
Definition: kfd_ioctl.h:474
gem5::kfd_ioctl_get_tile_config_args::macro_tile_config_ptr
uint64_t macro_tile_config_ptr
Definition: kfd_ioctl.h:342
gem5::kfd_ioctl_get_clock_counters_args::pad
uint32_t pad
Definition: kfd_ioctl.h:139
gem5::kfd_ioctl_get_version_args::major_version
uint32_t major_version
Definition: kfd_ioctl.h:43
gem5::kfd_hsa_hw_exception_data::reset_type
uint32_t reset_type
Definition: kfd_ioctl.h:300
gem5::kfd_event_data::event_id
uint32_t event_id
Definition: kfd_ioctl.h:316
gem5::kfd_ioctl_alloc_queue_gws_args::pad
uint32_t pad
Definition: kfd_ioctl.h:467
gem5::kfd_ioctl_create_queue_args::queue_type
uint32_t queue_type
Definition: kfd_ioctl.h:65
gem5::kfd_ioctl_set_trap_handler_args::tba_addr
uint64_t tba_addr
Definition: kfd_ioctl.h:363
gem5::kfd_ioctl_create_event_args::event_id
uint32_t event_id
Definition: kfd_ioctl.h:253
gem5::kfd_ioctl_create_event_args::event_trigger_data
uint32_t event_trigger_data
Definition: kfd_ioctl.h:248
gem5::kfd_ioctl_smi_events_args
Definition: kfd_ioctl.h:503
gem5::KFD_SMI_EVENT_THERMAL_THROTTLE
@ KFD_SMI_EVENT_THERMAL_THROTTLE
Definition: kfd_ioctl.h:496
gem5::kfd_ioctl_get_dmabuf_info_args::flags
uint32_t flags
Definition: kfd_ioctl.h:477
gem5::kfd_ioctl_unmap_memory_from_gpu_args::handle
uint64_t handle
Definition: kfd_ioctl.h:449
gem5::kfd_ioctl_map_memory_to_gpu_args::handle
uint64_t handle
Definition: kfd_ioctl.h:437
gem5::kfd_ioctl_create_queue_args::eop_buffer_size
uint64_t eop_buffer_size
Definition: kfd_ioctl.h:71
gem5::kfd_ioctl_set_event_args
Definition: kfd_ioctl.h:263
gem5::kfd_ioctl_create_event_args::event_page_offset
uint64_t event_page_offset
Definition: kfd_ioctl.h:247
gem5::kfd_ioctl_acquire_vm_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:372
gem5::kfd_ioctl_get_clock_counters_args::gpu_clock_counter
uint64_t gpu_clock_counter
Definition: kfd_ioctl.h:133
gem5::kfd_ioctl_reset_event_args::event_id
uint32_t event_id
Definition: kfd_ioctl.h:271
gem5::kfd_event_data::hw_exception_data
struct kfd_hsa_hw_exception_data hw_exception_data
Definition: kfd_ioctl.h:312
gem5::kfd_ioctl_set_memory_policy_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:118
gem5::kfd_ioctl_smi_events_args::anon_fd
uint32_t anon_fd
Definition: kfd_ioctl.h:506
gem5::kfd_ioctl_reset_event_args::pad
uint32_t pad
Definition: kfd_ioctl.h:272
gem5::kfd_ioctl_wait_events_args::num_events
uint32_t num_events
Definition: kfd_ioctl.h:324
gem5::kfd_ioctl_create_queue_args::ring_base_address
uint64_t ring_base_address
Definition: kfd_ioctl.h:58
gem5::kfd_ioctl_dbg_wave_control_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:210
gem5::kfd_ioctl_destroy_queue_args::pad
uint32_t pad
Definition: kfd_ioctl.h:80
gem5::kfd_ioctl_set_trap_handler_args::tma_addr
uint64_t tma_addr
Definition: kfd_ioctl.h:364
gem5::kfd_hsa_memory_exception_data::failure
struct kfd_memory_exception_failure failure
Definition: kfd_ioctl.h:286
gem5::kfd_ioctl_get_process_apertures_args::num_of_nodes
uint32_t num_of_nodes
Definition: kfd_ioctl.h:166
gem5::kfd_ioctl_create_queue_args::eop_buffer_address
uint64_t eop_buffer_address
Definition: kfd_ioctl.h:70
gem5::kfd_process_device_apertures::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:150
gem5::kfd_ioctl_set_event_args::pad
uint32_t pad
Definition: kfd_ioctl.h:266
gem5::kfd_ioctl_destroy_event_args::event_id
uint32_t event_id
Definition: kfd_ioctl.h:259
gem5::kfd_ioctl_dbg_register_args::pad
uint32_t pad
Definition: kfd_ioctl.h:191
gem5::kfd_ioctl_map_memory_to_gpu_args::n_devices
uint32_t n_devices
Definition: kfd_ioctl.h:439
gem5::kfd_ioctl_dbg_unregister_args::pad
uint32_t pad
Definition: kfd_ioctl.h:197
gem5::kfd_process_device_apertures::lds_limit
uint64_t lds_limit
Definition: kfd_ioctl.h:145
gem5::kfd_ioctl_get_clock_counters_args::cpu_clock_counter
uint64_t cpu_clock_counter
Definition: kfd_ioctl.h:134
gem5::kfd_ioctl_set_scratch_backing_va_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:333
gem5::kfd_ioctl_set_memory_policy_args::pad
uint32_t pad
Definition: kfd_ioctl.h:121
gem5::kfd_ioctl_alloc_memory_of_gpu_args::va_addr
uint64_t va_addr
Definition: kfd_ioctl.h:403
gem5::kfd_ioctl_create_queue_args::ctl_stack_size
uint32_t ctl_stack_size
Definition: kfd_ioctl.h:74
gem5::kfd_ioctl_set_memory_policy_args::alternate_policy
uint32_t alternate_policy
Definition: kfd_ioctl.h:120
gem5::kfd_process_device_apertures::gpuvm_limit
uint64_t gpuvm_limit
Definition: kfd_ioctl.h:149
gem5::kfd_ioctl_unmap_memory_from_gpu_args::device_ids_array_ptr
uint64_t device_ids_array_ptr
Definition: kfd_ioctl.h:450
gem5::kfd_ioctl_create_event_args::auto_reset
uint32_t auto_reset
Definition: kfd_ioctl.h:250
gem5::kfd_ioctl_unmap_memory_from_gpu_args::n_devices
uint32_t n_devices
Definition: kfd_ioctl.h:451
gem5::kfd_ioctl_alloc_memory_of_gpu_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:407
gem5::kfd_ioctl_free_memory_of_gpu_args::handle
uint64_t handle
Definition: kfd_ioctl.h:417
gem5::kfd_event_data::memory_exception_data
struct kfd_hsa_memory_exception_data memory_exception_data
Definition: kfd_ioctl.h:311
gem5::kfd_ioctl_create_event_args::node_id
uint32_t node_id
Definition: kfd_ioctl.h:251
gem5::KFD_SMI_EVENT_GPU_POST_RESET
@ KFD_SMI_EVENT_GPU_POST_RESET
Definition: kfd_ioctl.h:498
gem5::kfd_ioctl_get_process_apertures_new_args
Definition: kfd_ioctl.h:170
gem5::kfd_ioctl_get_dmabuf_info_args
Definition: kfd_ioctl.h:470
gem5::kfd_ioctl_import_dmabuf_args::dmabuf_fd
uint32_t dmabuf_fd
Definition: kfd_ioctl.h:486
gem5::kfd_smi_event
kfd_smi_event
Definition: kfd_ioctl.h:492
gem5::kfd_ioctl_create_queue_args::ctx_save_restore_address
uint64_t ctx_save_restore_address
Definition: kfd_ioctl.h:72
gem5::kfd_ioctl_set_trap_handler_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:365
gem5::kfd_ioctl_unmap_memory_from_gpu_args::n_success
uint32_t n_success
Definition: kfd_ioctl.h:452
gem5::kfd_ioctl_map_memory_to_gpu_args::device_ids_array_ptr
uint64_t device_ids_array_ptr
Definition: kfd_ioctl.h:438
NUM_OF_SUPPORTED_GPUS
#define NUM_OF_SUPPORTED_GPUS
Definition: kfd_ioctl.h:159
gem5::kfd_event_data::pad
uint32_t pad
Definition: kfd_ioctl.h:317
gem5::kfd_ioctl_dbg_unregister_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:196
gem5::kfd_ioctl_dbg_address_watch_args
Definition: kfd_ioctl.h:200
gem5::kfd_ioctl_wait_events_args::wait_result
uint32_t wait_result
Definition: kfd_ioctl.h:327
gem5::kfd_ioctl_get_process_apertures_args::pad
uint32_t pad
Definition: kfd_ioctl.h:167
gem5::kfd_ioctl_create_queue_args::write_pointer_address
uint64_t write_pointer_address
Definition: kfd_ioctl.h:59
gem5::kfd_ioctl_destroy_event_args
Definition: kfd_ioctl.h:257
gem5::kfd_ioctl_update_queue_args::queue_id
uint32_t queue_id
Definition: kfd_ioctl.h:87
gem5::kfd_ioctl_update_queue_args::ring_size
uint32_t ring_size
Definition: kfd_ioctl.h:88
gem5::kfd_ioctl_get_process_apertures_args::process_apertures
struct kfd_process_device_apertures process_apertures[NUM_OF_SUPPORTED_GPUS]
Definition: kfd_ioctl.h:162
gem5::kfd_ioctl_set_scratch_backing_va_args::pad
uint32_t pad
Definition: kfd_ioctl.h:334
gem5::kfd_hsa_hw_exception_data::reset_cause
uint32_t reset_cause
Definition: kfd_ioctl.h:301
gem5::kfd_process_device_apertures::scratch_limit
uint64_t scratch_limit
Definition: kfd_ioctl.h:147
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::kfd_ioctl_set_memory_policy_args::alternate_aperture_base
uint64_t alternate_aperture_base
Definition: kfd_ioctl.h:115
gem5::kfd_ioctl_create_queue_args::doorbell_offset
uint64_t doorbell_offset
Definition: kfd_ioctl.h:61
gem5::kfd_ioctl_get_clock_counters_args::system_clock_counter
uint64_t system_clock_counter
Definition: kfd_ioctl.h:135
gem5::kfd_ioctl_wait_events_args::timeout
uint32_t timeout
Definition: kfd_ioctl.h:326
gem5::kfd_ioctl_update_queue_args::ring_base_address
uint64_t ring_base_address
Definition: kfd_ioctl.h:85
gem5::kfd_ioctl_get_dmabuf_info_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:476
gem5::KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL
@ KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL
Definition: kfd_ioctl.h:513
gem5::kfd_ioctl_alloc_memory_of_gpu_args::size
uint64_t size
Definition: kfd_ioctl.h:404
gem5::kfd_mmio_remap
kfd_mmio_remap
Definition: kfd_ioctl.h:511
gem5::kfd_ioctl_reset_event_args
Definition: kfd_ioctl.h:269
gem5::kfd_ioctl_create_event_args
Definition: kfd_ioctl.h:245
gem5::kfd_ioctl_destroy_event_args::pad
uint32_t pad
Definition: kfd_ioctl.h:260
gem5::kfd_ioctl_dbg_register_args::gpu_id
uint32_t gpu_id
Definition: kfd_ioctl.h:190
gem5::kfd_ioctl_alloc_memory_of_gpu_args::handle
uint64_t handle
Definition: kfd_ioctl.h:405
gem5::kfd_ioctl_update_queue_args::queue_priority
uint32_t queue_priority
Definition: kfd_ioctl.h:90
gem5::kfd_ioctl_create_queue_args::read_pointer_address
uint64_t read_pointer_address
Definition: kfd_ioctl.h:60
gem5::kfd_ioctl_wait_events_args
Definition: kfd_ioctl.h:320
gem5::kfd_ioctl_wait_events_args::wait_for_all
uint32_t wait_for_all
Definition: kfd_ioctl.h:325
gem5::kfd_ioctl_import_dmabuf_args::va_addr
uint64_t va_addr
Definition: kfd_ioctl.h:483
gem5::kfd_ioctl_alloc_memory_of_gpu_args::mmap_offset
uint64_t mmap_offset
Definition: kfd_ioctl.h:406
gem5::KFD_SMI_EVENT_NONE
@ KFD_SMI_EVENT_NONE
Definition: kfd_ioctl.h:494
gem5::kfd_ioctl_create_queue_args::queue_percentage
uint32_t queue_percentage
Definition: kfd_ioctl.h:66
gem5::kfd_ioctl_set_trap_handler_args::pad
uint32_t pad
Definition: kfd_ioctl.h:366
gem5::kfd_ioctl_dbg_wave_control_args::buf_size_in_bytes
uint32_t buf_size_in_bytes
Definition: kfd_ioctl.h:211
gem5::kfd_ioctl_get_process_apertures_args
Definition: kfd_ioctl.h:160

Generated on Tue Sep 7 2021 14:53:46 for gem5 by doxygen 1.8.17