blob: 6e80501368aee68e77f800349c25d53adb56b7c6 [file] [log] [blame]
Christopher Ferris12e1f282016-02-04 12:35:07 -08001/*
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
Christopher Ferris25981132017-11-14 16:53:49 -080026#include <drm/drm.h>
Christopher Ferris12e1f282016-02-04 12:35:07 -080027#include <linux/ioctl.h>
28
29#define KFD_IOCTL_MAJOR_VERSION 1
30#define KFD_IOCTL_MINOR_VERSION 1
31
32struct kfd_ioctl_get_version_args {
Christopher Ferris25981132017-11-14 16:53:49 -080033 __u32 major_version; /* from KFD */
34 __u32 minor_version; /* from KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080035};
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
45struct kfd_ioctl_create_queue_args {
Christopher Ferris25981132017-11-14 16:53:49 -080046 __u64 ring_base_address; /* to KFD */
47 __u64 write_pointer_address; /* from KFD */
48 __u64 read_pointer_address; /* from KFD */
49 __u64 doorbell_offset; /* from KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080050
Christopher Ferris25981132017-11-14 16:53:49 -080051 __u32 ring_size; /* to KFD */
52 __u32 gpu_id; /* to KFD */
53 __u32 queue_type; /* to KFD */
54 __u32 queue_percentage; /* to KFD */
55 __u32 queue_priority; /* to KFD */
56 __u32 queue_id; /* from KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080057
Christopher Ferris25981132017-11-14 16:53:49 -080058 __u64 eop_buffer_address; /* to KFD */
59 __u64 eop_buffer_size; /* to KFD */
60 __u64 ctx_save_restore_address; /* to KFD */
61 __u64 ctx_save_restore_size; /* to KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080062};
63
64struct kfd_ioctl_destroy_queue_args {
Christopher Ferris25981132017-11-14 16:53:49 -080065 __u32 queue_id; /* to KFD */
66 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -080067};
68
69struct kfd_ioctl_update_queue_args {
Christopher Ferris25981132017-11-14 16:53:49 -080070 __u64 ring_base_address; /* to KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080071
Christopher Ferris25981132017-11-14 16:53:49 -080072 __u32 queue_id; /* to KFD */
73 __u32 ring_size; /* to KFD */
74 __u32 queue_percentage; /* to KFD */
75 __u32 queue_priority; /* to KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080076};
77
78/* For kfd_ioctl_set_memory_policy_args.default_policy and alternate_policy */
79#define KFD_IOC_CACHE_POLICY_COHERENT 0
80#define KFD_IOC_CACHE_POLICY_NONCOHERENT 1
81
82struct kfd_ioctl_set_memory_policy_args {
Christopher Ferris25981132017-11-14 16:53:49 -080083 __u64 alternate_aperture_base; /* to KFD */
84 __u64 alternate_aperture_size; /* to KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -080085
Christopher Ferris25981132017-11-14 16:53:49 -080086 __u32 gpu_id; /* to KFD */
87 __u32 default_policy; /* to KFD */
88 __u32 alternate_policy; /* to KFD */
89 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -080090};
91
92/*
93 * All counters are monotonic. They are used for profiling of compute jobs.
94 * The profiling is done by userspace.
95 *
96 * In case of GPU reset, the counter should not be affected.
97 */
98
99struct kfd_ioctl_get_clock_counters_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800100 __u64 gpu_clock_counter; /* from KFD */
101 __u64 cpu_clock_counter; /* from KFD */
102 __u64 system_clock_counter; /* from KFD */
103 __u64 system_clock_freq; /* from KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800104
Christopher Ferris25981132017-11-14 16:53:49 -0800105 __u32 gpu_id; /* to KFD */
106 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800107};
108
109#define NUM_OF_SUPPORTED_GPUS 7
110
111struct kfd_process_device_apertures {
Christopher Ferris25981132017-11-14 16:53:49 -0800112 __u64 lds_base; /* from KFD */
113 __u64 lds_limit; /* from KFD */
114 __u64 scratch_base; /* from KFD */
115 __u64 scratch_limit; /* from KFD */
116 __u64 gpuvm_base; /* from KFD */
117 __u64 gpuvm_limit; /* from KFD */
118 __u32 gpu_id; /* from KFD */
119 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800120};
121
122struct kfd_ioctl_get_process_apertures_args {
123 struct kfd_process_device_apertures
124 process_apertures[NUM_OF_SUPPORTED_GPUS];/* from KFD */
125
126 /* from KFD, should be in the range [1 - NUM_OF_SUPPORTED_GPUS] */
Christopher Ferris25981132017-11-14 16:53:49 -0800127 __u32 num_of_nodes;
128 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800129};
130
131#define MAX_ALLOWED_NUM_POINTS 100
132#define MAX_ALLOWED_AW_BUFF_SIZE 4096
133#define MAX_ALLOWED_WAC_BUFF_SIZE 128
134
135struct kfd_ioctl_dbg_register_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800136 __u32 gpu_id; /* to KFD */
137 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800138};
139
140struct kfd_ioctl_dbg_unregister_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800141 __u32 gpu_id; /* to KFD */
142 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800143};
144
145struct kfd_ioctl_dbg_address_watch_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800146 __u64 content_ptr; /* a pointer to the actual content */
147 __u32 gpu_id; /* to KFD */
148 __u32 buf_size_in_bytes; /*including gpu_id and buf_size */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800149};
150
151struct kfd_ioctl_dbg_wave_control_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800152 __u64 content_ptr; /* a pointer to the actual content */
153 __u32 gpu_id; /* to KFD */
154 __u32 buf_size_in_bytes; /*including gpu_id and buf_size */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800155};
156
157/* Matching HSA_EVENTTYPE */
158#define KFD_IOC_EVENT_SIGNAL 0
159#define KFD_IOC_EVENT_NODECHANGE 1
160#define KFD_IOC_EVENT_DEVICESTATECHANGE 2
161#define KFD_IOC_EVENT_HW_EXCEPTION 3
162#define KFD_IOC_EVENT_SYSTEM_EVENT 4
163#define KFD_IOC_EVENT_DEBUG_EVENT 5
164#define KFD_IOC_EVENT_PROFILE_EVENT 6
165#define KFD_IOC_EVENT_QUEUE_EVENT 7
166#define KFD_IOC_EVENT_MEMORY 8
167
168#define KFD_IOC_WAIT_RESULT_COMPLETE 0
169#define KFD_IOC_WAIT_RESULT_TIMEOUT 1
170#define KFD_IOC_WAIT_RESULT_FAIL 2
171
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800172#define KFD_SIGNAL_EVENT_LIMIT 4096
Christopher Ferris12e1f282016-02-04 12:35:07 -0800173
174struct kfd_ioctl_create_event_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800175 __u64 event_page_offset; /* from KFD */
176 __u32 event_trigger_data; /* from KFD - signal events only */
177 __u32 event_type; /* to KFD */
178 __u32 auto_reset; /* to KFD */
179 __u32 node_id; /* to KFD - only valid for certain
Christopher Ferris12e1f282016-02-04 12:35:07 -0800180 event types */
Christopher Ferris25981132017-11-14 16:53:49 -0800181 __u32 event_id; /* from KFD */
182 __u32 event_slot_index; /* from KFD */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800183};
184
185struct kfd_ioctl_destroy_event_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800186 __u32 event_id; /* to KFD */
187 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800188};
189
190struct kfd_ioctl_set_event_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800191 __u32 event_id; /* to KFD */
192 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800193};
194
195struct kfd_ioctl_reset_event_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800196 __u32 event_id; /* to KFD */
197 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800198};
199
200struct kfd_memory_exception_failure {
Christopher Ferris25981132017-11-14 16:53:49 -0800201 __u32 NotPresent; /* Page not present or supervisor privilege */
202 __u32 ReadOnly; /* Write access to a read-only page */
203 __u32 NoExecute; /* Execute access to a page marked NX */
204 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800205};
206
207/* memory exception data*/
208struct kfd_hsa_memory_exception_data {
209 struct kfd_memory_exception_failure failure;
Christopher Ferris25981132017-11-14 16:53:49 -0800210 __u64 va;
211 __u32 gpu_id;
212 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800213};
214
215/* Event data*/
216struct kfd_event_data {
217 union {
218 struct kfd_hsa_memory_exception_data memory_exception_data;
219 }; /* From KFD */
Christopher Ferris25981132017-11-14 16:53:49 -0800220 __u64 kfd_event_data_ext; /* pointer to an extension structure
Christopher Ferris12e1f282016-02-04 12:35:07 -0800221 for future exception types */
Christopher Ferris25981132017-11-14 16:53:49 -0800222 __u32 event_id; /* to KFD */
223 __u32 pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800224};
225
226struct kfd_ioctl_wait_events_args {
Christopher Ferris25981132017-11-14 16:53:49 -0800227 __u64 events_ptr; /* pointed to struct
Christopher Ferris12e1f282016-02-04 12:35:07 -0800228 kfd_event_data array, to KFD */
Christopher Ferris25981132017-11-14 16:53:49 -0800229 __u32 num_events; /* to KFD */
230 __u32 wait_for_all; /* to KFD */
231 __u32 timeout; /* to KFD */
232 __u32 wait_result; /* from KFD */
233};
234
235struct kfd_ioctl_set_scratch_backing_va_args {
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800236 __u64 va_addr; /* to KFD */
237 __u32 gpu_id; /* to KFD */
238 __u32 pad;
Christopher Ferris25981132017-11-14 16:53:49 -0800239};
240
241struct kfd_ioctl_get_tile_config_args {
242 /* to KFD: pointer to tile array */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800243 __u64 tile_config_ptr;
Christopher Ferris25981132017-11-14 16:53:49 -0800244 /* to KFD: pointer to macro tile array */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800245 __u64 macro_tile_config_ptr;
Christopher Ferris25981132017-11-14 16:53:49 -0800246 /* to KFD: array size allocated by user mode
247 * from KFD: array size filled by kernel
248 */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800249 __u32 num_tile_configs;
Christopher Ferris25981132017-11-14 16:53:49 -0800250 /* to KFD: array size allocated by user mode
251 * from KFD: array size filled by kernel
252 */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800253 __u32 num_macro_tile_configs;
Christopher Ferris25981132017-11-14 16:53:49 -0800254
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800255 __u32 gpu_id; /* to KFD */
256 __u32 gb_addr_config; /* from KFD */
257 __u32 num_banks; /* from KFD */
258 __u32 num_ranks; /* from KFD */
Christopher Ferris25981132017-11-14 16:53:49 -0800259 /* struct size can be extended later if needed
260 * without breaking ABI compatibility
261 */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800262};
263
264#define AMDKFD_IOCTL_BASE 'K'
265#define AMDKFD_IO(nr) _IO(AMDKFD_IOCTL_BASE, nr)
266#define AMDKFD_IOR(nr, type) _IOR(AMDKFD_IOCTL_BASE, nr, type)
267#define AMDKFD_IOW(nr, type) _IOW(AMDKFD_IOCTL_BASE, nr, type)
268#define AMDKFD_IOWR(nr, type) _IOWR(AMDKFD_IOCTL_BASE, nr, type)
269
270#define AMDKFD_IOC_GET_VERSION \
271 AMDKFD_IOR(0x01, struct kfd_ioctl_get_version_args)
272
273#define AMDKFD_IOC_CREATE_QUEUE \
274 AMDKFD_IOWR(0x02, struct kfd_ioctl_create_queue_args)
275
276#define AMDKFD_IOC_DESTROY_QUEUE \
277 AMDKFD_IOWR(0x03, struct kfd_ioctl_destroy_queue_args)
278
279#define AMDKFD_IOC_SET_MEMORY_POLICY \
280 AMDKFD_IOW(0x04, struct kfd_ioctl_set_memory_policy_args)
281
282#define AMDKFD_IOC_GET_CLOCK_COUNTERS \
283 AMDKFD_IOWR(0x05, struct kfd_ioctl_get_clock_counters_args)
284
285#define AMDKFD_IOC_GET_PROCESS_APERTURES \
286 AMDKFD_IOR(0x06, struct kfd_ioctl_get_process_apertures_args)
287
288#define AMDKFD_IOC_UPDATE_QUEUE \
289 AMDKFD_IOW(0x07, struct kfd_ioctl_update_queue_args)
290
291#define AMDKFD_IOC_CREATE_EVENT \
292 AMDKFD_IOWR(0x08, struct kfd_ioctl_create_event_args)
293
294#define AMDKFD_IOC_DESTROY_EVENT \
295 AMDKFD_IOW(0x09, struct kfd_ioctl_destroy_event_args)
296
297#define AMDKFD_IOC_SET_EVENT \
298 AMDKFD_IOW(0x0A, struct kfd_ioctl_set_event_args)
299
300#define AMDKFD_IOC_RESET_EVENT \
301 AMDKFD_IOW(0x0B, struct kfd_ioctl_reset_event_args)
302
303#define AMDKFD_IOC_WAIT_EVENTS \
304 AMDKFD_IOWR(0x0C, struct kfd_ioctl_wait_events_args)
305
306#define AMDKFD_IOC_DBG_REGISTER \
307 AMDKFD_IOW(0x0D, struct kfd_ioctl_dbg_register_args)
308
309#define AMDKFD_IOC_DBG_UNREGISTER \
310 AMDKFD_IOW(0x0E, struct kfd_ioctl_dbg_unregister_args)
311
312#define AMDKFD_IOC_DBG_ADDRESS_WATCH \
313 AMDKFD_IOW(0x0F, struct kfd_ioctl_dbg_address_watch_args)
314
315#define AMDKFD_IOC_DBG_WAVE_CONTROL \
316 AMDKFD_IOW(0x10, struct kfd_ioctl_dbg_wave_control_args)
317
Christopher Ferris25981132017-11-14 16:53:49 -0800318#define AMDKFD_IOC_SET_SCRATCH_BACKING_VA \
319 AMDKFD_IOWR(0x11, struct kfd_ioctl_set_scratch_backing_va_args)
320
321#define AMDKFD_IOC_GET_TILE_CONFIG \
322 AMDKFD_IOWR(0x12, struct kfd_ioctl_get_tile_config_args)
323
Christopher Ferris12e1f282016-02-04 12:35:07 -0800324#define AMDKFD_COMMAND_START 0x01
Christopher Ferris25981132017-11-14 16:53:49 -0800325#define AMDKFD_COMMAND_END 0x13
Christopher Ferris12e1f282016-02-04 12:35:07 -0800326
327#endif