xref: /openbmc/linux/Documentation/gpu/drm-mm.rst (revision ec8f24b7)
1=====================
2DRM Memory Management
3=====================
4
5Modern Linux systems require large amount of graphics memory to store
6frame buffers, textures, vertices and other graphics-related data. Given
7the very dynamic nature of many of that data, managing graphics memory
8efficiently is thus crucial for the graphics stack and plays a central
9role in the DRM infrastructure.
10
11The DRM core includes two memory managers, namely Translation Table Maps
12(TTM) and Graphics Execution Manager (GEM). TTM was the first DRM memory
13manager to be developed and tried to be a one-size-fits-them all
14solution. It provides a single userspace API to accommodate the need of
15all hardware, supporting both Unified Memory Architecture (UMA) devices
16and devices with dedicated video RAM (i.e. most discrete video cards).
17This resulted in a large, complex piece of code that turned out to be
18hard to use for driver development.
19
20GEM started as an Intel-sponsored project in reaction to TTM's
21complexity. Its design philosophy is completely different: instead of
22providing a solution to every graphics memory-related problems, GEM
23identified common code between drivers and created a support library to
24share it. GEM has simpler initialization and execution requirements than
25TTM, but has no video RAM management capabilities and is thus limited to
26UMA devices.
27
28The Translation Table Manager (TTM)
29===================================
30
31TTM design background and information belongs here.
32
33TTM initialization
34------------------
35
36    **Warning**
37    This section is outdated.
38
39Drivers wishing to support TTM must pass a filled :c:type:`ttm_bo_driver
40<ttm_bo_driver>` structure to ttm_bo_device_init, together with an
41initialized global reference to the memory manager.  The ttm_bo_driver
42structure contains several fields with function pointers for
43initializing the TTM, allocating and freeing memory, waiting for command
44completion and fence synchronization, and memory migration.
45
46The :c:type:`struct drm_global_reference <drm_global_reference>` is made
47up of several fields:
48
49.. code-block:: c
50
51              struct drm_global_reference {
52                      enum ttm_global_types global_type;
53                      size_t size;
54                      void *object;
55                      int (*init) (struct drm_global_reference *);
56                      void (*release) (struct drm_global_reference *);
57              };
58
59
60There should be one global reference structure for your memory manager
61as a whole, and there will be others for each object created by the
62memory manager at runtime. Your global TTM should have a type of
63TTM_GLOBAL_TTM_MEM. The size field for the global object should be
64sizeof(struct ttm_mem_global), and the init and release hooks should
65point at your driver-specific init and release routines, which probably
66eventually call ttm_mem_global_init and ttm_mem_global_release,
67respectively.
68
69Once your global TTM accounting structure is set up and initialized by
70calling ttm_global_item_ref() on it, you need to create a buffer
71object TTM to provide a pool for buffer object allocation by clients and
72the kernel itself. The type of this object should be
73TTM_GLOBAL_TTM_BO, and its size should be sizeof(struct
74ttm_bo_global). Again, driver-specific init and release functions may
75be provided, likely eventually calling ttm_bo_global_ref_init() and
76ttm_bo_global_ref_release(), respectively. Also, like the previous
77object, ttm_global_item_ref() is used to create an initial reference
78count for the TTM, which will call your initialization function.
79
80See the radeon_ttm.c file for an example of usage.
81
82
83The Graphics Execution Manager (GEM)
84====================================
85
86The GEM design approach has resulted in a memory manager that doesn't
87provide full coverage of all (or even all common) use cases in its
88userspace or kernel API. GEM exposes a set of standard memory-related
89operations to userspace and a set of helper functions to drivers, and
90let drivers implement hardware-specific operations with their own
91private API.
92
93The GEM userspace API is described in the `GEM - the Graphics Execution
94Manager <http://lwn.net/Articles/283798/>`__ article on LWN. While
95slightly outdated, the document provides a good overview of the GEM API
96principles. Buffer allocation and read and write operations, described
97as part of the common GEM API, are currently implemented using
98driver-specific ioctls.
99
100GEM is data-agnostic. It manages abstract buffer objects without knowing
101what individual buffers contain. APIs that require knowledge of buffer
102contents or purpose, such as buffer allocation or synchronization
103primitives, are thus outside of the scope of GEM and must be implemented
104using driver-specific ioctls.
105
106On a fundamental level, GEM involves several operations:
107
108-  Memory allocation and freeing
109-  Command execution
110-  Aperture management at command execution time
111
112Buffer object allocation is relatively straightforward and largely
113provided by Linux's shmem layer, which provides memory to back each
114object.
115
116Device-specific operations, such as command execution, pinning, buffer
117read & write, mapping, and domain ownership transfers are left to
118driver-specific ioctls.
119
120GEM Initialization
121------------------
122
123Drivers that use GEM must set the DRIVER_GEM bit in the struct
124:c:type:`struct drm_driver <drm_driver>` driver_features
125field. The DRM core will then automatically initialize the GEM core
126before calling the load operation. Behind the scene, this will create a
127DRM Memory Manager object which provides an address space pool for
128object allocation.
129
130In a KMS configuration, drivers need to allocate and initialize a
131command ring buffer following core GEM initialization if required by the
132hardware. UMA devices usually have what is called a "stolen" memory
133region, which provides space for the initial framebuffer and large,
134contiguous memory regions required by the device. This space is
135typically not managed by GEM, and must be initialized separately into
136its own DRM MM object.
137
138GEM Objects Creation
139--------------------
140
141GEM splits creation of GEM objects and allocation of the memory that
142backs them in two distinct operations.
143
144GEM objects are represented by an instance of struct :c:type:`struct
145drm_gem_object <drm_gem_object>`. Drivers usually need to
146extend GEM objects with private information and thus create a
147driver-specific GEM object structure type that embeds an instance of
148struct :c:type:`struct drm_gem_object <drm_gem_object>`.
149
150To create a GEM object, a driver allocates memory for an instance of its
151specific GEM object type and initializes the embedded struct
152:c:type:`struct drm_gem_object <drm_gem_object>` with a call
153to :c:func:`drm_gem_object_init()`. The function takes a pointer
154to the DRM device, a pointer to the GEM object and the buffer object
155size in bytes.
156
157GEM uses shmem to allocate anonymous pageable memory.
158:c:func:`drm_gem_object_init()` will create an shmfs file of the
159requested size and store it into the struct :c:type:`struct
160drm_gem_object <drm_gem_object>` filp field. The memory is
161used as either main storage for the object when the graphics hardware
162uses system memory directly or as a backing store otherwise.
163
164Drivers are responsible for the actual physical pages allocation by
165calling :c:func:`shmem_read_mapping_page_gfp()` for each page.
166Note that they can decide to allocate pages when initializing the GEM
167object, or to delay allocation until the memory is needed (for instance
168when a page fault occurs as a result of a userspace memory access or
169when the driver needs to start a DMA transfer involving the memory).
170
171Anonymous pageable memory allocation is not always desired, for instance
172when the hardware requires physically contiguous system memory as is
173often the case in embedded devices. Drivers can create GEM objects with
174no shmfs backing (called private GEM objects) by initializing them with
175a call to :c:func:`drm_gem_private_object_init()` instead of
176:c:func:`drm_gem_object_init()`. Storage for private GEM objects
177must be managed by drivers.
178
179GEM Objects Lifetime
180--------------------
181
182All GEM objects are reference-counted by the GEM core. References can be
183acquired and release by :c:func:`calling drm_gem_object_get()` and
184:c:func:`drm_gem_object_put()` respectively. The caller must hold the
185:c:type:`struct drm_device <drm_device>` struct_mutex lock when calling
186:c:func:`drm_gem_object_get()`. As a convenience, GEM provides
187:c:func:`drm_gem_object_put_unlocked()` functions that can be called without
188holding the lock.
189
190When the last reference to a GEM object is released the GEM core calls
191the :c:type:`struct drm_driver <drm_driver>` gem_free_object_unlocked
192operation. That operation is mandatory for GEM-enabled drivers and must
193free the GEM object and all associated resources.
194
195void (\*gem_free_object) (struct drm_gem_object \*obj); Drivers are
196responsible for freeing all GEM object resources. This includes the
197resources created by the GEM core, which need to be released with
198:c:func:`drm_gem_object_release()`.
199
200GEM Objects Naming
201------------------
202
203Communication between userspace and the kernel refers to GEM objects
204using local handles, global names or, more recently, file descriptors.
205All of those are 32-bit integer values; the usual Linux kernel limits
206apply to the file descriptors.
207
208GEM handles are local to a DRM file. Applications get a handle to a GEM
209object through a driver-specific ioctl, and can use that handle to refer
210to the GEM object in other standard or driver-specific ioctls. Closing a
211DRM file handle frees all its GEM handles and dereferences the
212associated GEM objects.
213
214To create a handle for a GEM object drivers call
215:c:func:`drm_gem_handle_create()`. The function takes a pointer
216to the DRM file and the GEM object and returns a locally unique handle.
217When the handle is no longer needed drivers delete it with a call to
218:c:func:`drm_gem_handle_delete()`. Finally the GEM object
219associated with a handle can be retrieved by a call to
220:c:func:`drm_gem_object_lookup()`.
221
222Handles don't take ownership of GEM objects, they only take a reference
223to the object that will be dropped when the handle is destroyed. To
224avoid leaking GEM objects, drivers must make sure they drop the
225reference(s) they own (such as the initial reference taken at object
226creation time) as appropriate, without any special consideration for the
227handle. For example, in the particular case of combined GEM object and
228handle creation in the implementation of the dumb_create operation,
229drivers must drop the initial reference to the GEM object before
230returning the handle.
231
232GEM names are similar in purpose to handles but are not local to DRM
233files. They can be passed between processes to reference a GEM object
234globally. Names can't be used directly to refer to objects in the DRM
235API, applications must convert handles to names and names to handles
236using the DRM_IOCTL_GEM_FLINK and DRM_IOCTL_GEM_OPEN ioctls
237respectively. The conversion is handled by the DRM core without any
238driver-specific support.
239
240GEM also supports buffer sharing with dma-buf file descriptors through
241PRIME. GEM-based drivers must use the provided helpers functions to
242implement the exporting and importing correctly. See ?. Since sharing
243file descriptors is inherently more secure than the easily guessable and
244global GEM names it is the preferred buffer sharing mechanism. Sharing
245buffers through GEM names is only supported for legacy userspace.
246Furthermore PRIME also allows cross-device buffer sharing since it is
247based on dma-bufs.
248
249GEM Objects Mapping
250-------------------
251
252Because mapping operations are fairly heavyweight GEM favours
253read/write-like access to buffers, implemented through driver-specific
254ioctls, over mapping buffers to userspace. However, when random access
255to the buffer is needed (to perform software rendering for instance),
256direct access to the object can be more efficient.
257
258The mmap system call can't be used directly to map GEM objects, as they
259don't have their own file handle. Two alternative methods currently
260co-exist to map GEM objects to userspace. The first method uses a
261driver-specific ioctl to perform the mapping operation, calling
262:c:func:`do_mmap()` under the hood. This is often considered
263dubious, seems to be discouraged for new GEM-enabled drivers, and will
264thus not be described here.
265
266The second method uses the mmap system call on the DRM file handle. void
267\*mmap(void \*addr, size_t length, int prot, int flags, int fd, off_t
268offset); DRM identifies the GEM object to be mapped by a fake offset
269passed through the mmap offset argument. Prior to being mapped, a GEM
270object must thus be associated with a fake offset. To do so, drivers
271must call :c:func:`drm_gem_create_mmap_offset()` on the object.
272
273Once allocated, the fake offset value must be passed to the application
274in a driver-specific way and can then be used as the mmap offset
275argument.
276
277The GEM core provides a helper method :c:func:`drm_gem_mmap()` to
278handle object mapping. The method can be set directly as the mmap file
279operation handler. It will look up the GEM object based on the offset
280value and set the VMA operations to the :c:type:`struct drm_driver
281<drm_driver>` gem_vm_ops field. Note that
282:c:func:`drm_gem_mmap()` doesn't map memory to userspace, but
283relies on the driver-provided fault handler to map pages individually.
284
285To use :c:func:`drm_gem_mmap()`, drivers must fill the struct
286:c:type:`struct drm_driver <drm_driver>` gem_vm_ops field
287with a pointer to VM operations.
288
289The VM operations is a :c:type:`struct vm_operations_struct <vm_operations_struct>`
290made up of several fields, the more interesting ones being:
291
292.. code-block:: c
293
294	struct vm_operations_struct {
295		void (*open)(struct vm_area_struct * area);
296		void (*close)(struct vm_area_struct * area);
297		vm_fault_t (*fault)(struct vm_fault *vmf);
298	};
299
300
301The open and close operations must update the GEM object reference
302count. Drivers can use the :c:func:`drm_gem_vm_open()` and
303:c:func:`drm_gem_vm_close()` helper functions directly as open
304and close handlers.
305
306The fault operation handler is responsible for mapping individual pages
307to userspace when a page fault occurs. Depending on the memory
308allocation scheme, drivers can allocate pages at fault time, or can
309decide to allocate memory for the GEM object at the time the object is
310created.
311
312Drivers that want to map the GEM object upfront instead of handling page
313faults can implement their own mmap file operation handler.
314
315For platforms without MMU the GEM core provides a helper method
316:c:func:`drm_gem_cma_get_unmapped_area`. The mmap() routines will call
317this to get a proposed address for the mapping.
318
319To use :c:func:`drm_gem_cma_get_unmapped_area`, drivers must fill the
320struct :c:type:`struct file_operations <file_operations>` get_unmapped_area
321field with a pointer on :c:func:`drm_gem_cma_get_unmapped_area`.
322
323More detailed information about get_unmapped_area can be found in
324Documentation/nommu-mmap.txt
325
326Memory Coherency
327----------------
328
329When mapped to the device or used in a command buffer, backing pages for
330an object are flushed to memory and marked write combined so as to be
331coherent with the GPU. Likewise, if the CPU accesses an object after the
332GPU has finished rendering to the object, then the object must be made
333coherent with the CPU's view of memory, usually involving GPU cache
334flushing of various kinds. This core CPU<->GPU coherency management is
335provided by a device-specific ioctl, which evaluates an object's current
336domain and performs any necessary flushing or synchronization to put the
337object into the desired coherency domain (note that the object may be
338busy, i.e. an active render target; in that case, setting the domain
339blocks the client and waits for rendering to complete before performing
340any necessary flushing operations).
341
342Command Execution
343-----------------
344
345Perhaps the most important GEM function for GPU devices is providing a
346command execution interface to clients. Client programs construct
347command buffers containing references to previously allocated memory
348objects, and then submit them to GEM. At that point, GEM takes care to
349bind all the objects into the GTT, execute the buffer, and provide
350necessary synchronization between clients accessing the same buffers.
351This often involves evicting some objects from the GTT and re-binding
352others (a fairly expensive operation), and providing relocation support
353which hides fixed GTT offsets from clients. Clients must take care not
354to submit command buffers that reference more objects than can fit in
355the GTT; otherwise, GEM will reject them and no rendering will occur.
356Similarly, if several objects in the buffer require fence registers to
357be allocated for correct rendering (e.g. 2D blits on pre-965 chips),
358care must be taken not to require more fence registers than are
359available to the client. Such resource management should be abstracted
360from the client in libdrm.
361
362GEM Function Reference
363----------------------
364
365.. kernel-doc:: include/drm/drm_gem.h
366   :internal:
367
368.. kernel-doc:: drivers/gpu/drm/drm_gem.c
369   :export:
370
371GEM CMA Helper Functions Reference
372----------------------------------
373
374.. kernel-doc:: drivers/gpu/drm/drm_gem_cma_helper.c
375   :doc: cma helpers
376
377.. kernel-doc:: include/drm/drm_gem_cma_helper.h
378   :internal:
379
380.. kernel-doc:: drivers/gpu/drm/drm_gem_cma_helper.c
381   :export:
382
383VMA Offset Manager
384==================
385
386.. kernel-doc:: drivers/gpu/drm/drm_vma_manager.c
387   :doc: vma offset manager
388
389.. kernel-doc:: include/drm/drm_vma_manager.h
390   :internal:
391
392.. kernel-doc:: drivers/gpu/drm/drm_vma_manager.c
393   :export:
394
395.. _prime_buffer_sharing:
396
397PRIME Buffer Sharing
398====================
399
400PRIME is the cross device buffer sharing framework in drm, originally
401created for the OPTIMUS range of multi-gpu platforms. To userspace PRIME
402buffers are dma-buf based file descriptors.
403
404Overview and Driver Interface
405-----------------------------
406
407Similar to GEM global names, PRIME file descriptors are also used to
408share buffer objects across processes. They offer additional security:
409as file descriptors must be explicitly sent over UNIX domain sockets to
410be shared between applications, they can't be guessed like the globally
411unique GEM names.
412
413Drivers that support the PRIME API must set the DRIVER_PRIME bit in the
414struct :c:type:`struct drm_driver <drm_driver>`
415driver_features field, and implement the prime_handle_to_fd and
416prime_fd_to_handle operations.
417
418int (\*prime_handle_to_fd)(struct drm_device \*dev, struct drm_file
419\*file_priv, uint32_t handle, uint32_t flags, int \*prime_fd); int
420(\*prime_fd_to_handle)(struct drm_device \*dev, struct drm_file
421\*file_priv, int prime_fd, uint32_t \*handle); Those two operations
422convert a handle to a PRIME file descriptor and vice versa. Drivers must
423use the kernel dma-buf buffer sharing framework to manage the PRIME file
424descriptors. Similar to the mode setting API PRIME is agnostic to the
425underlying buffer object manager, as long as handles are 32bit unsigned
426integers.
427
428While non-GEM drivers must implement the operations themselves, GEM
429drivers must use the :c:func:`drm_gem_prime_handle_to_fd()` and
430:c:func:`drm_gem_prime_fd_to_handle()` helper functions. Those
431helpers rely on the driver gem_prime_export and gem_prime_import
432operations to create a dma-buf instance from a GEM object (dma-buf
433exporter role) and to create a GEM object from a dma-buf instance
434(dma-buf importer role).
435
436struct dma_buf \* (\*gem_prime_export)(struct drm_device \*dev,
437struct drm_gem_object \*obj, int flags); struct drm_gem_object \*
438(\*gem_prime_import)(struct drm_device \*dev, struct dma_buf
439\*dma_buf); These two operations are mandatory for GEM drivers that
440support PRIME.
441
442PRIME Helper Functions
443----------------------
444
445.. kernel-doc:: drivers/gpu/drm/drm_prime.c
446   :doc: PRIME Helpers
447
448PRIME Function References
449-------------------------
450
451.. kernel-doc:: include/drm/drm_prime.h
452   :internal:
453
454.. kernel-doc:: drivers/gpu/drm/drm_prime.c
455   :export:
456
457DRM MM Range Allocator
458======================
459
460Overview
461--------
462
463.. kernel-doc:: drivers/gpu/drm/drm_mm.c
464   :doc: Overview
465
466LRU Scan/Eviction Support
467-------------------------
468
469.. kernel-doc:: drivers/gpu/drm/drm_mm.c
470   :doc: lru scan roster
471
472DRM MM Range Allocator Function References
473------------------------------------------
474
475.. kernel-doc:: include/drm/drm_mm.h
476   :internal:
477
478.. kernel-doc:: drivers/gpu/drm/drm_mm.c
479   :export:
480
481DRM Cache Handling
482==================
483
484.. kernel-doc:: drivers/gpu/drm/drm_cache.c
485   :export:
486
487DRM Sync Objects
488===========================
489
490.. kernel-doc:: drivers/gpu/drm/drm_syncobj.c
491   :doc: Overview
492
493.. kernel-doc:: include/drm/drm_syncobj.h
494   :internal:
495
496.. kernel-doc:: drivers/gpu/drm/drm_syncobj.c
497   :export:
498
499GPU Scheduler
500=============
501
502Overview
503--------
504
505.. kernel-doc:: drivers/gpu/drm/scheduler/sched_main.c
506   :doc: Overview
507
508Scheduler Function References
509-----------------------------
510
511.. kernel-doc:: include/drm/gpu_scheduler.h
512   :internal:
513
514.. kernel-doc:: drivers/gpu/drm/scheduler/sched_main.c
515   :export:
516