0001 =====================
0002 DRM Memory Management
0003 =====================
0004
0005 Modern Linux systems require large amount of graphics memory to store
0006 frame buffers, textures, vertices and other graphics-related data. Given
0007 the very dynamic nature of many of that data, managing graphics memory
0008 efficiently is thus crucial for the graphics stack and plays a central
0009 role in the DRM infrastructure.
0010
0011 The DRM core includes two memory managers, namely Translation Table Manager
0012 (TTM) and Graphics Execution Manager (GEM). TTM was the first DRM memory
0013 manager to be developed and tried to be a one-size-fits-them all
0014 solution. It provides a single userspace API to accommodate the need of
0015 all hardware, supporting both Unified Memory Architecture (UMA) devices
0016 and devices with dedicated video RAM (i.e. most discrete video cards).
0017 This resulted in a large, complex piece of code that turned out to be
0018 hard to use for driver development.
0019
0020 GEM started as an Intel-sponsored project in reaction to TTM's
0021 complexity. Its design philosophy is completely different: instead of
0022 providing a solution to every graphics memory-related problems, GEM
0023 identified common code between drivers and created a support library to
0024 share it. GEM has simpler initialization and execution requirements than
0025 TTM, but has no video RAM management capabilities and is thus limited to
0026 UMA devices.
0027
0028 The Translation Table Manager (TTM)
0029 ===================================
0030
0031 .. kernel-doc:: drivers/gpu/drm/ttm/ttm_module.c
0032 :doc: TTM
0033
0034 .. kernel-doc:: include/drm/ttm/ttm_caching.h
0035 :internal:
0036
0037 TTM device object reference
0038 ---------------------------
0039
0040 .. kernel-doc:: include/drm/ttm/ttm_device.h
0041 :internal:
0042
0043 .. kernel-doc:: drivers/gpu/drm/ttm/ttm_device.c
0044 :export:
0045
0046 TTM resource placement reference
0047 --------------------------------
0048
0049 .. kernel-doc:: include/drm/ttm/ttm_placement.h
0050 :internal:
0051
0052 TTM resource object reference
0053 -----------------------------
0054
0055 .. kernel-doc:: include/drm/ttm/ttm_resource.h
0056 :internal:
0057
0058 .. kernel-doc:: drivers/gpu/drm/ttm/ttm_resource.c
0059 :export:
0060
0061 TTM TT object reference
0062 -----------------------
0063
0064 .. kernel-doc:: include/drm/ttm/ttm_tt.h
0065 :internal:
0066
0067 .. kernel-doc:: drivers/gpu/drm/ttm/ttm_tt.c
0068 :export:
0069
0070 TTM page pool reference
0071 -----------------------
0072
0073 .. kernel-doc:: include/drm/ttm/ttm_pool.h
0074 :internal:
0075
0076 .. kernel-doc:: drivers/gpu/drm/ttm/ttm_pool.c
0077 :export:
0078
0079 The Graphics Execution Manager (GEM)
0080 ====================================
0081
0082 The GEM design approach has resulted in a memory manager that doesn't
0083 provide full coverage of all (or even all common) use cases in its
0084 userspace or kernel API. GEM exposes a set of standard memory-related
0085 operations to userspace and a set of helper functions to drivers, and
0086 let drivers implement hardware-specific operations with their own
0087 private API.
0088
0089 The GEM userspace API is described in the `GEM - the Graphics Execution
0090 Manager <http://lwn.net/Articles/283798/>`__ article on LWN. While
0091 slightly outdated, the document provides a good overview of the GEM API
0092 principles. Buffer allocation and read and write operations, described
0093 as part of the common GEM API, are currently implemented using
0094 driver-specific ioctls.
0095
0096 GEM is data-agnostic. It manages abstract buffer objects without knowing
0097 what individual buffers contain. APIs that require knowledge of buffer
0098 contents or purpose, such as buffer allocation or synchronization
0099 primitives, are thus outside of the scope of GEM and must be implemented
0100 using driver-specific ioctls.
0101
0102 On a fundamental level, GEM involves several operations:
0103
0104 - Memory allocation and freeing
0105 - Command execution
0106 - Aperture management at command execution time
0107
0108 Buffer object allocation is relatively straightforward and largely
0109 provided by Linux's shmem layer, which provides memory to back each
0110 object.
0111
0112 Device-specific operations, such as command execution, pinning, buffer
0113 read & write, mapping, and domain ownership transfers are left to
0114 driver-specific ioctls.
0115
0116 GEM Initialization
0117 ------------------
0118
0119 Drivers that use GEM must set the DRIVER_GEM bit in the struct
0120 :c:type:`struct drm_driver <drm_driver>` driver_features
0121 field. The DRM core will then automatically initialize the GEM core
0122 before calling the load operation. Behind the scene, this will create a
0123 DRM Memory Manager object which provides an address space pool for
0124 object allocation.
0125
0126 In a KMS configuration, drivers need to allocate and initialize a
0127 command ring buffer following core GEM initialization if required by the
0128 hardware. UMA devices usually have what is called a "stolen" memory
0129 region, which provides space for the initial framebuffer and large,
0130 contiguous memory regions required by the device. This space is
0131 typically not managed by GEM, and must be initialized separately into
0132 its own DRM MM object.
0133
0134 GEM Objects Creation
0135 --------------------
0136
0137 GEM splits creation of GEM objects and allocation of the memory that
0138 backs them in two distinct operations.
0139
0140 GEM objects are represented by an instance of struct :c:type:`struct
0141 drm_gem_object <drm_gem_object>`. Drivers usually need to
0142 extend GEM objects with private information and thus create a
0143 driver-specific GEM object structure type that embeds an instance of
0144 struct :c:type:`struct drm_gem_object <drm_gem_object>`.
0145
0146 To create a GEM object, a driver allocates memory for an instance of its
0147 specific GEM object type and initializes the embedded struct
0148 :c:type:`struct drm_gem_object <drm_gem_object>` with a call
0149 to drm_gem_object_init(). The function takes a pointer
0150 to the DRM device, a pointer to the GEM object and the buffer object
0151 size in bytes.
0152
0153 GEM uses shmem to allocate anonymous pageable memory.
0154 drm_gem_object_init() will create an shmfs file of the
0155 requested size and store it into the struct :c:type:`struct
0156 drm_gem_object <drm_gem_object>` filp field. The memory is
0157 used as either main storage for the object when the graphics hardware
0158 uses system memory directly or as a backing store otherwise.
0159
0160 Drivers are responsible for the actual physical pages allocation by
0161 calling shmem_read_mapping_page_gfp() for each page.
0162 Note that they can decide to allocate pages when initializing the GEM
0163 object, or to delay allocation until the memory is needed (for instance
0164 when a page fault occurs as a result of a userspace memory access or
0165 when the driver needs to start a DMA transfer involving the memory).
0166
0167 Anonymous pageable memory allocation is not always desired, for instance
0168 when the hardware requires physically contiguous system memory as is
0169 often the case in embedded devices. Drivers can create GEM objects with
0170 no shmfs backing (called private GEM objects) by initializing them with a call
0171 to drm_gem_private_object_init() instead of drm_gem_object_init(). Storage for
0172 private GEM objects must be managed by drivers.
0173
0174 GEM Objects Lifetime
0175 --------------------
0176
0177 All GEM objects are reference-counted by the GEM core. References can be
0178 acquired and release by calling drm_gem_object_get() and drm_gem_object_put()
0179 respectively.
0180
0181 When the last reference to a GEM object is released the GEM core calls
0182 the :c:type:`struct drm_gem_object_funcs <gem_object_funcs>` free
0183 operation. That operation is mandatory for GEM-enabled drivers and must
0184 free the GEM object and all associated resources.
0185
0186 void (\*free) (struct drm_gem_object \*obj); Drivers are
0187 responsible for freeing all GEM object resources. This includes the
0188 resources created by the GEM core, which need to be released with
0189 drm_gem_object_release().
0190
0191 GEM Objects Naming
0192 ------------------
0193
0194 Communication between userspace and the kernel refers to GEM objects
0195 using local handles, global names or, more recently, file descriptors.
0196 All of those are 32-bit integer values; the usual Linux kernel limits
0197 apply to the file descriptors.
0198
0199 GEM handles are local to a DRM file. Applications get a handle to a GEM
0200 object through a driver-specific ioctl, and can use that handle to refer
0201 to the GEM object in other standard or driver-specific ioctls. Closing a
0202 DRM file handle frees all its GEM handles and dereferences the
0203 associated GEM objects.
0204
0205 To create a handle for a GEM object drivers call drm_gem_handle_create(). The
0206 function takes a pointer to the DRM file and the GEM object and returns a
0207 locally unique handle. When the handle is no longer needed drivers delete it
0208 with a call to drm_gem_handle_delete(). Finally the GEM object associated with a
0209 handle can be retrieved by a call to drm_gem_object_lookup().
0210
0211 Handles don't take ownership of GEM objects, they only take a reference
0212 to the object that will be dropped when the handle is destroyed. To
0213 avoid leaking GEM objects, drivers must make sure they drop the
0214 reference(s) they own (such as the initial reference taken at object
0215 creation time) as appropriate, without any special consideration for the
0216 handle. For example, in the particular case of combined GEM object and
0217 handle creation in the implementation of the dumb_create operation,
0218 drivers must drop the initial reference to the GEM object before
0219 returning the handle.
0220
0221 GEM names are similar in purpose to handles but are not local to DRM
0222 files. They can be passed between processes to reference a GEM object
0223 globally. Names can't be used directly to refer to objects in the DRM
0224 API, applications must convert handles to names and names to handles
0225 using the DRM_IOCTL_GEM_FLINK and DRM_IOCTL_GEM_OPEN ioctls
0226 respectively. The conversion is handled by the DRM core without any
0227 driver-specific support.
0228
0229 GEM also supports buffer sharing with dma-buf file descriptors through
0230 PRIME. GEM-based drivers must use the provided helpers functions to
0231 implement the exporting and importing correctly. See ?. Since sharing
0232 file descriptors is inherently more secure than the easily guessable and
0233 global GEM names it is the preferred buffer sharing mechanism. Sharing
0234 buffers through GEM names is only supported for legacy userspace.
0235 Furthermore PRIME also allows cross-device buffer sharing since it is
0236 based on dma-bufs.
0237
0238 GEM Objects Mapping
0239 -------------------
0240
0241 Because mapping operations are fairly heavyweight GEM favours
0242 read/write-like access to buffers, implemented through driver-specific
0243 ioctls, over mapping buffers to userspace. However, when random access
0244 to the buffer is needed (to perform software rendering for instance),
0245 direct access to the object can be more efficient.
0246
0247 The mmap system call can't be used directly to map GEM objects, as they
0248 don't have their own file handle. Two alternative methods currently
0249 co-exist to map GEM objects to userspace. The first method uses a
0250 driver-specific ioctl to perform the mapping operation, calling
0251 do_mmap() under the hood. This is often considered
0252 dubious, seems to be discouraged for new GEM-enabled drivers, and will
0253 thus not be described here.
0254
0255 The second method uses the mmap system call on the DRM file handle. void
0256 \*mmap(void \*addr, size_t length, int prot, int flags, int fd, off_t
0257 offset); DRM identifies the GEM object to be mapped by a fake offset
0258 passed through the mmap offset argument. Prior to being mapped, a GEM
0259 object must thus be associated with a fake offset. To do so, drivers
0260 must call drm_gem_create_mmap_offset() on the object.
0261
0262 Once allocated, the fake offset value must be passed to the application
0263 in a driver-specific way and can then be used as the mmap offset
0264 argument.
0265
0266 The GEM core provides a helper method drm_gem_mmap() to
0267 handle object mapping. The method can be set directly as the mmap file
0268 operation handler. It will look up the GEM object based on the offset
0269 value and set the VMA operations to the :c:type:`struct drm_driver
0270 <drm_driver>` gem_vm_ops field. Note that drm_gem_mmap() doesn't map memory to
0271 userspace, but relies on the driver-provided fault handler to map pages
0272 individually.
0273
0274 To use drm_gem_mmap(), drivers must fill the struct :c:type:`struct drm_driver
0275 <drm_driver>` gem_vm_ops field with a pointer to VM operations.
0276
0277 The VM operations is a :c:type:`struct vm_operations_struct <vm_operations_struct>`
0278 made up of several fields, the more interesting ones being:
0279
0280 .. code-block:: c
0281
0282 struct vm_operations_struct {
0283 void (*open)(struct vm_area_struct * area);
0284 void (*close)(struct vm_area_struct * area);
0285 vm_fault_t (*fault)(struct vm_fault *vmf);
0286 };
0287
0288
0289 The open and close operations must update the GEM object reference
0290 count. Drivers can use the drm_gem_vm_open() and drm_gem_vm_close() helper
0291 functions directly as open and close handlers.
0292
0293 The fault operation handler is responsible for mapping individual pages
0294 to userspace when a page fault occurs. Depending on the memory
0295 allocation scheme, drivers can allocate pages at fault time, or can
0296 decide to allocate memory for the GEM object at the time the object is
0297 created.
0298
0299 Drivers that want to map the GEM object upfront instead of handling page
0300 faults can implement their own mmap file operation handler.
0301
0302 For platforms without MMU the GEM core provides a helper method
0303 drm_gem_cma_get_unmapped_area(). The mmap() routines will call this to get a
0304 proposed address for the mapping.
0305
0306 To use drm_gem_cma_get_unmapped_area(), drivers must fill the struct
0307 :c:type:`struct file_operations <file_operations>` get_unmapped_area field with
0308 a pointer on drm_gem_cma_get_unmapped_area().
0309
0310 More detailed information about get_unmapped_area can be found in
0311 Documentation/admin-guide/mm/nommu-mmap.rst
0312
0313 Memory Coherency
0314 ----------------
0315
0316 When mapped to the device or used in a command buffer, backing pages for
0317 an object are flushed to memory and marked write combined so as to be
0318 coherent with the GPU. Likewise, if the CPU accesses an object after the
0319 GPU has finished rendering to the object, then the object must be made
0320 coherent with the CPU's view of memory, usually involving GPU cache
0321 flushing of various kinds. This core CPU<->GPU coherency management is
0322 provided by a device-specific ioctl, which evaluates an object's current
0323 domain and performs any necessary flushing or synchronization to put the
0324 object into the desired coherency domain (note that the object may be
0325 busy, i.e. an active render target; in that case, setting the domain
0326 blocks the client and waits for rendering to complete before performing
0327 any necessary flushing operations).
0328
0329 Command Execution
0330 -----------------
0331
0332 Perhaps the most important GEM function for GPU devices is providing a
0333 command execution interface to clients. Client programs construct
0334 command buffers containing references to previously allocated memory
0335 objects, and then submit them to GEM. At that point, GEM takes care to
0336 bind all the objects into the GTT, execute the buffer, and provide
0337 necessary synchronization between clients accessing the same buffers.
0338 This often involves evicting some objects from the GTT and re-binding
0339 others (a fairly expensive operation), and providing relocation support
0340 which hides fixed GTT offsets from clients. Clients must take care not
0341 to submit command buffers that reference more objects than can fit in
0342 the GTT; otherwise, GEM will reject them and no rendering will occur.
0343 Similarly, if several objects in the buffer require fence registers to
0344 be allocated for correct rendering (e.g. 2D blits on pre-965 chips),
0345 care must be taken not to require more fence registers than are
0346 available to the client. Such resource management should be abstracted
0347 from the client in libdrm.
0348
0349 GEM Function Reference
0350 ----------------------
0351
0352 .. kernel-doc:: include/drm/drm_gem.h
0353 :internal:
0354
0355 .. kernel-doc:: drivers/gpu/drm/drm_gem.c
0356 :export:
0357
0358 GEM CMA Helper Functions Reference
0359 ----------------------------------
0360
0361 .. kernel-doc:: drivers/gpu/drm/drm_gem_cma_helper.c
0362 :doc: cma helpers
0363
0364 .. kernel-doc:: include/drm/drm_gem_cma_helper.h
0365 :internal:
0366
0367 .. kernel-doc:: drivers/gpu/drm/drm_gem_cma_helper.c
0368 :export:
0369
0370 GEM SHMEM Helper Function Reference
0371 -----------------------------------
0372
0373 .. kernel-doc:: drivers/gpu/drm/drm_gem_shmem_helper.c
0374 :doc: overview
0375
0376 .. kernel-doc:: include/drm/drm_gem_shmem_helper.h
0377 :internal:
0378
0379 .. kernel-doc:: drivers/gpu/drm/drm_gem_shmem_helper.c
0380 :export:
0381
0382 GEM VRAM Helper Functions Reference
0383 -----------------------------------
0384
0385 .. kernel-doc:: drivers/gpu/drm/drm_gem_vram_helper.c
0386 :doc: overview
0387
0388 .. kernel-doc:: include/drm/drm_gem_vram_helper.h
0389 :internal:
0390
0391 .. kernel-doc:: drivers/gpu/drm/drm_gem_vram_helper.c
0392 :export:
0393
0394 GEM TTM Helper Functions Reference
0395 -----------------------------------
0396
0397 .. kernel-doc:: drivers/gpu/drm/drm_gem_ttm_helper.c
0398 :doc: overview
0399
0400 .. kernel-doc:: drivers/gpu/drm/drm_gem_ttm_helper.c
0401 :export:
0402
0403 VMA Offset Manager
0404 ==================
0405
0406 .. kernel-doc:: drivers/gpu/drm/drm_vma_manager.c
0407 :doc: vma offset manager
0408
0409 .. kernel-doc:: include/drm/drm_vma_manager.h
0410 :internal:
0411
0412 .. kernel-doc:: drivers/gpu/drm/drm_vma_manager.c
0413 :export:
0414
0415 .. _prime_buffer_sharing:
0416
0417 PRIME Buffer Sharing
0418 ====================
0419
0420 PRIME is the cross device buffer sharing framework in drm, originally
0421 created for the OPTIMUS range of multi-gpu platforms. To userspace PRIME
0422 buffers are dma-buf based file descriptors.
0423
0424 Overview and Lifetime Rules
0425 ---------------------------
0426
0427 .. kernel-doc:: drivers/gpu/drm/drm_prime.c
0428 :doc: overview and lifetime rules
0429
0430 PRIME Helper Functions
0431 ----------------------
0432
0433 .. kernel-doc:: drivers/gpu/drm/drm_prime.c
0434 :doc: PRIME Helpers
0435
0436 PRIME Function References
0437 -------------------------
0438
0439 .. kernel-doc:: include/drm/drm_prime.h
0440 :internal:
0441
0442 .. kernel-doc:: drivers/gpu/drm/drm_prime.c
0443 :export:
0444
0445 DRM MM Range Allocator
0446 ======================
0447
0448 Overview
0449 --------
0450
0451 .. kernel-doc:: drivers/gpu/drm/drm_mm.c
0452 :doc: Overview
0453
0454 LRU Scan/Eviction Support
0455 -------------------------
0456
0457 .. kernel-doc:: drivers/gpu/drm/drm_mm.c
0458 :doc: lru scan roster
0459
0460 DRM MM Range Allocator Function References
0461 ------------------------------------------
0462
0463 .. kernel-doc:: include/drm/drm_mm.h
0464 :internal:
0465
0466 .. kernel-doc:: drivers/gpu/drm/drm_mm.c
0467 :export:
0468
0469 DRM Buddy Allocator
0470 ===================
0471
0472 DRM Buddy Function References
0473 -----------------------------
0474
0475 .. kernel-doc:: drivers/gpu/drm/drm_buddy.c
0476 :export:
0477
0478 DRM Cache Handling and Fast WC memcpy()
0479 =======================================
0480
0481 .. kernel-doc:: drivers/gpu/drm/drm_cache.c
0482 :export:
0483
0484 DRM Sync Objects
0485 ===========================
0486
0487 .. kernel-doc:: drivers/gpu/drm/drm_syncobj.c
0488 :doc: Overview
0489
0490 .. kernel-doc:: include/drm/drm_syncobj.h
0491 :internal:
0492
0493 .. kernel-doc:: drivers/gpu/drm/drm_syncobj.c
0494 :export:
0495
0496 GPU Scheduler
0497 =============
0498
0499 Overview
0500 --------
0501
0502 .. kernel-doc:: drivers/gpu/drm/scheduler/sched_main.c
0503 :doc: Overview
0504
0505 Scheduler Function References
0506 -----------------------------
0507
0508 .. kernel-doc:: include/drm/gpu_scheduler.h
0509 :internal:
0510
0511 .. kernel-doc:: drivers/gpu/drm/scheduler/sched_main.c
0512 :export:
0513
0514 .. kernel-doc:: drivers/gpu/drm/scheduler/sched_entity.c
0515 :export: