blob: 027b549b4227d2cf6cf4c02ab2f16e7a4f6e7ee6 [file] [log] [blame]
Alex Deucher09361392015-04-20 12:04:22 -04001/*
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
24/**
25 * \file amdgpu.h
26 *
27 * Declare public libdrm_amdgpu API
28 *
29 * This file define API exposed by libdrm_amdgpu library.
30 * User wanted to use libdrm_amdgpu functionality must include
31 * this file.
32 *
33 */
34#ifndef _AMDGPU_H_
35#define _AMDGPU_H_
36
37#include <stdint.h>
38#include <stdbool.h>
39
40struct drm_amdgpu_info_hw_ip;
41
42/*--------------------------------------------------------------------------*/
43/* --------------------------- Defines ------------------------------------ */
44/*--------------------------------------------------------------------------*/
45
46/**
47 * Define max. number of Command Buffers (IB) which could be sent to the single
48 * hardware IP to accommodate CE/DE requirements
49 *
50 * \sa amdgpu_cs_ib_info
51*/
52#define AMDGPU_CS_MAX_IBS_PER_SUBMIT 4
53
54/**
Marek Olšák67c994f2015-06-26 21:58:17 +020055 * Special timeout value meaning that the timeout is infinite.
Alex Deucher09361392015-04-20 12:04:22 -040056 */
57#define AMDGPU_TIMEOUT_INFINITE 0xffffffffffffffffull
58
Marek Olšák67c994f2015-06-26 21:58:17 +020059/**
60 * Used in amdgpu_cs_query_fence::flags, meaning that the given timeout
61 * is absolute.
62 */
63#define AMDGPU_QUERY_FENCE_TIMEOUT_IS_ABSOLUTE (1 << 0)
Alex Deucher09361392015-04-20 12:04:22 -040064
Alex Deucher09361392015-04-20 12:04:22 -040065/*--------------------------------------------------------------------------*/
66/* ----------------------------- Enums ------------------------------------ */
67/*--------------------------------------------------------------------------*/
68
69/**
70 * Enum describing possible handle types
71 *
72 * \sa amdgpu_bo_import, amdgpu_bo_export
73 *
74*/
75enum amdgpu_bo_handle_type {
76 /** GEM flink name (needs DRM authentication, used by DRI2) */
77 amdgpu_bo_handle_type_gem_flink_name = 0,
78
79 /** KMS handle which is used by all driver ioctls */
80 amdgpu_bo_handle_type_kms = 1,
81
82 /** DMA-buf fd handle */
83 amdgpu_bo_handle_type_dma_buf_fd = 2
84};
85
Sabre Shao23fab592015-07-09 13:50:36 +080086/** Define known types of GPU VM VA ranges */
87enum amdgpu_gpu_va_range
88{
89 /** Allocate from "normal"/general range */
90 amdgpu_gpu_va_range_general = 0
91};
Alex Deucher09361392015-04-20 12:04:22 -040092
93/*--------------------------------------------------------------------------*/
94/* -------------------------- Datatypes ----------------------------------- */
95/*--------------------------------------------------------------------------*/
96
97/**
98 * Define opaque pointer to context associated with fd.
99 * This context will be returned as the result of
100 * "initialize" function and should be pass as the first
101 * parameter to any API call
102 */
103typedef struct amdgpu_device *amdgpu_device_handle;
104
105/**
106 * Define GPU Context type as pointer to opaque structure
107 * Example of GPU Context is the "rendering" context associated
108 * with OpenGL context (glCreateContext)
109 */
110typedef struct amdgpu_context *amdgpu_context_handle;
111
112/**
113 * Define handle for amdgpu resources: buffer, GDS, etc.
114 */
115typedef struct amdgpu_bo *amdgpu_bo_handle;
116
117/**
Christian König6dc2eaf2015-04-22 14:52:34 +0200118 * Define handle for list of BOs
119 */
120typedef struct amdgpu_bo_list *amdgpu_bo_list_handle;
121
Sabre Shao23fab592015-07-09 13:50:36 +0800122/**
123 * Define handle to be used to work with VA allocated ranges
124 */
125typedef struct amdgpu_va *amdgpu_va_handle;
Alex Deucher09361392015-04-20 12:04:22 -0400126
127/*--------------------------------------------------------------------------*/
128/* -------------------------- Structures ---------------------------------- */
129/*--------------------------------------------------------------------------*/
130
131/**
132 * Structure describing memory allocation request
133 *
134 * \sa amdgpu_bo_alloc()
135 *
136*/
137struct amdgpu_bo_alloc_request {
138 /** Allocation request. It must be aligned correctly. */
139 uint64_t alloc_size;
140
141 /**
142 * It may be required to have some specific alignment requirements
143 * for physical back-up storage (e.g. for displayable surface).
144 * If 0 there is no special alignment requirement
145 */
146 uint64_t phys_alignment;
147
148 /**
149 * UMD should specify where to allocate memory and how it
150 * will be accessed by the CPU.
151 */
152 uint32_t preferred_heap;
153
154 /** Additional flags passed on allocation */
155 uint64_t flags;
156};
157
158/**
159 * Structure describing memory allocation request
160 *
161 * \sa amdgpu_bo_alloc()
162*/
163struct amdgpu_bo_alloc_result {
164 /** Assigned virtual MC Base Address */
165 uint64_t virtual_mc_base_address;
166
167 /** Handle of allocated memory to be used by the given process only. */
168 amdgpu_bo_handle buf_handle;
169};
170
171/**
172 * Special UMD specific information associated with buffer.
173 *
174 * It may be need to pass some buffer charactersitic as part
175 * of buffer sharing. Such information are defined UMD and
176 * opaque for libdrm_amdgpu as well for kernel driver.
177 *
178 * \sa amdgpu_bo_set_metadata(), amdgpu_bo_query_info,
179 * amdgpu_bo_import(), amdgpu_bo_export
180 *
181*/
182struct amdgpu_bo_metadata {
183 /** Special flag associated with surface */
184 uint64_t flags;
185
186 /**
187 * ASIC-specific tiling information (also used by DCE).
188 * The encoding is defined by the AMDGPU_TILING_* definitions.
189 */
190 uint64_t tiling_info;
191
192 /** Size of metadata associated with the buffer, in bytes. */
193 uint32_t size_metadata;
194
195 /** UMD specific metadata. Opaque for kernel */
196 uint32_t umd_metadata[64];
197};
198
199/**
200 * Structure describing allocated buffer. Client may need
201 * to query such information as part of 'sharing' buffers mechanism
202 *
203 * \sa amdgpu_bo_set_metadata(), amdgpu_bo_query_info(),
204 * amdgpu_bo_import(), amdgpu_bo_export()
205*/
206struct amdgpu_bo_info {
207 /** Allocated memory size */
208 uint64_t alloc_size;
209
210 /**
211 * It may be required to have some specific alignment requirements
212 * for physical back-up storage.
213 */
214 uint64_t phys_alignment;
215
216 /**
217 * Assigned virtual MC Base Address.
218 * \note This information will be returned only if this buffer was
219 * allocated in the same process otherwise 0 will be returned.
220 */
221 uint64_t virtual_mc_base_address;
222
223 /** Heap where to allocate memory. */
224 uint32_t preferred_heap;
225
226 /** Additional allocation flags. */
227 uint64_t alloc_flags;
228
229 /** Metadata associated with buffer if any. */
230 struct amdgpu_bo_metadata metadata;
231};
232
233/**
234 * Structure with information about "imported" buffer
235 *
236 * \sa amdgpu_bo_import()
237 *
238 */
239struct amdgpu_bo_import_result {
240 /** Handle of memory/buffer to use */
Christian König558e1292015-06-30 16:04:44 +0200241 amdgpu_bo_handle buf_handle;
Alex Deucher09361392015-04-20 12:04:22 -0400242
243 /** Buffer size */
244 uint64_t alloc_size;
245
246 /** Assigned virtual MC Base Address */
247 uint64_t virtual_mc_base_address;
248};
249
Alex Deucher09361392015-04-20 12:04:22 -0400250/**
251 *
252 * Structure to describe GDS partitioning information.
253 * \note OA and GWS resources are asscoiated with GDS partition
254 *
255 * \sa amdgpu_gpu_resource_query_gds_info
256 *
257*/
258struct amdgpu_gds_resource_info {
Christian König558e1292015-06-30 16:04:44 +0200259 uint32_t gds_gfx_partition_size;
260 uint32_t compute_partition_size;
261 uint32_t gds_total_size;
262 uint32_t gws_per_gfx_partition;
263 uint32_t gws_per_compute_partition;
264 uint32_t oa_per_gfx_partition;
265 uint32_t oa_per_compute_partition;
Alex Deucher09361392015-04-20 12:04:22 -0400266};
267
Alex Deucher09361392015-04-20 12:04:22 -0400268/**
Christian König0f37bc92015-06-24 14:17:57 +0200269 * Structure describing CS dependency
270 *
271 * \sa amdgpu_cs_request, amdgpu_cs_submit()
272 *
273*/
274struct amdgpu_cs_dep_info {
275 /** Context to which the fence belongs */
Christian König558e1292015-06-30 16:04:44 +0200276 amdgpu_context_handle context;
Christian König0f37bc92015-06-24 14:17:57 +0200277
278 /** To which HW IP type the fence belongs */
Christian König558e1292015-06-30 16:04:44 +0200279 uint32_t ip_type;
Christian König0f37bc92015-06-24 14:17:57 +0200280
281 /** IP instance index if there are several IPs of the same type. */
Christian König558e1292015-06-30 16:04:44 +0200282 uint32_t ip_instance;
Christian König0f37bc92015-06-24 14:17:57 +0200283
284 /** Ring index of the HW IP */
Christian König558e1292015-06-30 16:04:44 +0200285 uint32_t ring;
Christian König0f37bc92015-06-24 14:17:57 +0200286
Christian König558e1292015-06-30 16:04:44 +0200287 /** Specify fence for which we need to check submission status.*/
288 uint64_t fence;
Christian König0f37bc92015-06-24 14:17:57 +0200289};
290
291/**
Alex Deucher09361392015-04-20 12:04:22 -0400292 * Structure describing IB
293 *
294 * \sa amdgpu_cs_request, amdgpu_cs_submit()
295 *
296*/
297struct amdgpu_cs_ib_info {
298 /** Special flags */
Christian König558e1292015-06-30 16:04:44 +0200299 uint64_t flags;
Alex Deucher09361392015-04-20 12:04:22 -0400300
Marek Olšák76af5c22015-06-02 13:05:41 +0200301 /** Virtual MC address of the command buffer */
Christian König558e1292015-06-30 16:04:44 +0200302 uint64_t ib_mc_address;
Alex Deucher09361392015-04-20 12:04:22 -0400303
304 /**
305 * Size of Command Buffer to be submitted.
306 * - The size is in units of dwords (4 bytes).
Alex Deucher09361392015-04-20 12:04:22 -0400307 * - Could be 0
308 */
Christian König558e1292015-06-30 16:04:44 +0200309 uint32_t size;
Alex Deucher09361392015-04-20 12:04:22 -0400310};
311
312/**
313 * Structure describing submission request
314 *
315 * \note We could have several IBs as packet. e.g. CE, CE, DE case for gfx
316 *
317 * \sa amdgpu_cs_submit()
318*/
319struct amdgpu_cs_request {
320 /** Specify flags with additional information */
Christian König558e1292015-06-30 16:04:44 +0200321 uint64_t flags;
Alex Deucher09361392015-04-20 12:04:22 -0400322
323 /** Specify HW IP block type to which to send the IB. */
Christian König558e1292015-06-30 16:04:44 +0200324 unsigned ip_type;
Alex Deucher09361392015-04-20 12:04:22 -0400325
326 /** IP instance index if there are several IPs of the same type. */
Christian König558e1292015-06-30 16:04:44 +0200327 unsigned ip_instance;
Alex Deucher09361392015-04-20 12:04:22 -0400328
329 /**
330 * Specify ring index of the IP. We could have several rings
331 * in the same IP. E.g. 0 for SDMA0 and 1 for SDMA1.
332 */
Christian König558e1292015-06-30 16:04:44 +0200333 uint32_t ring;
Alex Deucher09361392015-04-20 12:04:22 -0400334
335 /**
Christian König6dc2eaf2015-04-22 14:52:34 +0200336 * List handle with resources used by this request.
Alex Deucher09361392015-04-20 12:04:22 -0400337 */
Christian König6dc2eaf2015-04-22 14:52:34 +0200338 amdgpu_bo_list_handle resources;
Alex Deucher09361392015-04-20 12:04:22 -0400339
Christian König0f37bc92015-06-24 14:17:57 +0200340 /**
341 * Number of dependencies this Command submission needs to
342 * wait for before starting execution.
343 */
344 uint32_t number_of_dependencies;
345
346 /**
347 * Array of dependencies which need to be met before
348 * execution can start.
349 */
350 struct amdgpu_cs_dep_info *dependencies;
351
Alex Deucher09361392015-04-20 12:04:22 -0400352 /** Number of IBs to submit in the field ibs. */
353 uint32_t number_of_ibs;
354
355 /**
356 * IBs to submit. Those IBs will be submit together as single entity
357 */
358 struct amdgpu_cs_ib_info *ibs;
359};
360
361/**
362 * Structure describing request to check submission state using fence
363 *
364 * \sa amdgpu_cs_query_fence_status()
365 *
366*/
367struct amdgpu_cs_query_fence {
368
369 /** In which context IB was sent to execution */
Christian König558e1292015-06-30 16:04:44 +0200370 amdgpu_context_handle context;
Alex Deucher09361392015-04-20 12:04:22 -0400371
Alex Deucher09361392015-04-20 12:04:22 -0400372 /** To which HW IP type the fence belongs */
Christian König558e1292015-06-30 16:04:44 +0200373 unsigned ip_type;
Alex Deucher09361392015-04-20 12:04:22 -0400374
375 /** IP instance index if there are several IPs of the same type. */
376 unsigned ip_instance;
377
378 /** Ring index of the HW IP */
Christian König558e1292015-06-30 16:04:44 +0200379 uint32_t ring;
Alex Deucher09361392015-04-20 12:04:22 -0400380
Christian König558e1292015-06-30 16:04:44 +0200381 /** Specify fence for which we need to check submission status.*/
382 uint64_t fence;
Alex Deucher09361392015-04-20 12:04:22 -0400383};
384
385/**
386 * Structure which provide information about GPU VM MC Address space
387 * alignments requirements
388 *
389 * \sa amdgpu_query_buffer_size_alignment
390 */
391struct amdgpu_buffer_size_alignments {
392 /** Size alignment requirement for allocation in
393 * local memory */
394 uint64_t size_local;
395
396 /**
397 * Size alignment requirement for allocation in remote memory
398 */
399 uint64_t size_remote;
400};
401
Alex Deucher09361392015-04-20 12:04:22 -0400402/**
403 * Structure which provide information about heap
404 *
405 * \sa amdgpu_query_heap_info()
406 *
407 */
408struct amdgpu_heap_info {
409 /** Theoretical max. available memory in the given heap */
Christian König558e1292015-06-30 16:04:44 +0200410 uint64_t heap_size;
Alex Deucher09361392015-04-20 12:04:22 -0400411
412 /**
413 * Number of bytes allocated in the heap. This includes all processes
414 * and private allocations in the kernel. It changes when new buffers
415 * are allocated, freed, and moved. It cannot be larger than
416 * heap_size.
417 */
Christian König558e1292015-06-30 16:04:44 +0200418 uint64_t heap_usage;
Alex Deucher09361392015-04-20 12:04:22 -0400419
420 /**
421 * Theoretical possible max. size of buffer which
422 * could be allocated in the given heap
423 */
Christian König558e1292015-06-30 16:04:44 +0200424 uint64_t max_allocation;
Alex Deucher09361392015-04-20 12:04:22 -0400425};
426
Alex Deucher09361392015-04-20 12:04:22 -0400427/**
428 * Describe GPU h/w info needed for UMD correct initialization
429 *
430 * \sa amdgpu_query_gpu_info()
431*/
432struct amdgpu_gpu_info {
433 /** Asic id */
434 uint32_t asic_id;
Christian König558e1292015-06-30 16:04:44 +0200435 /** Chip revision */
Alex Deucher09361392015-04-20 12:04:22 -0400436 uint32_t chip_rev;
437 /** Chip external revision */
438 uint32_t chip_external_rev;
439 /** Family ID */
440 uint32_t family_id;
441 /** Special flags */
442 uint64_t ids_flags;
443 /** max engine clock*/
444 uint64_t max_engine_clk;
Ken Wangfc9fc7d2015-06-03 17:07:44 +0800445 /** max memory clock */
446 uint64_t max_memory_clk;
Alex Deucher09361392015-04-20 12:04:22 -0400447 /** number of shader engines */
448 uint32_t num_shader_engines;
449 /** number of shader arrays per engine */
450 uint32_t num_shader_arrays_per_engine;
451 /** Number of available good shader pipes */
452 uint32_t avail_quad_shader_pipes;
453 /** Max. number of shader pipes.(including good and bad pipes */
454 uint32_t max_quad_shader_pipes;
455 /** Number of parameter cache entries per shader quad pipe */
456 uint32_t cache_entries_per_quad_pipe;
457 /** Number of available graphics context */
458 uint32_t num_hw_gfx_contexts;
459 /** Number of render backend pipes */
460 uint32_t rb_pipes;
Alex Deucher09361392015-04-20 12:04:22 -0400461 /** Enabled render backend pipe mask */
462 uint32_t enabled_rb_pipes_mask;
463 /** Frequency of GPU Counter */
464 uint32_t gpu_counter_freq;
465 /** CC_RB_BACKEND_DISABLE.BACKEND_DISABLE per SE */
466 uint32_t backend_disable[4];
467 /** Value of MC_ARB_RAMCFG register*/
468 uint32_t mc_arb_ramcfg;
469 /** Value of GB_ADDR_CONFIG */
470 uint32_t gb_addr_cfg;
471 /** Values of the GB_TILE_MODE0..31 registers */
472 uint32_t gb_tile_mode[32];
473 /** Values of GB_MACROTILE_MODE0..15 registers */
474 uint32_t gb_macro_tile_mode[16];
475 /** Value of PA_SC_RASTER_CONFIG register per SE */
476 uint32_t pa_sc_raster_cfg[4];
477 /** Value of PA_SC_RASTER_CONFIG_1 register per SE */
478 uint32_t pa_sc_raster_cfg1[4];
479 /* CU info */
480 uint32_t cu_active_number;
481 uint32_t cu_ao_mask;
482 uint32_t cu_bitmap[4][4];
Ken Wang4bf29412015-06-03 17:15:29 +0800483 /* video memory type info*/
484 uint32_t vram_type;
485 /* video memory bit width*/
486 uint32_t vram_bit_width;
Ken Wangcdd1edc2015-06-03 17:21:27 +0800487 /** constant engine ram size*/
488 uint32_t ce_ram_size;
Alex Deucher09361392015-04-20 12:04:22 -0400489};
490
491
492/*--------------------------------------------------------------------------*/
493/*------------------------- Functions --------------------------------------*/
494/*--------------------------------------------------------------------------*/
495
496/*
497 * Initialization / Cleanup
498 *
499*/
500
Alex Deucher09361392015-04-20 12:04:22 -0400501/**
502 *
503 * \param fd - \c [in] File descriptor for AMD GPU device
504 * received previously as the result of
505 * e.g. drmOpen() call.
Christian König558e1292015-06-30 16:04:44 +0200506 * For legacy fd type, the DRI2/DRI3
507 * authentication should be done before
508 * calling this function.
Alex Deucher09361392015-04-20 12:04:22 -0400509 * \param major_version - \c [out] Major version of library. It is assumed
510 * that adding new functionality will cause
511 * increase in major version
512 * \param minor_version - \c [out] Minor version of library
513 * \param device_handle - \c [out] Pointer to opaque context which should
514 * be passed as the first parameter on each
515 * API call
516 *
517 *
518 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400519 * <0 - Negative POSIX Error code
520 *
521 *
522 * \sa amdgpu_device_deinitialize()
523*/
524int amdgpu_device_initialize(int fd,
525 uint32_t *major_version,
526 uint32_t *minor_version,
527 amdgpu_device_handle *device_handle);
528
Alex Deucher09361392015-04-20 12:04:22 -0400529/**
530 *
531 * When access to such library does not needed any more the special
532 * function must be call giving opportunity to clean up any
533 * resources if needed.
534 *
535 * \param device_handle - \c [in] Context associated with file
536 * descriptor for AMD GPU device
537 * received previously as the
538 * result e.g. of drmOpen() call.
539 *
540 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400541 * <0 - Negative POSIX Error code
542 *
543 * \sa amdgpu_device_initialize()
544 *
545*/
546int amdgpu_device_deinitialize(amdgpu_device_handle device_handle);
547
Alex Deucher09361392015-04-20 12:04:22 -0400548/*
549 * Memory Management
550 *
551*/
552
553/**
554 * Allocate memory to be used by UMD for GPU related operations
555 *
556 * \param dev - \c [in] Device handle.
557 * See #amdgpu_device_initialize()
558 * \param alloc_buffer - \c [in] Pointer to the structure describing an
559 * allocation request
560 * \param info - \c [out] Pointer to structure which return
561 * information about allocated memory
562 *
563 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400564 * <0 - Negative POSIX Error code
565 *
566 * \sa amdgpu_bo_free()
567*/
568int amdgpu_bo_alloc(amdgpu_device_handle dev,
569 struct amdgpu_bo_alloc_request *alloc_buffer,
570 struct amdgpu_bo_alloc_result *info);
571
572/**
573 * Associate opaque data with buffer to be queried by another UMD
574 *
575 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
576 * \param buf_handle - \c [in] Buffer handle
577 * \param info - \c [in] Metadata to associated with buffer
578 *
579 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400580 * <0 - Negative POSIX Error code
581*/
582int amdgpu_bo_set_metadata(amdgpu_bo_handle buf_handle,
583 struct amdgpu_bo_metadata *info);
584
585/**
586 * Query buffer information including metadata previusly associated with
587 * buffer.
588 *
589 * \param dev - \c [in] Device handle.
590 * See #amdgpu_device_initialize()
591 * \param buf_handle - \c [in] Buffer handle
592 * \param info - \c [out] Structure describing buffer
593 *
594 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400595 * <0 - Negative POSIX Error code
596 *
597 * \sa amdgpu_bo_set_metadata(), amdgpu_bo_alloc()
598*/
599int amdgpu_bo_query_info(amdgpu_bo_handle buf_handle,
600 struct amdgpu_bo_info *info);
601
602/**
603 * Allow others to get access to buffer
604 *
605 * \param dev - \c [in] Device handle.
606 * See #amdgpu_device_initialize()
607 * \param buf_handle - \c [in] Buffer handle
608 * \param type - \c [in] Type of handle requested
609 * \param shared_handle - \c [out] Special "shared" handle
610 *
611 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400612 * <0 - Negative POSIX Error code
613 *
614 * \sa amdgpu_bo_import()
615 *
616*/
617int amdgpu_bo_export(amdgpu_bo_handle buf_handle,
618 enum amdgpu_bo_handle_type type,
619 uint32_t *shared_handle);
620
621/**
622 * Request access to "shared" buffer
623 *
624 * \param dev - \c [in] Device handle.
625 * See #amdgpu_device_initialize()
626 * \param type - \c [in] Type of handle requested
627 * \param shared_handle - \c [in] Shared handle received as result "import"
628 * operation
629 * \param output - \c [out] Pointer to structure with information
630 * about imported buffer
631 *
632 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400633 * <0 - Negative POSIX Error code
634 *
635 * \note Buffer must be "imported" only using new "fd" (different from
636 * one used by "exporter").
637 *
638 * \sa amdgpu_bo_export()
639 *
640*/
641int amdgpu_bo_import(amdgpu_device_handle dev,
642 enum amdgpu_bo_handle_type type,
643 uint32_t shared_handle,
644 struct amdgpu_bo_import_result *output);
645
646/**
Christian König558e1292015-06-30 16:04:44 +0200647 * Request GPU access to user allocated memory e.g. via "malloc"
648 *
649 * \param dev - [in] Device handle. See #amdgpu_device_initialize()
650 * \param cpu - [in] CPU address of user allocated memory which we
651 * want to map to GPU address space (make GPU accessible)
652 * (This address must be correctly aligned).
653 * \param size - [in] Size of allocation (must be correctly aligned)
654 * \param amdgpu_bo_alloc_result - [out] Handle of allocation to be passed as
655 * resource on submission and be used in other operations.
656 *
657 *
Christian König28462eb2015-06-30 16:27:27 +0200658 * \return 0 on success\n
659 * <0 - Negative POSIX Error code
Christian König558e1292015-06-30 16:04:44 +0200660 *
661 * \note
662 * This call doesn't guarantee that such memory will be persistently
663 * "locked" / make non-pageable. The purpose of this call is to provide
664 * opportunity for GPU get access to this resource during submission.
665 *
666 * The maximum amount of memory which could be mapped in this call depends
667 * if overcommit is disabled or not. If overcommit is disabled than the max.
668 * amount of memory to be pinned will be limited by left "free" size in total
669 * amount of memory which could be locked simultaneously ("GART" size).
670 *
671 * Supported (theoretical) max. size of mapping is restricted only by
672 * "GART" size.
673 *
674 * It is responsibility of caller to correctly specify access rights
675 * on VA assignment.
676*/
677int amdgpu_create_bo_from_user_mem(amdgpu_device_handle dev,
678 void *cpu, uint64_t size,
679 struct amdgpu_bo_alloc_result *info);
680
681/**
Alex Deucher09361392015-04-20 12:04:22 -0400682 * Free previosuly allocated memory
683 *
684 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
685 * \param buf_handle - \c [in] Buffer handle to free
686 *
687 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400688 * <0 - Negative POSIX Error code
689 *
690 * \note In the case of memory shared between different applications all
691 * resources will be “physically” freed only all such applications
692 * will be terminated
693 * \note If is UMD responsibility to ‘free’ buffer only when there is no
694 * more GPU access
695 *
696 * \sa amdgpu_bo_set_metadata(), amdgpu_bo_alloc()
697 *
698*/
699int amdgpu_bo_free(amdgpu_bo_handle buf_handle);
700
701/**
702 * Request CPU access to GPU accessable memory
703 *
704 * \param buf_handle - \c [in] Buffer handle
705 * \param cpu - \c [out] CPU address to be used for access
706 *
707 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400708 * <0 - Negative POSIX Error code
709 *
710 * \sa amdgpu_bo_cpu_unmap()
711 *
712*/
713int amdgpu_bo_cpu_map(amdgpu_bo_handle buf_handle, void **cpu);
714
715/**
716 * Release CPU access to GPU memory
717 *
718 * \param buf_handle - \c [in] Buffer handle
719 *
720 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400721 * <0 - Negative POSIX Error code
722 *
723 * \sa amdgpu_bo_cpu_map()
724 *
725*/
726int amdgpu_bo_cpu_unmap(amdgpu_bo_handle buf_handle);
727
Alex Deucher09361392015-04-20 12:04:22 -0400728/**
729 * Wait until a buffer is not used by the device.
730 *
731 * \param dev - \c [in] Device handle. See #amdgpu_lib_initialize()
732 * \param buf_handle - \c [in] Buffer handle.
733 * \param timeout_ns - Timeout in nanoseconds.
734 * \param buffer_busy - 0 if buffer is idle, all GPU access was completed
735 * and no GPU access is scheduled.
736 * 1 GPU access is in fly or scheduled
737 *
738 * \return 0 - on success
Christian König558e1292015-06-30 16:04:44 +0200739 * <0 - Negative POSIX Error code
Alex Deucher09361392015-04-20 12:04:22 -0400740 */
741int amdgpu_bo_wait_for_idle(amdgpu_bo_handle buf_handle,
742 uint64_t timeout_ns,
743 bool *buffer_busy);
744
Christian König6dc2eaf2015-04-22 14:52:34 +0200745/**
746 * Creates a BO list handle for command submission.
747 *
748 * \param dev - \c [in] Device handle.
749 * See #amdgpu_device_initialize()
750 * \param number_of_resources - \c [in] Number of BOs in the list
751 * \param resources - \c [in] List of BO handles
752 * \param resource_prios - \c [in] Optional priority for each handle
753 * \param result - \c [out] Created BO list handle
754 *
755 * \return 0 on success\n
Christian König6dc2eaf2015-04-22 14:52:34 +0200756 * <0 - Negative POSIX Error code
757 *
758 * \sa amdgpu_bo_list_destroy()
759*/
760int amdgpu_bo_list_create(amdgpu_device_handle dev,
761 uint32_t number_of_resources,
762 amdgpu_bo_handle *resources,
763 uint8_t *resource_prios,
764 amdgpu_bo_list_handle *result);
765
766/**
767 * Destroys a BO list handle.
768 *
769 * \param handle - \c [in] BO list handle.
770 *
771 * \return 0 on success\n
Christian König6dc2eaf2015-04-22 14:52:34 +0200772 * <0 - Negative POSIX Error code
773 *
774 * \sa amdgpu_bo_list_create()
775*/
776int amdgpu_bo_list_destroy(amdgpu_bo_list_handle handle);
Alex Deucher09361392015-04-20 12:04:22 -0400777
Jammy Zhou72446982015-05-18 20:27:24 +0800778/**
779 * Update resources for existing BO list
780 *
781 * \param handle - \c [in] BO list handle
782 * \param number_of_resources - \c [in] Number of BOs in the list
783 * \param resources - \c [in] List of BO handles
784 * \param resource_prios - \c [in] Optional priority for each handle
785 *
786 * \return 0 on success\n
Jammy Zhou72446982015-05-18 20:27:24 +0800787 * <0 - Negative POSIX Error code
788 *
789 * \sa amdgpu_bo_list_update()
790*/
791int amdgpu_bo_list_update(amdgpu_bo_list_handle handle,
792 uint32_t number_of_resources,
793 amdgpu_bo_handle *resources,
794 uint8_t *resource_prios);
795
Alex Deucher09361392015-04-20 12:04:22 -0400796/*
Alex Deucher09361392015-04-20 12:04:22 -0400797 * GPU Execution context
798 *
799*/
800
801/**
802 * Create GPU execution Context
803 *
804 * For the purpose of GPU Scheduler and GPU Robustness extensions it is
805 * necessary to have information/identify rendering/compute contexts.
806 * It also may be needed to associate some specific requirements with such
807 * contexts. Kernel driver will guarantee that submission from the same
808 * context will always be executed in order (first come, first serve).
809 *
810 *
811 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
812 * \param context - \c [out] GPU Context handle
813 *
814 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400815 * <0 - Negative POSIX Error code
816 *
817 * \sa amdgpu_cs_ctx_free()
818 *
819*/
820int amdgpu_cs_ctx_create(amdgpu_device_handle dev,
821 amdgpu_context_handle *context);
822
823/**
824 *
825 * Destroy GPU execution context when not needed any more
826 *
Alex Deucher09361392015-04-20 12:04:22 -0400827 * \param context - \c [in] GPU Context handle
828 *
829 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400830 * <0 - Negative POSIX Error code
831 *
832 * \sa amdgpu_cs_ctx_create()
833 *
834*/
Christian König9c2afff2015-04-22 12:21:13 +0200835int amdgpu_cs_ctx_free(amdgpu_context_handle context);
Alex Deucher09361392015-04-20 12:04:22 -0400836
837/**
838 * Query reset state for the specific GPU Context
839 *
Alex Deucher09361392015-04-20 12:04:22 -0400840 * \param context - \c [in] GPU Context handle
Marek Olšák4b39a8e2015-05-05 21:23:02 +0200841 * \param state - \c [out] One of AMDGPU_CTX_*_RESET
842 * \param hangs - \c [out] Number of hangs caused by the context.
Alex Deucher09361392015-04-20 12:04:22 -0400843 *
844 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400845 * <0 - Negative POSIX Error code
846 *
847 * \sa amdgpu_cs_ctx_create()
848 *
849*/
Christian König9c2afff2015-04-22 12:21:13 +0200850int amdgpu_cs_query_reset_state(amdgpu_context_handle context,
Marek Olšák4b39a8e2015-05-05 21:23:02 +0200851 uint32_t *state, uint32_t *hangs);
Alex Deucher09361392015-04-20 12:04:22 -0400852
Alex Deucher09361392015-04-20 12:04:22 -0400853/*
854 * Command Buffers Management
855 *
856*/
857
Alex Deucher09361392015-04-20 12:04:22 -0400858/**
859 * Send request to submit command buffers to hardware.
860 *
861 * Kernel driver could use GPU Scheduler to make decision when physically
862 * sent this request to the hardware. Accordingly this request could be put
863 * in queue and sent for execution later. The only guarantee is that request
864 * from the same GPU context to the same ip:ip_instance:ring will be executed in
865 * order.
866 *
867 *
868 * \param dev - \c [in] Device handle.
869 * See #amdgpu_device_initialize()
870 * \param context - \c [in] GPU Context
871 * \param flags - \c [in] Global submission flags
872 * \param ibs_request - \c [in] Pointer to submission requests.
873 * We could submit to the several
874 * engines/rings simulteniously as
875 * 'atomic' operation
876 * \param number_of_requests - \c [in] Number of submission requests
877 * \param fences - \c [out] Pointer to array of data to get
878 * fences to identify submission
879 * requests. Timestamps are valid
880 * in this GPU context and could be used
881 * to identify/detect completion of
882 * submission request
883 *
884 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400885 * <0 - Negative POSIX Error code
886 *
Alex Deucher09361392015-04-20 12:04:22 -0400887 * \note It is required to pass correct resource list with buffer handles
888 * which will be accessible by command buffers from submission
889 * This will allow kernel driver to correctly implement "paging".
890 * Failure to do so will have unpredictable results.
891 *
892 * \sa amdgpu_command_buffer_alloc(), amdgpu_command_buffer_free(),
893 * amdgpu_cs_query_fence_status()
894 *
895*/
Christian König9c2afff2015-04-22 12:21:13 +0200896int amdgpu_cs_submit(amdgpu_context_handle context,
Alex Deucher09361392015-04-20 12:04:22 -0400897 uint64_t flags,
898 struct amdgpu_cs_request *ibs_request,
899 uint32_t number_of_requests,
900 uint64_t *fences);
901
902/**
903 * Query status of Command Buffer Submission
904 *
Alex Deucher09361392015-04-20 12:04:22 -0400905 * \param fence - \c [in] Structure describing fence to query
Jammy Zhouf91b56d2015-07-09 13:51:13 +0800906 * \param timeout_ns - \c [in] Timeout value to wait
907 * \param flags - \c [in] Flags for the query
Alex Deucher09361392015-04-20 12:04:22 -0400908 * \param expired - \c [out] If fence expired or not.\n
909 * 0 – if fence is not expired\n
910 * !0 - otherwise
911 *
912 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400913 * <0 - Negative POSIX Error code
914 *
915 * \note If UMD wants only to check operation status and returned immediately
916 * then timeout value as 0 must be passed. In this case success will be
917 * returned in the case if submission was completed or timeout error
918 * code.
919 *
920 * \sa amdgpu_cs_submit()
921*/
Christian König9c2afff2015-04-22 12:21:13 +0200922int amdgpu_cs_query_fence_status(struct amdgpu_cs_query_fence *fence,
Jammy Zhouf91b56d2015-07-09 13:51:13 +0800923 uint64_t timeout_ns,
924 uint64_t flags,
Alex Deucher09361392015-04-20 12:04:22 -0400925 uint32_t *expired);
926
Alex Deucher09361392015-04-20 12:04:22 -0400927/*
928 * Query / Info API
929 *
930*/
931
Alex Deucher09361392015-04-20 12:04:22 -0400932/**
933 * Query allocation size alignments
934 *
935 * UMD should query information about GPU VM MC size alignments requirements
936 * to be able correctly choose required allocation size and implement
937 * internal optimization if needed.
938 *
939 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
940 * \param info - \c [out] Pointer to structure to get size alignment
941 * requirements
942 *
943 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400944 * <0 - Negative POSIX Error code
945 *
946*/
947int amdgpu_query_buffer_size_alignment(amdgpu_device_handle dev,
Christian König558e1292015-06-30 16:04:44 +0200948 struct amdgpu_buffer_size_alignments
949 *info);
Alex Deucher09361392015-04-20 12:04:22 -0400950
951/**
952 * Query firmware versions
953 *
954 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
955 * \param fw_type - \c [in] AMDGPU_INFO_FW_*
956 * \param ip_instance - \c [in] Index of the IP block of the same type.
957 * \param index - \c [in] Index of the engine. (for SDMA and MEC)
958 * \param version - \c [out] Pointer to to the "version" return value
959 * \param feature - \c [out] Pointer to to the "feature" return value
960 *
961 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400962 * <0 - Negative POSIX Error code
963 *
964*/
965int amdgpu_query_firmware_version(amdgpu_device_handle dev, unsigned fw_type,
966 unsigned ip_instance, unsigned index,
967 uint32_t *version, uint32_t *feature);
968
Alex Deucher09361392015-04-20 12:04:22 -0400969/**
970 * Query the number of HW IP instances of a certain type.
971 *
972 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
973 * \param type - \c [in] Hardware IP block type = AMDGPU_HW_IP_*
974 * \param count - \c [out] Pointer to structure to get information
975 *
976 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400977 * <0 - Negative POSIX Error code
978*/
979int amdgpu_query_hw_ip_count(amdgpu_device_handle dev, unsigned type,
980 uint32_t *count);
981
Alex Deucher09361392015-04-20 12:04:22 -0400982/**
983 * Query engine information
984 *
985 * This query allows UMD to query information different engines and their
986 * capabilities.
987 *
988 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
989 * \param type - \c [in] Hardware IP block type = AMDGPU_HW_IP_*
990 * \param ip_instance - \c [in] Index of the IP block of the same type.
991 * \param info - \c [out] Pointer to structure to get information
992 *
993 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -0400994 * <0 - Negative POSIX Error code
995*/
996int amdgpu_query_hw_ip_info(amdgpu_device_handle dev, unsigned type,
997 unsigned ip_instance,
998 struct drm_amdgpu_info_hw_ip *info);
999
Alex Deucher09361392015-04-20 12:04:22 -04001000/**
1001 * Query heap information
1002 *
1003 * This query allows UMD to query potentially available memory resources and
1004 * adjust their logic if necessary.
1005 *
1006 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
1007 * \param heap - \c [in] Heap type
1008 * \param info - \c [in] Pointer to structure to get needed information
1009 *
1010 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -04001011 * <0 - Negative POSIX Error code
1012 *
1013*/
Christian König558e1292015-06-30 16:04:44 +02001014int amdgpu_query_heap_info(amdgpu_device_handle dev, uint32_t heap,
1015 uint32_t flags, struct amdgpu_heap_info *info);
Alex Deucher09361392015-04-20 12:04:22 -04001016
1017/**
1018 * Get the CRTC ID from the mode object ID
1019 *
1020 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
1021 * \param id - \c [in] Mode object ID
1022 * \param result - \c [in] Pointer to the CRTC ID
1023 *
1024 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -04001025 * <0 - Negative POSIX Error code
1026 *
1027*/
1028int amdgpu_query_crtc_from_id(amdgpu_device_handle dev, unsigned id,
1029 int32_t *result);
1030
Alex Deucher09361392015-04-20 12:04:22 -04001031/**
1032 * Query GPU H/w Info
1033 *
1034 * Query hardware specific information
1035 *
1036 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
1037 * \param heap - \c [in] Heap type
1038 * \param info - \c [in] Pointer to structure to get needed information
1039 *
1040 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -04001041 * <0 - Negative POSIX Error code
1042 *
1043*/
1044int amdgpu_query_gpu_info(amdgpu_device_handle dev,
1045 struct amdgpu_gpu_info *info);
1046
Alex Deucher09361392015-04-20 12:04:22 -04001047/**
1048 * Query hardware or driver information.
1049 *
1050 * The return size is query-specific and depends on the "info_id" parameter.
1051 * No more than "size" bytes is returned.
1052 *
1053 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
1054 * \param info_id - \c [in] AMDGPU_INFO_*
1055 * \param size - \c [in] Size of the returned value.
1056 * \param value - \c [out] Pointer to the return value.
1057 *
1058 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -04001059 * <0 - Negative POSIX error code
1060 *
1061*/
1062int amdgpu_query_info(amdgpu_device_handle dev, unsigned info_id,
1063 unsigned size, void *value);
1064
Christian König558e1292015-06-30 16:04:44 +02001065/**
1066 * Query information about GDS
1067 *
1068 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize()
1069 * \param gds_info - \c [out] Pointer to structure to get GDS information
1070 *
1071 * \return 0 on success\n
Christian König558e1292015-06-30 16:04:44 +02001072 * <0 - Negative POSIX Error code
1073 *
1074*/
1075int amdgpu_query_gds_info(amdgpu_device_handle dev,
1076 struct amdgpu_gds_resource_info *gds_info);
Alex Deucher09361392015-04-20 12:04:22 -04001077
1078/**
1079 * Read a set of consecutive memory-mapped registers.
1080 * Not all registers are allowed to be read by userspace.
1081 *
1082 * \param dev - \c [in] Device handle. See #amdgpu_device_initialize(
1083 * \param dword_offset - \c [in] Register offset in dwords
1084 * \param count - \c [in] The number of registers to read starting
1085 * from the offset
1086 * \param instance - \c [in] GRBM_GFX_INDEX selector. It may have other
1087 * uses. Set it to 0xffffffff if unsure.
1088 * \param flags - \c [in] Flags with additional information.
1089 * \param values - \c [out] The pointer to return values.
1090 *
1091 * \return 0 on success\n
Alex Deucher09361392015-04-20 12:04:22 -04001092 * <0 - Negative POSIX error code
1093 *
1094*/
1095int amdgpu_read_mm_registers(amdgpu_device_handle dev, unsigned dword_offset,
1096 unsigned count, uint32_t instance, uint32_t flags,
1097 uint32_t *values);
1098
Sabre Shao23fab592015-07-09 13:50:36 +08001099/**
1100 * Allocate virtual address range
1101 *
1102 * \param dev - [in] Device handle. See #amdgpu_device_initialize()
1103 * \param va_range_type - \c [in] Type of MC va range from which to allocate
1104 * \param size - \c [in] Size of range. Size must be correctly* aligned.
1105 * It is client responsibility to correctly aligned size based on the future
1106 * usage of allocated range.
1107 * \param va_base_alignment - \c [in] Overwrite base address alignment
1108 * requirement for GPU VM MC virtual
1109 * address assignment. Must be multiple of size alignments received as
1110 * 'amdgpu_buffer_size_alignments'.
1111 * If 0 use the default one.
1112 * \param va_base_required - \c [in] Specified required va base address.
1113 * If 0 then library choose available one.
1114 * If !0 value will be passed and those value already "in use" then
1115 * corresponding error status will be returned.
1116 * \param va_base_allocated - \c [out] On return: Allocated VA base to be used
1117 * by client.
1118 * \param va_range_handle - \c [out] On return: Handle assigned to allocation
1119 *
1120 * \return 0 on success\n
1121 * >0 - AMD specific error code\n
1122 * <0 - Negative POSIX Error code
1123 *
1124 * \notes \n
1125 * It is client responsibility to correctly handle VA assignments and usage.
1126 * Neither kernel driver nor libdrm_amdpgu are able to prevent and
1127 * detect wrong va assignemnt.
1128 *
1129 * It is client responsibility to correctly handle multi-GPU cases and to pass
1130 * the corresponding arrays of all devices handles where corresponding VA will
1131 * be used.
1132 *
1133*/
1134int amdgpu_va_range_alloc(amdgpu_device_handle dev,
1135 enum amdgpu_gpu_va_range va_range_type,
1136 uint64_t size,
1137 uint64_t va_base_alignment,
1138 uint64_t va_base_required,
1139 uint64_t *va_base_allocated,
1140 amdgpu_va_handle *va_range_handle);
1141
1142/**
1143 * Free previously allocated virtual address range
1144 *
1145 *
1146 * \param va_range_handle - \c [in] Handle assigned to VA allocation
1147 *
1148 * \return 0 on success\n
1149 * >0 - AMD specific error code\n
1150 * <0 - Negative POSIX Error code
1151 *
1152*/
1153int amdgpu_va_range_free(amdgpu_va_handle va_range_handle);
1154
Sabre Shao12802da2015-07-09 13:53:24 +08001155/**
1156* Query virtual address range
1157*
1158* UMD can query GPU VM range supported by each device
1159* to initialize its own VAM accordingly.
1160*
1161* \param dev - [in] Device handle. See #amdgpu_device_initialize()
1162* \param type - \c [in] Type of virtual address range
1163* \param offset - \c [out] Start offset of virtual address range
1164* \param size - \c [out] Size of virtual address range
1165*
1166* \return 0 on success\n
1167* <0 - Negative POSIX Error code
1168*
1169*/
1170
1171int amdgpu_va_range_query(amdgpu_device_handle dev,
1172 enum amdgpu_gpu_va_range type,
1173 uint64_t *start,
1174 uint64_t *end);
1175
Alex Deucher09361392015-04-20 12:04:22 -04001176#endif /* #ifdef _AMDGPU_H_ */