gem5  v20.0.0.0
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 <linux/types.h>
27 #include <linux/ioctl.h>
28 
29 #define KFD_IOCTL_MAJOR_VERSION 1
30 #define KFD_IOCTL_MINOR_VERSION 2
31 
33  uint32_t major_version; /* from KFD */
34  uint32_t minor_version; /* from KFD */
35 };
36 
37 /* For kfd_ioctl_create_queue_args.queue_type. */
38 #define KFD_IOC_QUEUE_TYPE_COMPUTE 0
39 #define KFD_IOC_QUEUE_TYPE_SDMA 1
40 #define KFD_IOC_QUEUE_TYPE_COMPUTE_AQL 2
41 
42 #define KFD_MAX_QUEUE_PERCENTAGE 100
43 #define KFD_MAX_QUEUE_PRIORITY 15
44 
46  uint64_t ring_base_address; /* to KFD */
47  uint64_t write_pointer_address; /* from KFD */
48  uint64_t read_pointer_address; /* from KFD */
49  uint64_t doorbell_offset; /* from KFD */
50 
51  uint32_t ring_size; /* to KFD */
52  uint32_t gpu_id; /* to KFD */
53  uint32_t queue_type; /* to KFD */
54  uint32_t queue_percentage; /* to KFD */
55  uint32_t queue_priority; /* to KFD */
56  uint32_t queue_id; /* from KFD */
57 
58  uint64_t eop_buffer_address; /* to KFD */
59  uint64_t eop_buffer_size; /* to KFD */
60  uint64_t ctx_save_restore_address; /* to KFD */
61  uint32_t ctx_save_restore_size; /* to KFD */
62  uint32_t ctl_stack_size; /* to KFD */
63 };
64 
66  uint32_t queue_id; /* to KFD */
67  uint32_t pad;
68 };
69 
71  uint64_t ring_base_address; /* to KFD */
72 
73  uint32_t queue_id; /* to KFD */
74  uint32_t ring_size; /* to KFD */
75  uint32_t queue_percentage; /* to KFD */
76  uint32_t queue_priority; /* to KFD */
77 };
78 
80  uint32_t queue_id; /* to KFD */
81  uint32_t num_cu_mask; /* to KFD */
82  uint64_t cu_mask_ptr; /* to KFD */
83 };
84 
85 /* For kfd_ioctl_set_memory_policy_args.default_policy and alternate_policy */
86 #define KFD_IOC_CACHE_POLICY_COHERENT 0
87 #define KFD_IOC_CACHE_POLICY_NONCOHERENT 1
88 
90  uint64_t alternate_aperture_base; /* to KFD */
91  uint64_t alternate_aperture_size; /* to KFD */
92 
93  uint32_t gpu_id; /* to KFD */
94  uint32_t default_policy; /* to KFD */
95  uint32_t alternate_policy; /* to KFD */
96  uint32_t pad;
97 };
98 
100  uint64_t tba_addr;
101  uint64_t tma_addr;
102  uint32_t gpu_id; /* to KFD */
103  uint32_t pad;
104 };
105 
106 /*
107  * All counters are monotonic. They are used for profiling of compute jobs.
108  * The profiling is done by userspace.
109  *
110  * In case of GPU reset, the counter should not be affected.
111  */
112 
114  uint64_t gpu_clock_counter; /* from KFD */
115  uint64_t cpu_clock_counter; /* from KFD */
116  uint64_t system_clock_counter; /* from KFD */
117  uint64_t system_clock_freq; /* from KFD */
118 
119  uint32_t gpu_id; /* to KFD */
120  uint32_t pad;
121 };
122 
123 #define NUM_OF_SUPPORTED_GPUS 7
124 
126  uint64_t lds_base; /* from KFD */
127  uint64_t lds_limit; /* from KFD */
128  uint64_t scratch_base; /* from KFD */
129  uint64_t scratch_limit; /* from KFD */
130  uint64_t gpuvm_base; /* from KFD */
131  uint64_t gpuvm_limit; /* from KFD */
132  uint32_t gpu_id; /* from KFD */
133  uint32_t pad;
134 };
135 
136 /* This IOCTL and the limited NUM_OF_SUPPORTED_GPUS is deprecated. Use
137  * kfd_ioctl_get_process_apertures_new instead, which supports
138  * arbitrary numbers of GPUs.
139  */
142  process_apertures[NUM_OF_SUPPORTED_GPUS];/* from KFD */
143 
144  /* from KFD, should be in the range [1 - NUM_OF_SUPPORTED_GPUS] */
145  uint32_t num_of_nodes;
146  uint32_t pad;
147 };
148 
150  /* User allocated. Pointer to struct kfd_process_device_apertures
151  * filled in by Kernel
152  */
154  /* to KFD - indicates amount of memory present in
155  * kfd_process_device_apertures_ptr
156  * from KFD - Number of entries filled by KFD.
157  */
158  uint32_t num_of_nodes;
159  uint32_t pad;
160 };
161 
162 #define MAX_ALLOWED_NUM_POINTS 100
163 #define MAX_ALLOWED_AW_BUFF_SIZE 4096
164 #define MAX_ALLOWED_WAC_BUFF_SIZE 128
165 
167  uint32_t gpu_id; /* to KFD */
168  uint32_t pad;
169 };
170 
172  uint32_t gpu_id; /* to KFD */
173  uint32_t pad;
174 };
175 
177  uint64_t content_ptr; /* a pointer to the actual content */
178  uint32_t gpu_id; /* to KFD */
179  uint32_t buf_size_in_bytes; /*including gpu_id and buf_size */
180 };
181 
183  uint64_t content_ptr; /* a pointer to the actual content */
184  uint32_t gpu_id; /* to KFD */
185  uint32_t buf_size_in_bytes; /*including gpu_id and buf_size */
186 };
187 
188 /* Matching HSA_EVENTTYPE */
189 #define KFD_IOC_EVENT_SIGNAL 0
190 #define KFD_IOC_EVENT_NODECHANGE 1
191 #define KFD_IOC_EVENT_DEVICESTATECHANGE 2
192 #define KFD_IOC_EVENT_HW_EXCEPTION 3
193 #define KFD_IOC_EVENT_SYSTEM_EVENT 4
194 #define KFD_IOC_EVENT_DEBUG_EVENT 5
195 #define KFD_IOC_EVENT_PROFILE_EVENT 6
196 #define KFD_IOC_EVENT_QUEUE_EVENT 7
197 #define KFD_IOC_EVENT_MEMORY 8
198 
199 #define KFD_IOC_WAIT_RESULT_COMPLETE 0
200 #define KFD_IOC_WAIT_RESULT_TIMEOUT 1
201 #define KFD_IOC_WAIT_RESULT_FAIL 2
202 
203 /*
204  * The added 512 is because, currently, 8*(4096/256) signal events are
205  * reserved for debugger events, and we want to provide at least 4K signal
206  * events for EOP usage.
207  * We add 512 to make the allocated size (KFD_SIGNAL_EVENT_LIMIT * 8) be
208  * page aligned.
209  */
210 #define KFD_SIGNAL_EVENT_LIMIT (4096 + 512)
211 
213  uint64_t event_page_offset; /* from KFD */
214  uint32_t event_trigger_data; /* from KFD - signal events only */
215  uint32_t event_type; /* to KFD */
216  uint32_t auto_reset; /* to KFD */
217  uint32_t node_id; /* to KFD - only valid for certain
218  event types */
219  uint32_t event_id; /* from KFD */
220  uint32_t event_slot_index; /* from KFD */
221 };
222 
224  uint32_t event_id; /* to KFD */
225  uint32_t pad;
226 };
227 
229  uint32_t event_id; /* to KFD */
230  uint32_t pad;
231 };
232 
234  uint32_t event_id; /* to KFD */
235  uint32_t pad;
236 };
237 
239  uint32_t NotPresent; /* Page not present or supervisor privilege */
240  uint32_t ReadOnly; /* Write access to a read-only page */
241  uint32_t NoExecute; /* Execute access to a page marked NX */
242  uint32_t imprecise; /* Can't determine the exact fault address */
243 };
244 
245 /* memory exception data */
248  uint64_t va;
249  uint32_t gpu_id;
250  uint32_t pad;
251 };
252 
253 /* Event data */
255  union {
256  struct kfd_hsa_memory_exception_data memory_exception_data;
257  }; /* From KFD */
258  uint64_t kfd_event_data_ext; /* pointer to an extension structure
259  for future exception types */
260  uint32_t event_id; /* to KFD */
261  uint32_t pad;
262 };
263 
265  uint64_t events_ptr; /* pointed to struct
266  kfd_event_data array, to KFD */
267  uint32_t num_events; /* to KFD */
268  uint32_t wait_for_all; /* to KFD */
269  uint32_t timeout; /* to KFD */
270  uint32_t wait_result; /* from KFD */
271 };
272 
274  uint64_t va_addr; /* to KFD */
275  uint64_t size; /* to KFD */
276  uint32_t gpu_id; /* to KFD */
277  uint32_t pad;
278 };
279 
280 /* Allocation flags: memory types */
281 #define KFD_IOC_ALLOC_MEM_FLAGS_VRAM (1 << 0)
282 #define KFD_IOC_ALLOC_MEM_FLAGS_GTT (1 << 1)
283 #define KFD_IOC_ALLOC_MEM_FLAGS_USERPTR (1 << 2)
284 #define KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL (1 << 3)
285 /* Allocation flags: attributes/access options */
286 #define KFD_IOC_ALLOC_MEM_FLAGS_NONPAGED (1 << 31)
287 #define KFD_IOC_ALLOC_MEM_FLAGS_READONLY (1 << 30)
288 #define KFD_IOC_ALLOC_MEM_FLAGS_PUBLIC (1 << 29)
289 #define KFD_IOC_ALLOC_MEM_FLAGS_NO_SUBSTITUTE (1 << 28)
290 #define KFD_IOC_ALLOC_MEM_FLAGS_AQL_QUEUE_MEM (1 << 27)
291 #define KFD_IOC_ALLOC_MEM_FLAGS_EXECUTE_ACCESS (1 << 26)
292 #define KFD_IOC_ALLOC_MEM_FLAGS_COHERENT (1 << 25)
293 
295  uint64_t va_addr; /* to KFD */
296  uint64_t size; /* to KFD */
297  uint64_t handle; /* from KFD */
298  uint64_t mmap_offset; /* to KFD (userptr), from KFD (mmap offset) */
299  uint32_t gpu_id; /* to KFD */
300  uint32_t flags;
301 };
302 
304  uint64_t handle; /* to KFD */
305 };
306 
308  uint64_t handle; /* to KFD */
309  uint64_t device_ids_array_ptr; /* to KFD */
310  uint32_t device_ids_array_size; /* to KFD */
311  uint32_t pad;
312 };
313 
315  uint64_t handle; /* to KFD */
316  uint64_t device_ids_array_ptr; /* to KFD */
317  uint32_t device_ids_array_size; /* to KFD */
318  uint32_t pad;
319 };
320 
321 /* TODO: remove this. It's only implemented for Kaveri and was never
322  * upstreamed. There are no open-source users of this interface. It
323  * has been superseded by the pair of get_dmabuf_info and
324  * import_dmabuf, which is implemented for all supported GPUs.
325  */
327  uint64_t va_addr; /* to KFD */
328  uint64_t handle; /* from KFD */
329  uint32_t gpu_id; /* to KFD */
330  int graphic_device_fd; /* to KFD */
331  uint32_t graphic_handle; /* to KFD */
332  uint32_t pad;
333 };
334 
336  uint64_t dgpu_base;
337  uint64_t dgpu_limit;
338  uint32_t gpu_id;
339  uint32_t pad;
340 };
341 
343  uint64_t size; /* from KFD */
344  uint64_t metadata_ptr; /* to KFD */
345  uint32_t metadata_size; /* to KFD (space allocated by user)
346  * from KFD (actual metadata size) */
347  uint32_t gpu_id; /* from KFD */
348  uint32_t flags; /* from KFD (KFD_IOC_ALLOC_MEM_FLAGS) */
349  uint32_t dmabuf_fd; /* to KFD */
350 };
351 
353  uint64_t va_addr; /* to KFD */
354  uint64_t handle; /* from KFD */
355  uint32_t gpu_id; /* to KFD */
356  uint32_t dmabuf_fd; /* to KFD */
357 };
358 
360  uint64_t handle; /* to KFD */
361  uint32_t share_handle[4]; /* from KFD */
362  uint32_t gpu_id; /* to KFD */
363  uint32_t pad;
364 };
365 
367  uint64_t handle; /* from KFD */
368  uint64_t va_addr; /* to KFD */
369  uint64_t mmap_offset; /* from KFD */
370  uint32_t share_handle[4]; /* to KFD */
371  uint32_t gpu_id; /* to KFD */
372  uint32_t pad;
373 };
374 
376  /* to KFD: pointer to tile array */
377  uint64_t tile_config_ptr;
378  /* to KFD: pointer to macro tile array */
380  /* to KFD: array size allocated by user mode
381  * from KFD: array size filled by kernel
382  */
384  /* to KFD: array size allocated by user mode
385  * from KFD: array size filled by kernel
386  */
388 
389  uint32_t gpu_id; /* to KFD */
390  uint32_t gb_addr_config; /* from KFD */
391  uint32_t num_banks; /* from KFD */
392  uint32_t num_ranks; /* from KFD */
393  /* struct size can be extended later if needed
394  * without breaking ABI compatibility
395  */
396 };
397 
399  uint64_t va_addr;
400  uint64_t size;
401 };
402 
403 /* flags definitions
404  * BIT0: 0: read operation, 1: write operation.
405  * This also identifies if the src or dst array belongs to remote process
406  */
407 #define KFD_CROSS_MEMORY_RW_BIT (1 << 0)
408 #define KFD_SET_CROSS_MEMORY_READ(flags) (flags &= ~KFD_CROSS_MEMORY_RW_BIT)
409 #define KFD_SET_CROSS_MEMORY_WRITE(flags) (flags |= KFD_CROSS_MEMORY_RW_BIT)
410 #define KFD_IS_CROSS_MEMORY_WRITE(flags) (flags & KFD_CROSS_MEMORY_RW_BIT)
411 
413  /* to KFD: Process ID of the remote process */
414  uint32_t pid;
415  /* to KFD: See above definition */
416  uint32_t flags;
417  /* to KFD: Source GPU VM range */
419  /* to KFD: Size of above array */
421  /* to KFD: Destination GPU VM range */
423  /* to KFD: Size of above array */
425  /* from KFD: Total amount of bytes copied */
426  uint64_t bytes_copied;
427 };
428 
429 #define AMDKFD_IOCTL_BASE 'K'
430 #define AMDKFD_IO(nr) _IO(AMDKFD_IOCTL_BASE, nr)
431 #define AMDKFD_IOR(nr, type) _IOR(AMDKFD_IOCTL_BASE, nr, type)
432 #define AMDKFD_IOW(nr, type) _IOW(AMDKFD_IOCTL_BASE, nr, type)
433 #define AMDKFD_IOWR(nr, type) _IOWR(AMDKFD_IOCTL_BASE, nr, type)
434 
435 #define AMDKFD_IOC_GET_VERSION \
436  AMDKFD_IOR(0x01, struct kfd_ioctl_get_version_args)
437 
438 #define AMDKFD_IOC_CREATE_QUEUE \
439  AMDKFD_IOWR(0x02, struct kfd_ioctl_create_queue_args)
440 
441 #define AMDKFD_IOC_DESTROY_QUEUE \
442  AMDKFD_IOWR(0x03, struct kfd_ioctl_destroy_queue_args)
443 
444 #define AMDKFD_IOC_SET_MEMORY_POLICY \
445  AMDKFD_IOW(0x04, struct kfd_ioctl_set_memory_policy_args)
446 
447 #define AMDKFD_IOC_GET_CLOCK_COUNTERS \
448  AMDKFD_IOWR(0x05, struct kfd_ioctl_get_clock_counters_args)
449 
450 #define AMDKFD_IOC_GET_PROCESS_APERTURES \
451  AMDKFD_IOR(0x06, struct kfd_ioctl_get_process_apertures_args)
452 
453 #define AMDKFD_IOC_UPDATE_QUEUE \
454  AMDKFD_IOW(0x07, struct kfd_ioctl_update_queue_args)
455 
456 #define AMDKFD_IOC_CREATE_EVENT \
457  AMDKFD_IOWR(0x08, struct kfd_ioctl_create_event_args)
458 
459 #define AMDKFD_IOC_DESTROY_EVENT \
460  AMDKFD_IOW(0x09, struct kfd_ioctl_destroy_event_args)
461 
462 #define AMDKFD_IOC_SET_EVENT \
463  AMDKFD_IOW(0x0A, struct kfd_ioctl_set_event_args)
464 
465 #define AMDKFD_IOC_RESET_EVENT \
466  AMDKFD_IOW(0x0B, struct kfd_ioctl_reset_event_args)
467 
468 #define AMDKFD_IOC_WAIT_EVENTS \
469  AMDKFD_IOWR(0x0C, struct kfd_ioctl_wait_events_args)
470 
471 #define AMDKFD_IOC_DBG_REGISTER \
472  AMDKFD_IOW(0x0D, struct kfd_ioctl_dbg_register_args)
473 
474 #define AMDKFD_IOC_DBG_UNREGISTER \
475  AMDKFD_IOW(0x0E, struct kfd_ioctl_dbg_unregister_args)
476 
477 #define AMDKFD_IOC_DBG_ADDRESS_WATCH \
478  AMDKFD_IOW(0x0F, struct kfd_ioctl_dbg_address_watch_args)
479 
480 #define AMDKFD_IOC_DBG_WAVE_CONTROL \
481  AMDKFD_IOW(0x10, struct kfd_ioctl_dbg_wave_control_args)
482 
483 #define AMDKFD_IOC_ALLOC_MEMORY_OF_GPU \
484  AMDKFD_IOWR(0x11, struct kfd_ioctl_alloc_memory_of_gpu_args)
485 
486 #define AMDKFD_IOC_FREE_MEMORY_OF_GPU \
487  AMDKFD_IOWR(0x12, struct kfd_ioctl_free_memory_of_gpu_args)
488 
489 #define AMDKFD_IOC_MAP_MEMORY_TO_GPU \
490  AMDKFD_IOWR(0x13, struct kfd_ioctl_map_memory_to_gpu_args)
491 
492 #define AMDKFD_IOC_UNMAP_MEMORY_FROM_GPU \
493  AMDKFD_IOWR(0x14, struct kfd_ioctl_unmap_memory_from_gpu_args)
494 
495 #define AMDKFD_IOC_ALLOC_MEMORY_OF_SCRATCH \
496  AMDKFD_IOWR(0x15, struct kfd_ioctl_alloc_memory_of_scratch_args)
497 
498 #define AMDKFD_IOC_SET_CU_MASK \
499  AMDKFD_IOW(0x16, struct kfd_ioctl_set_cu_mask_args)
500 
501 #define AMDKFD_IOC_SET_PROCESS_DGPU_APERTURE \
502  AMDKFD_IOW(0x17, \
503  struct kfd_ioctl_set_process_dgpu_aperture_args)
504 
505 #define AMDKFD_IOC_SET_TRAP_HANDLER \
506  AMDKFD_IOW(0x18, struct kfd_ioctl_set_trap_handler_args)
507 
508 #define AMDKFD_IOC_GET_PROCESS_APERTURES_NEW \
509  AMDKFD_IOWR(0x19, struct kfd_ioctl_get_process_apertures_new_args)
510 
511 #define AMDKFD_IOC_GET_DMABUF_INFO \
512  AMDKFD_IOWR(0x1A, struct kfd_ioctl_get_dmabuf_info_args)
513 
514 #define AMDKFD_IOC_IMPORT_DMABUF \
515  AMDKFD_IOWR(0x1B, struct kfd_ioctl_import_dmabuf_args)
516 
517 #define AMDKFD_IOC_GET_TILE_CONFIG \
518  AMDKFD_IOWR(0x1C, struct kfd_ioctl_get_tile_config_args)
519 
520 #define AMDKFD_IOC_IPC_IMPORT_HANDLE \
521  AMDKFD_IOWR(0x1D, struct kfd_ioctl_ipc_import_handle_args)
522 
523 #define AMDKFD_IOC_IPC_EXPORT_HANDLE \
524  AMDKFD_IOWR(0x1E, struct kfd_ioctl_ipc_export_handle_args)
525 
526 #define AMDKFD_IOC_CROSS_MEMORY_COPY \
527  AMDKFD_IOWR(0x1F, struct kfd_ioctl_cross_memory_copy_args)
528 
529 /* TODO: remove this */
530 #define AMDKFD_IOC_OPEN_GRAPHIC_HANDLE \
531  AMDKFD_IOWR(0x20, struct kfd_ioctl_open_graphic_handle_args)
532 
533 #define AMDKFD_COMMAND_START 0x01
534 #define AMDKFD_COMMAND_END 0x21
535 
536 #endif
uint64_t size
Definition: kfd_ioctl.h:400
uint64_t ctx_save_restore_address
Definition: kfd_ioctl.h:60
#define NUM_OF_SUPPORTED_GPUS
Definition: kfd_ioctl.h:123
uint64_t va_addr
Definition: kfd_ioctl.h:399
uint32_t event_id
Definition: kfd_ioctl.h:260
uint64_t kfd_event_data_ext
Definition: kfd_ioctl.h:258
uint32_t pad
Definition: kfd_ioctl.h:261

Generated on Thu May 28 2020 16:21:32 for gem5 by doxygen 1.8.13