blob: b7d801993bfa17196659cd59aed1e727c4aa1083 [file] [log] [blame]
Jani Nikula22554022016-06-21 14:49:00 +03001===========================
2 drm/i915 Intel GFX Driver
3===========================
Jani Nikulaca00c2b2016-06-21 14:48:58 +03004
5The drm/i915 driver supports all (with the exception of some very early
6models) integrated GFX chipsets with both Intel display and rendering
7blocks. This excludes a set of SoC platforms with an SGX rendering unit,
8those have basic support through the gma500 drm driver.
9
10Core Driver Infrastructure
Jani Nikula22554022016-06-21 14:49:00 +030011==========================
Jani Nikulaca00c2b2016-06-21 14:48:58 +030012
13This section covers core driver infrastructure used by both the display
14and the GEM parts of the driver.
15
16Runtime Power Management
Jani Nikula22554022016-06-21 14:49:00 +030017------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030018
19.. kernel-doc:: drivers/gpu/drm/i915/intel_runtime_pm.c
20 :doc: runtime pm
21
22.. kernel-doc:: drivers/gpu/drm/i915/intel_runtime_pm.c
23 :internal:
24
25.. kernel-doc:: drivers/gpu/drm/i915/intel_uncore.c
26 :internal:
27
28Interrupt Handling
Jani Nikula22554022016-06-21 14:49:00 +030029------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030030
31.. kernel-doc:: drivers/gpu/drm/i915/i915_irq.c
32 :doc: interrupt handling
33
34.. kernel-doc:: drivers/gpu/drm/i915/i915_irq.c
35 :functions: intel_irq_init intel_irq_init_hw intel_hpd_init
36
37.. kernel-doc:: drivers/gpu/drm/i915/i915_irq.c
38 :functions: intel_runtime_pm_disable_interrupts
39
40.. kernel-doc:: drivers/gpu/drm/i915/i915_irq.c
41 :functions: intel_runtime_pm_enable_interrupts
42
43Intel GVT-g Guest Support(vGPU)
Jani Nikula22554022016-06-21 14:49:00 +030044-------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030045
46.. kernel-doc:: drivers/gpu/drm/i915/i915_vgpu.c
47 :doc: Intel GVT-g guest support
48
49.. kernel-doc:: drivers/gpu/drm/i915/i915_vgpu.c
50 :internal:
51
Zhenyu Wang22681c72016-10-19 14:40:59 +080052Intel GVT-g Host Support(vGPU device model)
53-------------------------------------------
54
55.. kernel-doc:: drivers/gpu/drm/i915/intel_gvt.c
56 :doc: Intel GVT-g host support
57
58.. kernel-doc:: drivers/gpu/drm/i915/intel_gvt.c
59 :internal:
60
Oscar Mateo7d3c4252018-04-10 09:12:46 -070061Workarounds
62-----------
63
Mauro Carvalho Chehabbcc87372019-06-04 11:17:42 -030064.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_workarounds.c
Oscar Mateo7d3c4252018-04-10 09:12:46 -070065 :doc: Hardware workarounds
66
Jani Nikulaca00c2b2016-06-21 14:48:58 +030067Display Hardware Handling
Jani Nikula22554022016-06-21 14:49:00 +030068=========================
Jani Nikulaca00c2b2016-06-21 14:48:58 +030069
70This section covers everything related to the display hardware including
71the mode setting infrastructure, plane, sprite and cursor handling and
72display, output probing and related topics.
73
74Mode Setting Infrastructure
Jani Nikula22554022016-06-21 14:49:00 +030075---------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030076
77The i915 driver is thus far the only DRM driver which doesn't use the
78common DRM helper code to implement mode setting sequences. Thus it has
79its own tailor-made infrastructure for executing a display configuration
80change.
81
82Frontbuffer Tracking
Jani Nikula22554022016-06-21 14:49:00 +030083--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030084
Jani Nikula6800d9a2019-06-17 13:29:44 +030085.. kernel-doc:: drivers/gpu/drm/i915/display/intel_frontbuffer.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +030086 :doc: frontbuffer tracking
87
Jani Nikula6800d9a2019-06-17 13:29:44 +030088.. kernel-doc:: drivers/gpu/drm/i915/display/intel_frontbuffer.h
Chris Wilson5d723d72016-08-04 16:32:35 +010089 :internal:
90
Jani Nikula6800d9a2019-06-17 13:29:44 +030091.. kernel-doc:: drivers/gpu/drm/i915/display/intel_frontbuffer.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +030092 :internal:
93
Jani Nikulaca00c2b2016-06-21 14:48:58 +030094Display FIFO Underrun Reporting
Jani Nikula22554022016-06-21 14:49:00 +030095-------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +030096
Jani Nikula6800d9a2019-06-17 13:29:44 +030097.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fifo_underrun.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +030098 :doc: fifo underrun handling
99
Jani Nikula6800d9a2019-06-17 13:29:44 +0300100.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fifo_underrun.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300101 :internal:
102
103Plane Configuration
Jani Nikula22554022016-06-21 14:49:00 +0300104-------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300105
106This section covers plane configuration and composition with the primary
107plane, sprites, cursors and overlays. This includes the infrastructure
108to do atomic vsync'ed updates of all this state and also tightly coupled
109topics like watermark setup and computation, framebuffer compression and
110panel self refresh.
111
112Atomic Plane Helpers
Jani Nikula22554022016-06-21 14:49:00 +0300113--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300114
Jani Nikula6800d9a2019-06-17 13:29:44 +0300115.. kernel-doc:: drivers/gpu/drm/i915/display/intel_atomic_plane.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300116 :doc: atomic plane helpers
117
Jani Nikula6800d9a2019-06-17 13:29:44 +0300118.. kernel-doc:: drivers/gpu/drm/i915/display/intel_atomic_plane.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300119 :internal:
120
Karthik B S6914c962020-09-21 16:32:09 +0530121Asynchronous Page Flip
122----------------------
123
124.. kernel-doc:: drivers/gpu/drm/i915/display/intel_display.c
125 :doc: asynchronous flip implementation
126
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300127Output Probing
Jani Nikula22554022016-06-21 14:49:00 +0300128--------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300129
130This section covers output probing and related infrastructure like the
131hotplug interrupt storm detection and mitigation code. Note that the
132i915 driver still uses most of the common DRM helper code for output
133probing, so those sections fully apply.
134
135Hotplug
Jani Nikula22554022016-06-21 14:49:00 +0300136-------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300137
Jani Nikula6800d9a2019-06-17 13:29:44 +0300138.. kernel-doc:: drivers/gpu/drm/i915/display/intel_hotplug.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300139 :doc: Hotplug
140
Jani Nikula6800d9a2019-06-17 13:29:44 +0300141.. kernel-doc:: drivers/gpu/drm/i915/display/intel_hotplug.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300142 :internal:
143
144High Definition Audio
Jani Nikula22554022016-06-21 14:49:00 +0300145---------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300146
Jani Nikula6800d9a2019-06-17 13:29:44 +0300147.. kernel-doc:: drivers/gpu/drm/i915/display/intel_audio.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300148 :doc: High Definition Audio over HDMI and Display Port
149
Jani Nikula6800d9a2019-06-17 13:29:44 +0300150.. kernel-doc:: drivers/gpu/drm/i915/display/intel_audio.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300151 :internal:
152
153.. kernel-doc:: include/drm/i915_component.h
154 :internal:
155
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100156Intel HDMI LPE Audio Support
157----------------------------
158
Jani Nikula6800d9a2019-06-17 13:29:44 +0300159.. kernel-doc:: drivers/gpu/drm/i915/display/intel_lpe_audio.c
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100160 :doc: LPE Audio integration for HDMI or DP playback
161
Jani Nikula6800d9a2019-06-17 13:29:44 +0300162.. kernel-doc:: drivers/gpu/drm/i915/display/intel_lpe_audio.c
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100163 :internal:
164
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300165Panel Self Refresh PSR (PSR/SRD)
Jani Nikula22554022016-06-21 14:49:00 +0300166--------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300167
Jani Nikula6800d9a2019-06-17 13:29:44 +0300168.. kernel-doc:: drivers/gpu/drm/i915/display/intel_psr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300169 :doc: Panel Self Refresh (PSR/SRD)
170
Jani Nikula6800d9a2019-06-17 13:29:44 +0300171.. kernel-doc:: drivers/gpu/drm/i915/display/intel_psr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300172 :internal:
173
174Frame Buffer Compression (FBC)
Jani Nikula22554022016-06-21 14:49:00 +0300175------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300176
Jani Nikula6800d9a2019-06-17 13:29:44 +0300177.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fbc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300178 :doc: Frame Buffer Compression (FBC)
179
Jani Nikula6800d9a2019-06-17 13:29:44 +0300180.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fbc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300181 :internal:
182
183Display Refresh Rate Switching (DRRS)
Jani Nikula22554022016-06-21 14:49:00 +0300184-------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300185
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700186.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300187 :doc: Display Refresh Rate Switching (DRRS)
188
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700189.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
José Roberto de Souza3a3dd532021-08-27 10:42:53 -0700190 :functions: intel_drrs_enable
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300191
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700192.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
José Roberto de Souza3a3dd532021-08-27 10:42:53 -0700193 :functions: intel_drrs_disable
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300194
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700195.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
José Roberto de Souza3a3dd532021-08-27 10:42:53 -0700196 :functions: intel_drrs_invalidate
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300197
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700198.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
José Roberto de Souza3a3dd532021-08-27 10:42:53 -0700199 :functions: intel_drrs_flush
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300200
José Roberto de Souzaa1b63112021-08-27 10:42:52 -0700201.. kernel-doc:: drivers/gpu/drm/i915/display/intel_drrs.c
José Roberto de Souza3a3dd532021-08-27 10:42:53 -0700202 :functions: intel_drrs_init
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300203
204DPIO
Jani Nikula22554022016-06-21 14:49:00 +0300205----
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300206
Jani Nikula6800d9a2019-06-17 13:29:44 +0300207.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpio_phy.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300208 :doc: DPIO
209
Anusha Srivatsa32f94022021-05-18 14:34:44 -0700210DMC Firmware Support
211--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300212
Anusha Srivatsa32f94022021-05-18 14:34:44 -0700213.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dmc.c
214 :doc: DMC Firmware Support
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300215
Anusha Srivatsa32f94022021-05-18 14:34:44 -0700216.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dmc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300217 :internal:
218
219Video BIOS Table (VBT)
Jani Nikula22554022016-06-21 14:49:00 +0300220----------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300221
Jani Nikula6800d9a2019-06-17 13:29:44 +0300222.. kernel-doc:: drivers/gpu/drm/i915/display/intel_bios.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300223 :doc: Video BIOS Table (VBT)
224
Jani Nikula6800d9a2019-06-17 13:29:44 +0300225.. kernel-doc:: drivers/gpu/drm/i915/display/intel_bios.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300226 :internal:
227
Jani Nikula6800d9a2019-06-17 13:29:44 +0300228.. kernel-doc:: drivers/gpu/drm/i915/display/intel_vbt_defs.h
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300229 :internal:
230
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200231Display clocks
232--------------
233
Jani Nikula6800d9a2019-06-17 13:29:44 +0300234.. kernel-doc:: drivers/gpu/drm/i915/display/intel_cdclk.c
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200235 :doc: CDCLK / RAWCLK
236
Jani Nikula6800d9a2019-06-17 13:29:44 +0300237.. kernel-doc:: drivers/gpu/drm/i915/display/intel_cdclk.c
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200238 :internal:
239
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200240Display PLLs
241------------
242
Jani Nikula6800d9a2019-06-17 13:29:44 +0300243.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.c
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200244 :doc: Display PLLs
245
Jani Nikula6800d9a2019-06-17 13:29:44 +0300246.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.c
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200247 :internal:
248
Jani Nikula6800d9a2019-06-17 13:29:44 +0300249.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.h
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200250 :internal:
251
Animesh Manna5dd85e72019-09-20 17:29:30 +0530252Display State Buffer
253--------------------
254
255.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
256 :doc: DSB
257
258.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
259 :internal:
260
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300261Memory Management and Command Submission
Jani Nikula22554022016-06-21 14:49:00 +0300262========================================
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300263
264This sections covers all things related to the GEM implementation in the
265i915 driver.
266
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300267Intel GPU Basics
268----------------
269
270An Intel GPU has multiple engines. There are several engine types.
271
272- RCS engine is for rendering 3D and performing compute, this is named
273 `I915_EXEC_RENDER` in user space.
274- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user
275 space.
276- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD`
277 in user space
278- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user
279 space.
280- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine;
281 instead it is to be used by user space to specify a default rendering
282 engine (for 3D) that may or may not be the same as RCS.
283
284The Intel GPU family is a family of integrated GPU's using Unified
285Memory Access. For having the GPU "do work", user space will feed the
286GPU batch buffers via one of the ioctls `DRM_IOCTL_I915_GEM_EXECBUFFER2`
287or `DRM_IOCTL_I915_GEM_EXECBUFFER2_WR`. Most such batchbuffers will
288instruct the GPU to perform work (for example rendering) and that work
289needs memory from which to read and memory to which to write. All memory
290is encapsulated within GEM buffer objects (usually created with the ioctl
291`DRM_IOCTL_I915_GEM_CREATE`). An ioctl providing a batchbuffer for the GPU
292to create will also list all GEM buffer objects that the batchbuffer reads
293and/or writes. For implementation details of memory management see
294`GEM BO Management Implementation Details`_.
295
296The i915 driver allows user space to create a context via the ioctl
297`DRM_IOCTL_I915_GEM_CONTEXT_CREATE` which is identified by a 32-bit
298integer. Such a context should be viewed by user-space as -loosely-
299analogous to the idea of a CPU process of an operating system. The i915
300driver guarantees that commands issued to a fixed context are to be
301executed so that writes of a previously issued command are seen by
302reads of following commands. Actions issued between different contexts
303(even if from the same file descriptor) are NOT given that guarantee
304and the only way to synchronize across contexts (even from the same
305file descriptor) is through the use of fences. At least as far back as
306Gen4, also have that a context carries with it a GPU HW context;
307the HW context is essentially (most of atleast) the state of a GPU.
308In addition to the ordering guarantees, the kernel will restore GPU
309state via HW context when commands are issued to a context, this saves
310user space the need to restore (most of atleast) the GPU state at the
311start of each batchbuffer. The non-deprecated ioctls to submit batchbuffer
312work can pass that ID (in the lower bits of drm_i915_gem_execbuffer2::rsvd1)
313to identify what context to use with the command.
314
315The GPU has its own memory management and address space. The kernel
316driver maintains the memory translation table for the GPU. For older
317GPUs (i.e. those before Gen8), there is a single global such translation
318table, a global Graphics Translation Table (GTT). For newer generation
319GPUs each context has its own translation table, called Per-Process
320Graphics Translation Table (PPGTT). Of important note, is that although
321PPGTT is named per-process it is actually per context. When user space
322submits a batchbuffer, the kernel walks the list of GEM buffer objects
323used by the batchbuffer and guarantees that not only is the memory of
324each such GEM buffer object resident but it is also present in the
325(PP)GTT. If the GEM buffer object is not yet placed in the (PP)GTT,
326then it is given an address. Two consequences of this are: the kernel
327needs to edit the batchbuffer submitted to write the correct value of
328the GPU address when a GEM BO is assigned a GPU address and the kernel
329might evict a different GEM BO from the (PP)GTT to make address room
330for another GEM BO. Consequently, the ioctls submitting a batchbuffer
331for execution also include a list of all locations within buffers that
332refer to GPU-addresses so that the kernel can edit the buffer correctly.
333This process is dubbed relocation.
334
Joonas Lahtinenca69a3c2019-08-30 13:50:53 +0300335Locking Guidelines
336------------------
337
338.. note::
339 This is a description of how the locking should be after
340 refactoring is done. Does not necessarily reflect what the locking
341 looks like while WIP.
342
343#. All locking rules and interface contracts with cross-driver interfaces
344 (dma-buf, dma_fence) need to be followed.
345
346#. No struct_mutex anywhere in the code
347
348#. dma_resv will be the outermost lock (when needed) and ww_acquire_ctx
349 is to be hoisted at highest level and passed down within i915_gem_ctx
350 in the call chain
351
352#. While holding lru/memory manager (buddy, drm_mm, whatever) locks
353 system memory allocations are not allowed
354
355 * Enforce this by priming lockdep (with fs_reclaim). If we
356 allocate memory while holding these looks we get a rehash
357 of the shrinker vs. struct_mutex saga, and that would be
358 real bad.
359
360#. Do not nest different lru/memory manager locks within each other.
361 Take them in turn to update memory allocations, relying on the object’s
362 dma_resv ww_mutex to serialize against other operations.
363
364#. The suggestion for lru/memory managers locks is that they are small
365 enough to be spinlocks.
366
367#. All features need to come with exhaustive kernel selftests and/or
368 IGT tests when appropriate
369
370#. All LMEM uAPI paths need to be fully restartable (_interruptible()
371 for all locks/waits/sleeps)
372
373 * Error handling validation through signal injection.
374 Still the best strategy we have for validating GEM uAPI
375 corner cases.
376 Must be excessively used in the IGT, and we need to check
377 that we really have full path coverage of all error cases.
378
379 * -EDEADLK handling with ww_mutex
380
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300381GEM BO Management Implementation Details
382----------------------------------------
383
Chris Wilson83dc7f62020-03-02 14:52:54 +0000384.. kernel-doc:: drivers/gpu/drm/i915/i915_vma_types.h
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300385 :doc: Virtual Memory Address
386
387Buffer Object Eviction
388----------------------
389
390This section documents the interface functions for evicting buffer
391objects to make space available in the virtual gpu address spaces. Note
392that this is mostly orthogonal to shrinking buffer objects caches, which
393has the goal to make main memory (shared with the gpu through the
394unified memory architecture) available.
395
396.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_evict.c
397 :internal:
398
399Buffer Object Memory Shrinking
400------------------------------
401
402This section documents the interface function for shrinking memory usage
403of buffer object caches. Shrinking is used to make main memory
404available. Note that this is mostly orthogonal to evicting buffer
405objects, which has the goal to make space in gpu virtual address spaces.
406
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300407.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300408 :internal:
409
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300410Batchbuffer Parsing
Jani Nikula22554022016-06-21 14:49:00 +0300411-------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300412
413.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
414 :doc: batch buffer command parser
415
416.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
417 :internal:
418
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300419User Batchbuffer Execution
420--------------------------
421
Jason Ekstrandf8a9a5c2021-07-08 10:48:20 -0500422.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_context_types.h
423
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300424.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300425 :doc: User command execution
426
Matthew Brost3e28d372021-06-17 18:06:31 -0700427Scheduling
428----------
429.. kernel-doc:: drivers/gpu/drm/i915/i915_scheduler_types.h
430 :functions: i915_sched_engine
431
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300432Logical Rings, Logical Ring Contexts and Execlists
Jani Nikula22554022016-06-21 14:49:00 +0300433--------------------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300434
José Roberto de Souza3b7bc182020-12-14 10:54:40 -0800435.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_execlists_submission.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300436 :doc: Logical Rings, Logical Ring Contexts and Execlists
437
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300438Global GTT views
Jani Nikula22554022016-06-21 14:49:00 +0300439----------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300440
Chris Wilson83dc7f62020-03-02 14:52:54 +0000441.. kernel-doc:: drivers/gpu/drm/i915/i915_vma_types.h
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300442 :doc: Global GTT views
443
444.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_gtt.c
445 :internal:
446
447GTT Fences and Swizzling
Jani Nikula22554022016-06-21 14:49:00 +0300448------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300449
Chris Wilsonba69fb12020-03-17 14:12:50 +0000450.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300451 :internal:
452
453Global GTT Fence Handling
Jani Nikula22554022016-06-21 14:49:00 +0300454~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300455
Chris Wilsonba69fb12020-03-17 14:12:50 +0000456.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300457 :doc: fence register handling
458
459Hardware Tiling and Swizzling Details
Jani Nikula22554022016-06-21 14:49:00 +0300460~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300461
Chris Wilsonba69fb12020-03-17 14:12:50 +0000462.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300463 :doc: tiling swizzling details
464
465Object Tiling IOCTLs
Jani Nikula22554022016-06-21 14:49:00 +0300466--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300467
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300468.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300469 :internal:
470
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300471.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300472 :doc: buffer object tiling
473
Daniele Ceraolo Spurio2d5517a2021-09-24 12:14:51 -0700474Protected Objects
475-----------------
476
477.. kernel-doc:: drivers/gpu/drm/i915/pxp/intel_pxp.c
478 :doc: PXP
479
480.. kernel-doc:: drivers/gpu/drm/i915/pxp/intel_pxp_types.h
481
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700482Microcontrollers
483================
484
485Starting from gen9, three microcontrollers are available on the HW: the
486graphics microcontroller (GuC), the HEVC/H.265 microcontroller (HuC) and the
487display microcontroller (DMC). The driver is responsible for loading the
488firmwares on the microcontrollers; the GuC and HuC firmwares are transferred
489to WOPCM using the DMA engine, while the DMC firmware is written through MMIO.
490
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700491WOPCM
Joonas Lahtinen40727612019-08-30 11:58:49 +0300492-----
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700493
494WOPCM Layout
Joonas Lahtinen40727612019-08-30 11:58:49 +0300495~~~~~~~~~~~~
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700496
497.. kernel-doc:: drivers/gpu/drm/i915/intel_wopcm.c
498 :doc: WOPCM Layout
499
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300500GuC
Joonas Lahtinen40727612019-08-30 11:58:49 +0300501---
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300502
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700503.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
504 :doc: GuC
505
Matthew Brost4f41ddc2021-09-09 09:47:44 -0700506.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.h
507
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700508GuC Firmware Layout
509~~~~~~~~~~~~~~~~~~~
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000510
Michal Wajdeczkoabf30f22019-07-25 14:13:08 +0000511.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_uc_fw_abi.h
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000512 :doc: Firmware Layout
513
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700514GuC Memory Management
515~~~~~~~~~~~~~~~~~~~~~
516
517.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
518 :doc: GuC Memory Management
519.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
520 :functions: intel_guc_allocate_vma
521
522
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300523GuC-specific firmware loader
Joonas Lahtinen40727612019-08-30 11:58:49 +0300524~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300525
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000526.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300527 :internal:
528
529GuC-based command submission
Joonas Lahtinen40727612019-08-30 11:58:49 +0300530~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300531
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000532.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300533 :doc: GuC-based command submission
534
Michal Wajdeczkobfde26d2021-06-15 17:13:02 -0700535GuC ABI
536~~~~~~~~~~~~~~~~~~~~~~~~~~~~
537
538.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/abi/guc_messages_abi.h
539.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/abi/guc_communication_mmio_abi.h
540.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/abi/guc_communication_ctb_abi.h
541.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/abi/guc_actions_abi.h
542
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700543HuC
544---
Daniele Ceraolo Spurio0b23e2a2019-10-14 11:36:02 -0700545.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
546 :doc: HuC
547.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
548 :functions: intel_huc_auth
549
550HuC Memory Management
551~~~~~~~~~~~~~~~~~~~~~
552
553.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
554 :doc: HuC Memory Management
555
556HuC Firmware Layout
557~~~~~~~~~~~~~~~~~~~
558The HuC FW layout is the same as the GuC one, see `GuC Firmware Layout`_
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700559
560DMC
561---
Anusha Srivatsa32f94022021-05-18 14:34:44 -0700562See `DMC Firmware Support`_
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700563
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300564Tracing
Jani Nikula22554022016-06-21 14:49:00 +0300565=======
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300566
567This sections covers all things related to the tracepoints implemented
568in the i915 driver.
569
570i915_ppgtt_create and i915_ppgtt_release
Jani Nikula22554022016-06-21 14:49:00 +0300571----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300572
573.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
574 :doc: i915_ppgtt_create and i915_ppgtt_release tracepoints
575
576i915_context_create and i915_context_free
Jani Nikula22554022016-06-21 14:49:00 +0300577-----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300578
579.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
580 :doc: i915_context_create and i915_context_free tracepoints
581
Robert Bragg16d98b32016-12-07 21:40:33 +0000582Perf
583====
584
585Overview
586--------
587.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
588 :doc: i915 Perf Overview
589
590Comparison with Core Perf
591-------------------------
592.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
593 :doc: i915 Perf History and Comparison with Core Perf
594
595i915 Driver Entry Points
596------------------------
597
598This section covers the entrypoints exported outside of i915_perf.c to
599integrate with drm/i915 and to handle the `DRM_I915_PERF_OPEN` ioctl.
600
601.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
602 :functions: i915_perf_init
603.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
604 :functions: i915_perf_fini
605.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
606 :functions: i915_perf_register
607.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
608 :functions: i915_perf_unregister
609.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
610 :functions: i915_perf_open_ioctl
611.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
612 :functions: i915_perf_release
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100613.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
614 :functions: i915_perf_add_config_ioctl
615.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
616 :functions: i915_perf_remove_config_ioctl
Robert Bragg16d98b32016-12-07 21:40:33 +0000617
618i915 Perf Stream
619----------------
620
621This section covers the stream-semantics-agnostic structures and functions
622for representing an i915 perf stream FD and associated file operations.
623
Anna Karas8c638802019-10-22 13:09:06 +0300624.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000625 :functions: i915_perf_stream
Anna Karas8c638802019-10-22 13:09:06 +0300626.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000627 :functions: i915_perf_stream_ops
628
629.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
630 :functions: read_properties_unlocked
631.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
632 :functions: i915_perf_open_ioctl_locked
633.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
634 :functions: i915_perf_destroy_locked
635.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
636 :functions: i915_perf_read
637.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
638 :functions: i915_perf_ioctl
639.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
640 :functions: i915_perf_enable_locked
641.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
642 :functions: i915_perf_disable_locked
643.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
644 :functions: i915_perf_poll
645.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
646 :functions: i915_perf_poll_locked
647
648i915 Perf Observation Architecture Stream
649-----------------------------------------
650
Anna Karas8c638802019-10-22 13:09:06 +0300651.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000652 :functions: i915_oa_ops
653
654.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
655 :functions: i915_oa_stream_init
656.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
657 :functions: i915_oa_read
658.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
659 :functions: i915_oa_stream_enable
660.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
661 :functions: i915_oa_stream_disable
662.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
663 :functions: i915_oa_wait_unlocked
664.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
665 :functions: i915_oa_poll_wait
666
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200667Other i915 Perf Internals
668-------------------------
Robert Bragg16d98b32016-12-07 21:40:33 +0000669
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200670This section simply includes all other currently documented i915 perf internals,
671in no particular order, but may include some more minor utilities or platform
Robert Bragg16d98b32016-12-07 21:40:33 +0000672specific details than found in the more high-level sections.
673
674.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
675 :internal:
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200676 :no-identifiers:
677 i915_perf_init
678 i915_perf_fini
679 i915_perf_register
680 i915_perf_unregister
681 i915_perf_open_ioctl
682 i915_perf_release
683 i915_perf_add_config_ioctl
684 i915_perf_remove_config_ioctl
685 read_properties_unlocked
686 i915_perf_open_ioctl_locked
687 i915_perf_destroy_locked
688 i915_perf_read i915_perf_ioctl
689 i915_perf_enable_locked
690 i915_perf_disable_locked
691 i915_perf_poll i915_perf_poll_locked
692 i915_oa_stream_init i915_oa_read
693 i915_oa_stream_enable
694 i915_oa_stream_disable
695 i915_oa_wait_unlocked
696 i915_oa_poll_wait
Jani Nikula1aa920e2017-08-10 15:29:44 +0300697
698Style
699=====
700
701The drm/i915 driver codebase has some style rules in addition to (and, in some
702cases, deviating from) the kernel coding style.
703
704Register macro definition style
705-------------------------------
706
707The style guide for ``i915_reg.h``.
708
709.. kernel-doc:: drivers/gpu/drm/i915/i915_reg.h
710 :doc: The i915 register macro definition style guide