blob: e539c42a3e78da0f9aeba550d234fb17c7bc5219 [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
121Output Probing
Jani Nikula22554022016-06-21 14:49:00 +0300122--------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300123
124This section covers output probing and related infrastructure like the
125hotplug interrupt storm detection and mitigation code. Note that the
126i915 driver still uses most of the common DRM helper code for output
127probing, so those sections fully apply.
128
129Hotplug
Jani Nikula22554022016-06-21 14:49:00 +0300130-------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300131
Jani Nikula6800d9a2019-06-17 13:29:44 +0300132.. kernel-doc:: drivers/gpu/drm/i915/display/intel_hotplug.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300133 :doc: Hotplug
134
Jani Nikula6800d9a2019-06-17 13:29:44 +0300135.. kernel-doc:: drivers/gpu/drm/i915/display/intel_hotplug.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300136 :internal:
137
138High Definition Audio
Jani Nikula22554022016-06-21 14:49:00 +0300139---------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300140
Jani Nikula6800d9a2019-06-17 13:29:44 +0300141.. kernel-doc:: drivers/gpu/drm/i915/display/intel_audio.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300142 :doc: High Definition Audio over HDMI and Display Port
143
Jani Nikula6800d9a2019-06-17 13:29:44 +0300144.. kernel-doc:: drivers/gpu/drm/i915/display/intel_audio.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300145 :internal:
146
147.. kernel-doc:: include/drm/i915_component.h
148 :internal:
149
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100150Intel HDMI LPE Audio Support
151----------------------------
152
Jani Nikula6800d9a2019-06-17 13:29:44 +0300153.. kernel-doc:: drivers/gpu/drm/i915/display/intel_lpe_audio.c
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100154 :doc: LPE Audio integration for HDMI or DP playback
155
Jani Nikula6800d9a2019-06-17 13:29:44 +0300156.. kernel-doc:: drivers/gpu/drm/i915/display/intel_lpe_audio.c
Takashi Iwaieacc8da2017-01-26 10:50:43 +0100157 :internal:
158
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300159Panel Self Refresh PSR (PSR/SRD)
Jani Nikula22554022016-06-21 14:49:00 +0300160--------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300161
Jani Nikula6800d9a2019-06-17 13:29:44 +0300162.. kernel-doc:: drivers/gpu/drm/i915/display/intel_psr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300163 :doc: Panel Self Refresh (PSR/SRD)
164
Jani Nikula6800d9a2019-06-17 13:29:44 +0300165.. kernel-doc:: drivers/gpu/drm/i915/display/intel_psr.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300166 :internal:
167
168Frame Buffer Compression (FBC)
Jani Nikula22554022016-06-21 14:49:00 +0300169------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300170
Jani Nikula6800d9a2019-06-17 13:29:44 +0300171.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fbc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300172 :doc: Frame Buffer Compression (FBC)
173
Jani Nikula6800d9a2019-06-17 13:29:44 +0300174.. kernel-doc:: drivers/gpu/drm/i915/display/intel_fbc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300175 :internal:
176
177Display Refresh Rate Switching (DRRS)
Jani Nikula22554022016-06-21 14:49:00 +0300178-------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300179
Jani Nikula6800d9a2019-06-17 13:29:44 +0300180.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300181 :doc: Display Refresh Rate Switching (DRRS)
182
Jani Nikula6800d9a2019-06-17 13:29:44 +0300183.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dp.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300184 :functions: intel_dp_set_drrs_state
185
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 :functions: intel_edp_drrs_enable
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_edp_drrs_disable
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_invalidate
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_flush
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_dp_drrs_init
200
201DPIO
Jani Nikula22554022016-06-21 14:49:00 +0300202----
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300203
Jani Nikula6800d9a2019-06-17 13:29:44 +0300204.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpio_phy.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300205 :doc: DPIO
206
207CSR firmware support for DMC
Jani Nikula22554022016-06-21 14:49:00 +0300208----------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300209
210.. kernel-doc:: drivers/gpu/drm/i915/intel_csr.c
211 :doc: csr support for dmc
212
213.. kernel-doc:: drivers/gpu/drm/i915/intel_csr.c
214 :internal:
215
216Video BIOS Table (VBT)
Jani Nikula22554022016-06-21 14:49:00 +0300217----------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300218
Jani Nikula6800d9a2019-06-17 13:29:44 +0300219.. kernel-doc:: drivers/gpu/drm/i915/display/intel_bios.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300220 :doc: Video BIOS Table (VBT)
221
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 :internal:
224
Jani Nikula6800d9a2019-06-17 13:29:44 +0300225.. kernel-doc:: drivers/gpu/drm/i915/display/intel_vbt_defs.h
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300226 :internal:
227
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200228Display clocks
229--------------
230
Jani Nikula6800d9a2019-06-17 13:29:44 +0300231.. kernel-doc:: drivers/gpu/drm/i915/display/intel_cdclk.c
Ville Syrjälä7ff89ca2017-02-07 20:33:05 +0200232 :doc: CDCLK / RAWCLK
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 :internal:
236
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200237Display PLLs
238------------
239
Jani Nikula6800d9a2019-06-17 13:29:44 +0300240.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.c
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200241 :doc: Display PLLs
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 :internal:
245
Jani Nikula6800d9a2019-06-17 13:29:44 +0300246.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dpll_mgr.h
Ander Conselvan de Oliveira294591c2016-12-29 17:22:11 +0200247 :internal:
248
Animesh Manna5dd85e72019-09-20 17:29:30 +0530249Display State Buffer
250--------------------
251
252.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
253 :doc: DSB
254
255.. kernel-doc:: drivers/gpu/drm/i915/display/intel_dsb.c
256 :internal:
257
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300258Memory Management and Command Submission
Jani Nikula22554022016-06-21 14:49:00 +0300259========================================
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300260
261This sections covers all things related to the GEM implementation in the
262i915 driver.
263
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300264Intel GPU Basics
265----------------
266
267An Intel GPU has multiple engines. There are several engine types.
268
269- RCS engine is for rendering 3D and performing compute, this is named
270 `I915_EXEC_RENDER` in user space.
271- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user
272 space.
273- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD`
274 in user space
275- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user
276 space.
277- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine;
278 instead it is to be used by user space to specify a default rendering
279 engine (for 3D) that may or may not be the same as RCS.
280
281The Intel GPU family is a family of integrated GPU's using Unified
282Memory Access. For having the GPU "do work", user space will feed the
283GPU batch buffers via one of the ioctls `DRM_IOCTL_I915_GEM_EXECBUFFER2`
284or `DRM_IOCTL_I915_GEM_EXECBUFFER2_WR`. Most such batchbuffers will
285instruct the GPU to perform work (for example rendering) and that work
286needs memory from which to read and memory to which to write. All memory
287is encapsulated within GEM buffer objects (usually created with the ioctl
288`DRM_IOCTL_I915_GEM_CREATE`). An ioctl providing a batchbuffer for the GPU
289to create will also list all GEM buffer objects that the batchbuffer reads
290and/or writes. For implementation details of memory management see
291`GEM BO Management Implementation Details`_.
292
293The i915 driver allows user space to create a context via the ioctl
294`DRM_IOCTL_I915_GEM_CONTEXT_CREATE` which is identified by a 32-bit
295integer. Such a context should be viewed by user-space as -loosely-
296analogous to the idea of a CPU process of an operating system. The i915
297driver guarantees that commands issued to a fixed context are to be
298executed so that writes of a previously issued command are seen by
299reads of following commands. Actions issued between different contexts
300(even if from the same file descriptor) are NOT given that guarantee
301and the only way to synchronize across contexts (even from the same
302file descriptor) is through the use of fences. At least as far back as
303Gen4, also have that a context carries with it a GPU HW context;
304the HW context is essentially (most of atleast) the state of a GPU.
305In addition to the ordering guarantees, the kernel will restore GPU
306state via HW context when commands are issued to a context, this saves
307user space the need to restore (most of atleast) the GPU state at the
308start of each batchbuffer. The non-deprecated ioctls to submit batchbuffer
309work can pass that ID (in the lower bits of drm_i915_gem_execbuffer2::rsvd1)
310to identify what context to use with the command.
311
312The GPU has its own memory management and address space. The kernel
313driver maintains the memory translation table for the GPU. For older
314GPUs (i.e. those before Gen8), there is a single global such translation
315table, a global Graphics Translation Table (GTT). For newer generation
316GPUs each context has its own translation table, called Per-Process
317Graphics Translation Table (PPGTT). Of important note, is that although
318PPGTT is named per-process it is actually per context. When user space
319submits a batchbuffer, the kernel walks the list of GEM buffer objects
320used by the batchbuffer and guarantees that not only is the memory of
321each such GEM buffer object resident but it is also present in the
322(PP)GTT. If the GEM buffer object is not yet placed in the (PP)GTT,
323then it is given an address. Two consequences of this are: the kernel
324needs to edit the batchbuffer submitted to write the correct value of
325the GPU address when a GEM BO is assigned a GPU address and the kernel
326might evict a different GEM BO from the (PP)GTT to make address room
327for another GEM BO. Consequently, the ioctls submitting a batchbuffer
328for execution also include a list of all locations within buffers that
329refer to GPU-addresses so that the kernel can edit the buffer correctly.
330This process is dubbed relocation.
331
332GEM BO Management Implementation Details
333----------------------------------------
334
335.. kernel-doc:: drivers/gpu/drm/i915/i915_vma.h
336 :doc: Virtual Memory Address
337
338Buffer Object Eviction
339----------------------
340
341This section documents the interface functions for evicting buffer
342objects to make space available in the virtual gpu address spaces. Note
343that this is mostly orthogonal to shrinking buffer objects caches, which
344has the goal to make main memory (shared with the gpu through the
345unified memory architecture) available.
346
347.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_evict.c
348 :internal:
349
350Buffer Object Memory Shrinking
351------------------------------
352
353This section documents the interface function for shrinking memory usage
354of buffer object caches. Shrinking is used to make main memory
355available. Note that this is mostly orthogonal to evicting buffer
356objects, which has the goal to make space in gpu virtual address spaces.
357
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300358.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
Kevin Rogovinfd5ff5f2018-04-06 11:05:55 +0300359 :internal:
360
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300361Batchbuffer Parsing
Jani Nikula22554022016-06-21 14:49:00 +0300362-------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300363
364.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
365 :doc: batch buffer command parser
366
367.. kernel-doc:: drivers/gpu/drm/i915/i915_cmd_parser.c
368 :internal:
369
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300370User Batchbuffer Execution
371--------------------------
372
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300373.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
Kevin Rogovin4d42db12018-04-06 11:05:56 +0300374 :doc: User command execution
375
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300376Logical Rings, Logical Ring Contexts and Execlists
Jani Nikula22554022016-06-21 14:49:00 +0300377--------------------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300378
Mauro Carvalho Chehabbcc87372019-06-04 11:17:42 -0300379.. kernel-doc:: drivers/gpu/drm/i915/gt/intel_lrc.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300380 :doc: Logical Rings, Logical Ring Contexts and Execlists
381
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300382Global GTT views
Jani Nikula22554022016-06-21 14:49:00 +0300383----------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300384
385.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_gtt.c
386 :doc: Global GTT views
387
388.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_gtt.c
389 :internal:
390
391GTT Fences and Swizzling
Jani Nikula22554022016-06-21 14:49:00 +0300392------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300393
Daniel Vetterebc896d2016-11-14 12:58:17 +0100394.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_fence_reg.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300395 :internal:
396
397Global GTT Fence Handling
Jani Nikula22554022016-06-21 14:49:00 +0300398~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300399
Daniel Vetterebc896d2016-11-14 12:58:17 +0100400.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_fence_reg.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300401 :doc: fence register handling
402
403Hardware Tiling and Swizzling Details
Jani Nikula22554022016-06-21 14:49:00 +0300404~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300405
Daniel Vetterebc896d2016-11-14 12:58:17 +0100406.. kernel-doc:: drivers/gpu/drm/i915/i915_gem_fence_reg.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300407 :doc: tiling swizzling details
408
409Object Tiling IOCTLs
Jani Nikula22554022016-06-21 14:49:00 +0300410--------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300411
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300412.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300413 :internal:
414
Jani Nikula8a6f43d2019-06-05 12:56:56 +0300415.. kernel-doc:: drivers/gpu/drm/i915/gem/i915_gem_tiling.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300416 :doc: buffer object tiling
417
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700418Microcontrollers
419================
420
421Starting from gen9, three microcontrollers are available on the HW: the
422graphics microcontroller (GuC), the HEVC/H.265 microcontroller (HuC) and the
423display microcontroller (DMC). The driver is responsible for loading the
424firmwares on the microcontrollers; the GuC and HuC firmwares are transferred
425to WOPCM using the DMA engine, while the DMC firmware is written through MMIO.
426
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700427WOPCM
Joonas Lahtinen40727612019-08-30 11:58:49 +0300428-----
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700429
430WOPCM Layout
Joonas Lahtinen40727612019-08-30 11:58:49 +0300431~~~~~~~~~~~~
Yaodong Lifbe6f8f2018-03-22 16:59:22 -0700432
433.. kernel-doc:: drivers/gpu/drm/i915/intel_wopcm.c
434 :doc: WOPCM Layout
435
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300436GuC
Joonas Lahtinen40727612019-08-30 11:58:49 +0300437---
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300438
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700439.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
440 :doc: GuC
441
442GuC Firmware Layout
443~~~~~~~~~~~~~~~~~~~
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000444
Michal Wajdeczkoabf30f22019-07-25 14:13:08 +0000445.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_uc_fw_abi.h
Michal Wajdeczko199ddde2019-07-25 14:13:07 +0000446 :doc: Firmware Layout
447
Daniele Ceraolo Spurio218151e2019-10-14 11:36:01 -0700448GuC Memory Management
449~~~~~~~~~~~~~~~~~~~~~
450
451.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
452 :doc: GuC Memory Management
453.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc.c
454 :functions: intel_guc_allocate_vma
455
456
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300457GuC-specific firmware loader
Joonas Lahtinen40727612019-08-30 11:58:49 +0300458~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300459
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000460.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300461 :internal:
462
463GuC-based command submission
Joonas Lahtinen40727612019-08-30 11:58:49 +0300464~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300465
Michal Wajdeczkodbbff8c2019-07-25 14:13:06 +0000466.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300467 :doc: GuC-based command submission
468
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700469HuC
470---
Daniele Ceraolo Spurio0b23e2a2019-10-14 11:36:02 -0700471.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
472 :doc: HuC
473.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
474 :functions: intel_huc_auth
475
476HuC Memory Management
477~~~~~~~~~~~~~~~~~~~~~
478
479.. kernel-doc:: drivers/gpu/drm/i915/gt/uc/intel_huc.c
480 :doc: HuC Memory Management
481
482HuC Firmware Layout
483~~~~~~~~~~~~~~~~~~~
484The HuC FW layout is the same as the GuC one, see `GuC Firmware Layout`_
Daniele Ceraolo Spurio493065e2019-10-14 11:36:00 -0700485
486DMC
487---
488See `CSR firmware support for DMC`_
489
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300490Tracing
Jani Nikula22554022016-06-21 14:49:00 +0300491=======
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300492
493This sections covers all things related to the tracepoints implemented
494in the i915 driver.
495
496i915_ppgtt_create and i915_ppgtt_release
Jani Nikula22554022016-06-21 14:49:00 +0300497----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300498
499.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
500 :doc: i915_ppgtt_create and i915_ppgtt_release tracepoints
501
502i915_context_create and i915_context_free
Jani Nikula22554022016-06-21 14:49:00 +0300503-----------------------------------------
Jani Nikulaca00c2b2016-06-21 14:48:58 +0300504
505.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
506 :doc: i915_context_create and i915_context_free tracepoints
507
Robert Bragg16d98b32016-12-07 21:40:33 +0000508Perf
509====
510
511Overview
512--------
513.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
514 :doc: i915 Perf Overview
515
516Comparison with Core Perf
517-------------------------
518.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
519 :doc: i915 Perf History and Comparison with Core Perf
520
521i915 Driver Entry Points
522------------------------
523
524This section covers the entrypoints exported outside of i915_perf.c to
525integrate with drm/i915 and to handle the `DRM_I915_PERF_OPEN` ioctl.
526
527.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
528 :functions: i915_perf_init
529.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
530 :functions: i915_perf_fini
531.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
532 :functions: i915_perf_register
533.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
534 :functions: i915_perf_unregister
535.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
536 :functions: i915_perf_open_ioctl
537.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
538 :functions: i915_perf_release
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100539.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
540 :functions: i915_perf_add_config_ioctl
541.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
542 :functions: i915_perf_remove_config_ioctl
Robert Bragg16d98b32016-12-07 21:40:33 +0000543
544i915 Perf Stream
545----------------
546
547This section covers the stream-semantics-agnostic structures and functions
548for representing an i915 perf stream FD and associated file operations.
549
Anna Karas8c638802019-10-22 13:09:06 +0300550.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000551 :functions: i915_perf_stream
Anna Karas8c638802019-10-22 13:09:06 +0300552.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000553 :functions: i915_perf_stream_ops
554
555.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
556 :functions: read_properties_unlocked
557.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
558 :functions: i915_perf_open_ioctl_locked
559.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
560 :functions: i915_perf_destroy_locked
561.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
562 :functions: i915_perf_read
563.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
564 :functions: i915_perf_ioctl
565.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
566 :functions: i915_perf_enable_locked
567.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
568 :functions: i915_perf_disable_locked
569.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
570 :functions: i915_perf_poll
571.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
572 :functions: i915_perf_poll_locked
573
574i915 Perf Observation Architecture Stream
575-----------------------------------------
576
Anna Karas8c638802019-10-22 13:09:06 +0300577.. kernel-doc:: drivers/gpu/drm/i915/i915_perf_types.h
Robert Bragg16d98b32016-12-07 21:40:33 +0000578 :functions: i915_oa_ops
579
580.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
581 :functions: i915_oa_stream_init
582.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
583 :functions: i915_oa_read
584.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
585 :functions: i915_oa_stream_enable
586.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
587 :functions: i915_oa_stream_disable
588.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
589 :functions: i915_oa_wait_unlocked
590.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
591 :functions: i915_oa_poll_wait
592
593All i915 Perf Internals
594-----------------------
595
596This section simply includes all currently documented i915 perf internals, in
597no particular order, but may include some more minor utilities or platform
598specific details than found in the more high-level sections.
599
600.. kernel-doc:: drivers/gpu/drm/i915/i915_perf.c
601 :internal:
Jani Nikula1aa920e2017-08-10 15:29:44 +0300602
603Style
604=====
605
606The drm/i915 driver codebase has some style rules in addition to (and, in some
607cases, deviating from) the kernel coding style.
608
609Register macro definition style
610-------------------------------
611
612The style guide for ``i915_reg.h``.
613
614.. kernel-doc:: drivers/gpu/drm/i915/i915_reg.h
615 :doc: The i915 register macro definition style guide