blob: 20868f3d0123606291b3fc01cb593e9acf6c6ad1 [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
Jani Nikula6800d9a2019-06-17 13:29:44 +0300186.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300187 :doc: Display Refresh Rate Switching (DRRS)
188
Jani Nikula6800d9a2019-06-17 13:29:44 +0300189.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300190 :functions: intel_dp_set_drrs_state
191
Jani Nikula6800d9a2019-06-17 13:29:44 +0300192.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300193 :functions: intel_edp_drrs_enable
194
Jani Nikula6800d9a2019-06-17 13:29:44 +0300195.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300196 :functions: intel_edp_drrs_disable
197
Jani Nikula6800d9a2019-06-17 13:29:44 +0300198.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300199 :functions: intel_edp_drrs_invalidate
200
Jani Nikula6800d9a2019-06-17 13:29:44 +0300201.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300202 :functions: intel_edp_drrs_flush
203
Jani Nikula6800d9a2019-06-17 13:29:44 +0300204.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300205 :functions: intel_dp_drrs_init
206
207DPIO
Jani Nikula22554022016-06-21 14:49:00 +0300208----
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300209
Jani Nikula6800d9a2019-06-17 13:29:44 +0300210.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpio_phy.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300211 :doc: DPIO
212
213CSR firmware support for DMC
Jani Nikula22554022016-06-21 14:49:00 +0300214----------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300215
Jani Nikulae66ae6c2020-03-02 19:02:18 +0200216.. kernel-doc:: drivers/gpu/drm/i915/display/intel_csr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300217 :doc: csr support for dmc
218
Jani Nikulae66ae6c2020-03-02 19:02:18 +0200219.. kernel-doc:: drivers/gpu/drm/i915/display/intel_csr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300220 :internal:
221
222Video BIOS Table (VBT)
Jani Nikula22554022016-06-21 14:49:00 +0300223----------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300224
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 :doc: Video BIOS Table (VBT)
227
Jani Nikula6800d9a2019-06-17 13:29:44 +0300228.. kernel-doc:: drivers/gpu/drm/i915/display/intel_bios.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300229 :internal:
230
Jani Nikula6800d9a2019-06-17 13:29:44 +0300231.. kernel-doc:: drivers/gpu/drm/i915/display/intel_vbt_defs.h
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300232 :internal:
233
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200234Display clocks
235--------------
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 :doc: CDCLK / RAWCLK
239
Jani Nikula6800d9a2019-06-17 13:29:44 +0300240.. kernel-doc:: drivers/gpu/drm/i915/display/intel_cdclk.c
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200241 :internal:
242
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200243Display PLLs
244------------
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 :doc: Display PLLs
248
Jani Nikula6800d9a2019-06-17 13:29:44 +0300249.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.c
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200250 :internal:
251
Jani Nikula6800d9a2019-06-17 13:29:44 +0300252.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.h
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200253 :internal:
254
Animesh Manna5dd85e72019-09-20 17:29:30 +0530255Display State Buffer
256--------------------
257
258.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
259 :doc: DSB
260
261.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
262 :internal:
263
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300264Memory Management and Command Submission
Jani Nikula22554022016-06-21 14:49:00 +0300265========================================
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300266
267This sections covers all things related to the GEM implementation in the
268i915 driver.
269
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300270Intel GPU Basics
271----------------
272
273An Intel GPU has multiple engines. There are several engine types.
274
275- RCS engine is for rendering 3D and performing compute, this is named
276 `I915_EXEC_RENDER` in user space.
277- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user
278 space.
279- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD`
280 in user space
281- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user
282 space.
283- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine;
284 instead it is to be used by user space to specify a default rendering
285 engine (for 3D) that may or may not be the same as RCS.
286
287The Intel GPU family is a family of integrated GPU's using Unified
288Memory Access. For having the GPU "do work", user space will feed the
289GPU batch buffers via one of the ioctls `DRM_IOCTL_I915_GEM_EXECBUFFER2`
290or `DRM_IOCTL_I915_GEM_EXECBUFFER2_WR`. Most such batchbuffers will
291instruct the GPU to perform work (for example rendering) and that work
292needs memory from which to read and memory to which to write. All memory
293is encapsulated within GEM buffer objects (usually created with the ioctl
294`DRM_IOCTL_I915_GEM_CREATE`). An ioctl providing a batchbuffer for the GPU
295to create will also list all GEM buffer objects that the batchbuffer reads
296and/or writes. For implementation details of memory management see
297`GEM BO Management Implementation Details`_.
298
299The i915 driver allows user space to create a context via the ioctl
300`DRM_IOCTL_I915_GEM_CONTEXT_CREATE` which is identified by a 32-bit
301integer. Such a context should be viewed by user-space as -loosely-
302analogous to the idea of a CPU process of an operating system. The i915
303driver guarantees that commands issued to a fixed context are to be
304executed so that writes of a previously issued command are seen by
305reads of following commands. Actions issued between different contexts
306(even if from the same file descriptor) are NOT given that guarantee
307and the only way to synchronize across contexts (even from the same
308file descriptor) is through the use of fences. At least as far back as
309Gen4, also have that a context carries with it a GPU HW context;
310the HW context is essentially (most of atleast) the state of a GPU.
311In addition to the ordering guarantees, the kernel will restore GPU
312state via HW context when commands are issued to a context, this saves
313user space the need to restore (most of atleast) the GPU state at the
314start of each batchbuffer. The non-deprecated ioctls to submit batchbuffer
315work can pass that ID (in the lower bits of drm_i915_gem_execbuffer2::rsvd1)
316to identify what context to use with the command.
317
318The GPU has its own memory management and address space. The kernel
319driver maintains the memory translation table for the GPU. For older
320GPUs (i.e. those before Gen8), there is a single global such translation
321table, a global Graphics Translation Table (GTT). For newer generation
322GPUs each context has its own translation table, called Per-Process
323Graphics Translation Table (PPGTT). Of important note, is that although
324PPGTT is named per-process it is actually per context. When user space
325submits a batchbuffer, the kernel walks the list of GEM buffer objects
326used by the batchbuffer and guarantees that not only is the memory of
327each such GEM buffer object resident but it is also present in the
328(PP)GTT. If the GEM buffer object is not yet placed in the (PP)GTT,
329then it is given an address. Two consequences of this are: the kernel
330needs to edit the batchbuffer submitted to write the correct value of
331the GPU address when a GEM BO is assigned a GPU address and the kernel
332might evict a different GEM BO from the (PP)GTT to make address room
333for another GEM BO. Consequently, the ioctls submitting a batchbuffer
334for execution also include a list of all locations within buffers that
335refer to GPU-addresses so that the kernel can edit the buffer correctly.
336This process is dubbed relocation.
337
Joonas Lahtinenca69a3c2019-08-30 13:50:53 +0300338Locking Guidelines
339------------------
340
341.. note::
342 This is a description of how the locking should be after
343 refactoring is done. Does not necessarily reflect what the locking
344 looks like while WIP.
345
346#. All locking rules and interface contracts with cross-driver interfaces
347 (dma-buf, dma_fence) need to be followed.
348
349#. No struct_mutex anywhere in the code
350
351#. dma_resv will be the outermost lock (when needed) and ww_acquire_ctx
352 is to be hoisted at highest level and passed down within i915_gem_ctx
353 in the call chain
354
355#. While holding lru/memory manager (buddy, drm_mm, whatever) locks
356 system memory allocations are not allowed
357
358 * Enforce this by priming lockdep (with fs_reclaim). If we
359 allocate memory while holding these looks we get a rehash
360 of the shrinker vs. struct_mutex saga, and that would be
361 real bad.
362
363#. Do not nest different lru/memory manager locks within each other.
364 Take them in turn to update memory allocations, relying on the object’s
365 dma_resv ww_mutex to serialize against other operations.
366
367#. The suggestion for lru/memory managers locks is that they are small
368 enough to be spinlocks.
369
370#. All features need to come with exhaustive kernel selftests and/or
371 IGT tests when appropriate
372
373#. All LMEM uAPI paths need to be fully restartable (_interruptible()
374 for all locks/waits/sleeps)
375
376 * Error handling validation through signal injection.
377 Still the best strategy we have for validating GEM uAPI
378 corner cases.
379 Must be excessively used in the IGT, and we need to check
380 that we really have full path coverage of all error cases.
381
382 * -EDEADLK handling with ww_mutex
383
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300384GEM BO Management Implementation Details
385----------------------------------------
386
Chris Wilson83dc7f62020-03-02 14:52:54 +0000387.. kernel-doc:: drivers/gpu/drm/i915/i915_vma_types.h
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300388 :doc: Virtual Memory Address
389
390Buffer Object Eviction
391----------------------
392
393This section documents the interface functions for evicting buffer
394objects to make space available in the virtual gpu address spaces. Note
395that this is mostly orthogonal to shrinking buffer objects caches, which
396has the goal to make main memory (shared with the gpu through the
397unified memory architecture) available.
398
399.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_evict.c
400 :internal:
401
402Buffer Object Memory Shrinking
403------------------------------
404
405This section documents the interface function for shrinking memory usage
406of buffer object caches. Shrinking is used to make main memory
407available. Note that this is mostly orthogonal to evicting buffer
408objects, which has the goal to make space in gpu virtual address spaces.
409
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300410.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300411 :internal:
412
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300413Batchbuffer Parsing
Jani Nikula22554022016-06-21 14:49:00 +0300414-------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300415
416.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
417 :doc: batch buffer command parser
418
419.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
420 :internal:
421
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300422User Batchbuffer Execution
423--------------------------
424
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300425.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300426 :doc: User command execution
427
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300428Logical Rings, Logical Ring Contexts and Execlists
Jani Nikula22554022016-06-21 14:49:00 +0300429--------------------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300430
Mauro Carvalho Chehabbcc87372019-06-04 11:17:42 -0300431.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_lrc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300432 :doc: Logical Rings, Logical Ring Contexts and Execlists
433
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300434Global GTT views
Jani Nikula22554022016-06-21 14:49:00 +0300435----------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300436
Chris Wilson83dc7f62020-03-02 14:52:54 +0000437.. kernel-doc:: drivers/gpu/drm/i915/i915_vma_types.h
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300438 :doc: Global GTT views
439
440.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_gtt.c
441 :internal:
442
443GTT Fences and Swizzling
Jani Nikula22554022016-06-21 14:49:00 +0300444------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300445
Chris Wilsonba69fb12020-03-17 14:12:50 +0000446.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300447 :internal:
448
449Global GTT Fence Handling
Jani Nikula22554022016-06-21 14:49:00 +0300450~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300451
Chris Wilsonba69fb12020-03-17 14:12:50 +0000452.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300453 :doc: fence register handling
454
455Hardware Tiling and Swizzling Details
Jani Nikula22554022016-06-21 14:49:00 +0300456~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300457
Chris Wilsonba69fb12020-03-17 14:12:50 +0000458.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300459 :doc: tiling swizzling details
460
461Object Tiling IOCTLs
Jani Nikula22554022016-06-21 14:49:00 +0300462--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300463
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300464.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300465 :internal:
466
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300467.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300468 :doc: buffer object tiling
469
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700470Microcontrollers
471================
472
473Starting from gen9, three microcontrollers are available on the HW: the
474graphics microcontroller (GuC), the HEVC/H.265 microcontroller (HuC) and the
475display microcontroller (DMC). The driver is responsible for loading the
476firmwares on the microcontrollers; the GuC and HuC firmwares are transferred
477to WOPCM using the DMA engine, while the DMC firmware is written through MMIO.
478
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700479WOPCM
Joonas Lahtinen40727612019-08-30 11:58:49 +0300480-----
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700481
482WOPCM Layout
Joonas Lahtinen40727612019-08-30 11:58:49 +0300483~~~~~~~~~~~~
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700484
485.. kernel-doc:: drivers/gpu/drm/i915/intel_wopcm.c
486 :doc: WOPCM Layout
487
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300488GuC
Joonas Lahtinen40727612019-08-30 11:58:49 +0300489---
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300490
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700491.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
492 :doc: GuC
493
494GuC Firmware Layout
495~~~~~~~~~~~~~~~~~~~
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000496
Michal Wajdeczkoabf30f22019-07-25 14:13:08 +0000497.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_uc_fw_abi.h
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000498 :doc: Firmware Layout
499
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700500GuC Memory Management
501~~~~~~~~~~~~~~~~~~~~~
502
503.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
504 :doc: GuC Memory Management
505.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
506 :functions: intel_guc_allocate_vma
507
508
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300509GuC-specific firmware loader
Joonas Lahtinen40727612019-08-30 11:58:49 +0300510~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300511
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000512.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300513 :internal:
514
515GuC-based command submission
Joonas Lahtinen40727612019-08-30 11:58:49 +0300516~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300517
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000518.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300519 :doc: GuC-based command submission
520
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700521HuC
522---
Daniele Ceraolo Spurio0b23e2a2019-10-14 11:36:02 -0700523.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
524 :doc: HuC
525.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
526 :functions: intel_huc_auth
527
528HuC Memory Management
529~~~~~~~~~~~~~~~~~~~~~
530
531.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
532 :doc: HuC Memory Management
533
534HuC Firmware Layout
535~~~~~~~~~~~~~~~~~~~
536The HuC FW layout is the same as the GuC one, see `GuC Firmware Layout`_
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700537
538DMC
539---
540See `CSR firmware support for DMC`_
541
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300542Tracing
Jani Nikula22554022016-06-21 14:49:00 +0300543=======
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300544
545This sections covers all things related to the tracepoints implemented
546in the i915 driver.
547
548i915_ppgtt_create and i915_ppgtt_release
Jani Nikula22554022016-06-21 14:49:00 +0300549----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300550
551.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
552 :doc: i915_ppgtt_create and i915_ppgtt_release tracepoints
553
554i915_context_create and i915_context_free
Jani Nikula22554022016-06-21 14:49:00 +0300555-----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300556
557.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
558 :doc: i915_context_create and i915_context_free tracepoints
559
Robert Bragg16d98b32016-12-07 21:40:33 +0000560Perf
561====
562
563Overview
564--------
565.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
566 :doc: i915 Perf Overview
567
568Comparison with Core Perf
569-------------------------
570.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
571 :doc: i915 Perf History and Comparison with Core Perf
572
573i915 Driver Entry Points
574------------------------
575
576This section covers the entrypoints exported outside of i915_perf.c to
577integrate with drm/i915 and to handle the `DRM_I915_PERF_OPEN` ioctl.
578
579.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
580 :functions: i915_perf_init
581.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
582 :functions: i915_perf_fini
583.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
584 :functions: i915_perf_register
585.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
586 :functions: i915_perf_unregister
587.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
588 :functions: i915_perf_open_ioctl
589.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
590 :functions: i915_perf_release
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100591.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
592 :functions: i915_perf_add_config_ioctl
593.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
594 :functions: i915_perf_remove_config_ioctl
Robert Bragg16d98b32016-12-07 21:40:33 +0000595
596i915 Perf Stream
597----------------
598
599This section covers the stream-semantics-agnostic structures and functions
600for representing an i915 perf stream FD and associated file operations.
601
Anna Karas8c638802019-10-22 13:09:06 +0300602.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000603 :functions: i915_perf_stream
Anna Karas8c638802019-10-22 13:09:06 +0300604.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000605 :functions: i915_perf_stream_ops
606
607.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
608 :functions: read_properties_unlocked
609.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
610 :functions: i915_perf_open_ioctl_locked
611.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
612 :functions: i915_perf_destroy_locked
613.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
614 :functions: i915_perf_read
615.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
616 :functions: i915_perf_ioctl
617.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
618 :functions: i915_perf_enable_locked
619.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
620 :functions: i915_perf_disable_locked
621.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
622 :functions: i915_perf_poll
623.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
624 :functions: i915_perf_poll_locked
625
626i915 Perf Observation Architecture Stream
627-----------------------------------------
628
Anna Karas8c638802019-10-22 13:09:06 +0300629.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000630 :functions: i915_oa_ops
631
632.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
633 :functions: i915_oa_stream_init
634.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
635 :functions: i915_oa_read
636.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
637 :functions: i915_oa_stream_enable
638.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
639 :functions: i915_oa_stream_disable
640.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
641 :functions: i915_oa_wait_unlocked
642.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
643 :functions: i915_oa_poll_wait
644
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200645Other i915 Perf Internals
646-------------------------
Robert Bragg16d98b32016-12-07 21:40:33 +0000647
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200648This section simply includes all other currently documented i915 perf internals,
649in no particular order, but may include some more minor utilities or platform
Robert Bragg16d98b32016-12-07 21:40:33 +0000650specific details than found in the more high-level sections.
651
652.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
653 :internal:
Mauro Carvalho Chehab11604da2020-09-29 11:41:38 +0200654 :no-identifiers:
655 i915_perf_init
656 i915_perf_fini
657 i915_perf_register
658 i915_perf_unregister
659 i915_perf_open_ioctl
660 i915_perf_release
661 i915_perf_add_config_ioctl
662 i915_perf_remove_config_ioctl
663 read_properties_unlocked
664 i915_perf_open_ioctl_locked
665 i915_perf_destroy_locked
666 i915_perf_read i915_perf_ioctl
667 i915_perf_enable_locked
668 i915_perf_disable_locked
669 i915_perf_poll i915_perf_poll_locked
670 i915_oa_stream_init i915_oa_read
671 i915_oa_stream_enable
672 i915_oa_stream_disable
673 i915_oa_wait_unlocked
674 i915_oa_poll_wait
Jani Nikula1aa920e2017-08-10 15:29:44 +0300675
676Style
677=====
678
679The drm/i915 driver codebase has some style rules in addition to (and, in some
680cases, deviating from) the kernel coding style.
681
682Register macro definition style
683-------------------------------
684
685The style guide for ``i915_reg.h``.
686
687.. kernel-doc:: drivers/gpu/drm/i915/i915_reg.h
688 :doc: The i915 register macro definition style guide