Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 1 | ========================= |
| 2 | Kernel Mode Setting (KMS) |
| 3 | ========================= |
| 4 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 5 | Drivers must initialize the mode setting core by calling |
| 6 | :c:func:`drm_mode_config_init()` on the DRM device. The function |
| 7 | initializes the :c:type:`struct drm_device <drm_device>` |
| 8 | mode_config field and never fails. Once done, mode configuration must |
| 9 | be setup by initializing the following fields. |
| 10 | |
| 11 | - int min_width, min_height; int max_width, max_height; |
| 12 | Minimum and maximum width and height of the frame buffers in pixel |
| 13 | units. |
| 14 | |
| 15 | - struct drm_mode_config_funcs \*funcs; |
| 16 | Mode setting functions. |
| 17 | |
Daniel Vetter | 28575f1 | 2016-11-14 12:58:23 +0100 | [diff] [blame^] | 18 | Mode Configuration |
| 19 | |
| 20 | KMS Core Structures and Functions |
| 21 | ================================= |
| 22 | |
| 23 | .. kernel-doc:: drivers/gpu/drm/drm_mode_config.c |
| 24 | :export: |
| 25 | |
| 26 | .. kernel-doc:: include/drm/drm_mode_config.h |
| 27 | :internal: |
| 28 | |
Daniel Vetter | 949619f | 2016-08-29 10:27:51 +0200 | [diff] [blame] | 29 | Modeset Base Object Abstraction |
| 30 | =============================== |
| 31 | |
| 32 | .. kernel-doc:: include/drm/drm_mode_object.h |
| 33 | :internal: |
| 34 | |
| 35 | .. kernel-doc:: drivers/gpu/drm/drm_mode_object.c |
| 36 | :export: |
| 37 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 38 | Atomic Mode Setting Function Reference |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 39 | ====================================== |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 40 | |
| 41 | .. kernel-doc:: drivers/gpu/drm/drm_atomic.c |
| 42 | :export: |
| 43 | |
Daniel Vetter | 5d070be | 2016-08-12 22:48:46 +0200 | [diff] [blame] | 44 | .. kernel-doc:: include/drm/drm_atomic.h |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 45 | :internal: |
| 46 | |
Daniel Vetter | 28575f1 | 2016-11-14 12:58:23 +0100 | [diff] [blame^] | 47 | CRTC Abstraction |
| 48 | ================ |
| 49 | |
| 50 | .. kernel-doc:: drivers/gpu/drm/drm_crtc.c |
| 51 | :export: |
| 52 | |
| 53 | .. kernel-doc:: include/drm/drm_crtc.h |
| 54 | :internal: |
| 55 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 56 | Frame Buffer Abstraction |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 57 | ======================== |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 58 | |
Daniel Vetter | 750fb8c | 2016-08-12 22:48:48 +0200 | [diff] [blame] | 59 | .. kernel-doc:: drivers/gpu/drm/drm_framebuffer.c |
| 60 | :doc: overview |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 61 | |
Daniel Vetter | 7520a27 | 2016-08-15 16:07:02 +0200 | [diff] [blame] | 62 | Frame Buffer Functions Reference |
| 63 | -------------------------------- |
| 64 | |
| 65 | .. kernel-doc:: drivers/gpu/drm/drm_framebuffer.c |
| 66 | :export: |
| 67 | |
| 68 | .. kernel-doc:: include/drm/drm_framebuffer.h |
| 69 | :internal: |
| 70 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 71 | DRM Format Handling |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 72 | =================== |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 73 | |
Laurent Pinchart | 84770cc | 2016-10-18 01:41:09 +0300 | [diff] [blame] | 74 | .. kernel-doc:: include/drm/drm_fourcc.h |
| 75 | :internal: |
| 76 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 77 | .. kernel-doc:: drivers/gpu/drm/drm_fourcc.c |
| 78 | :export: |
| 79 | |
| 80 | Dumb Buffer Objects |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 81 | =================== |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 82 | |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 83 | .. kernel-doc:: drivers/gpu/drm/drm_dumb_buffers.c |
| 84 | :doc: overview |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 85 | |
Daniel Vetter | 43968d7 | 2016-09-21 10:59:24 +0200 | [diff] [blame] | 86 | Plane Abstraction |
| 87 | ================= |
| 88 | |
Daniel Vetter | 532b367 | 2016-09-21 10:59:25 +0200 | [diff] [blame] | 89 | .. kernel-doc:: drivers/gpu/drm/drm_plane.c |
| 90 | :doc: overview |
| 91 | |
Daniel Vetter | 43968d7 | 2016-09-21 10:59:24 +0200 | [diff] [blame] | 92 | Plane Functions Reference |
| 93 | ------------------------- |
| 94 | |
| 95 | .. kernel-doc:: include/drm/drm_plane.h |
| 96 | :internal: |
| 97 | |
| 98 | .. kernel-doc:: drivers/gpu/drm/drm_plane.c |
| 99 | :export: |
| 100 | |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 101 | Display Modes Function Reference |
| 102 | ================================ |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 103 | |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 104 | .. kernel-doc:: include/drm/drm_modes.h |
| 105 | :internal: |
| 106 | |
| 107 | .. kernel-doc:: drivers/gpu/drm/drm_modes.c |
| 108 | :export: |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 109 | |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 110 | Connector Abstraction |
| 111 | ===================== |
| 112 | |
| 113 | .. kernel-doc:: drivers/gpu/drm/drm_connector.c |
| 114 | :doc: overview |
| 115 | |
| 116 | Connector Functions Reference |
| 117 | ----------------------------- |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 118 | |
| 119 | .. kernel-doc:: include/drm/drm_connector.h |
| 120 | :internal: |
| 121 | |
| 122 | .. kernel-doc:: drivers/gpu/drm/drm_connector.c |
| 123 | :export: |
| 124 | |
Daniel Vetter | 321a95a | 2016-08-29 10:27:49 +0200 | [diff] [blame] | 125 | Encoder Abstraction |
| 126 | =================== |
| 127 | |
Daniel Vetter | e03e6de | 2016-08-29 10:27:50 +0200 | [diff] [blame] | 128 | .. kernel-doc:: drivers/gpu/drm/drm_encoder.c |
| 129 | :doc: overview |
| 130 | |
| 131 | Encoder Functions Reference |
| 132 | --------------------------- |
| 133 | |
Daniel Vetter | 321a95a | 2016-08-29 10:27:49 +0200 | [diff] [blame] | 134 | .. kernel-doc:: include/drm/drm_encoder.h |
| 135 | :internal: |
| 136 | |
| 137 | .. kernel-doc:: drivers/gpu/drm/drm_encoder.c |
| 138 | :export: |
| 139 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 140 | KMS Initialization and Cleanup |
| 141 | ============================== |
| 142 | |
| 143 | A KMS device is abstracted and exposed as a set of planes, CRTCs, |
| 144 | encoders and connectors. KMS drivers must thus create and initialize all |
| 145 | those objects at load time after initializing mode setting. |
| 146 | |
| 147 | CRTCs (:c:type:`struct drm_crtc <drm_crtc>`) |
| 148 | -------------------------------------------- |
| 149 | |
| 150 | A CRTC is an abstraction representing a part of the chip that contains a |
| 151 | pointer to a scanout buffer. Therefore, the number of CRTCs available |
| 152 | determines how many independent scanout buffers can be active at any |
| 153 | given time. The CRTC structure contains several fields to support this: |
| 154 | a pointer to some video memory (abstracted as a frame buffer object), a |
| 155 | display mode, and an (x, y) offset into the video memory to support |
| 156 | panning or configurations where one piece of video memory spans multiple |
| 157 | CRTCs. |
| 158 | |
| 159 | CRTC Initialization |
| 160 | ~~~~~~~~~~~~~~~~~~~ |
| 161 | |
| 162 | A KMS device must create and register at least one struct |
| 163 | :c:type:`struct drm_crtc <drm_crtc>` instance. The instance is |
| 164 | allocated and zeroed by the driver, possibly as part of a larger |
| 165 | structure, and registered with a call to :c:func:`drm_crtc_init()` |
| 166 | with a pointer to CRTC functions. |
| 167 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 168 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 169 | Cleanup |
| 170 | ------- |
| 171 | |
| 172 | The DRM core manages its objects' lifetime. When an object is not needed |
| 173 | anymore the core calls its destroy function, which must clean up and |
| 174 | free every resource allocated for the object. Every |
| 175 | :c:func:`drm_\*_init()` call must be matched with a corresponding |
| 176 | :c:func:`drm_\*_cleanup()` call to cleanup CRTCs |
| 177 | (:c:func:`drm_crtc_cleanup()`), planes |
| 178 | (:c:func:`drm_plane_cleanup()`), encoders |
| 179 | (:c:func:`drm_encoder_cleanup()`) and connectors |
| 180 | (:c:func:`drm_connector_cleanup()`). Furthermore, connectors that |
| 181 | have been added to sysfs must be removed by a call to |
| 182 | :c:func:`drm_connector_unregister()` before calling |
| 183 | :c:func:`drm_connector_cleanup()`. |
| 184 | |
| 185 | Connectors state change detection must be cleanup up with a call to |
| 186 | :c:func:`drm_kms_helper_poll_fini()`. |
| 187 | |
| 188 | Output discovery and initialization example |
| 189 | ------------------------------------------- |
| 190 | |
| 191 | :: |
| 192 | |
| 193 | void intel_crt_init(struct drm_device *dev) |
| 194 | { |
| 195 | struct drm_connector *connector; |
| 196 | struct intel_output *intel_output; |
| 197 | |
| 198 | intel_output = kzalloc(sizeof(struct intel_output), GFP_KERNEL); |
| 199 | if (!intel_output) |
| 200 | return; |
| 201 | |
| 202 | connector = &intel_output->base; |
| 203 | drm_connector_init(dev, &intel_output->base, |
| 204 | &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA); |
| 205 | |
| 206 | drm_encoder_init(dev, &intel_output->enc, &intel_crt_enc_funcs, |
| 207 | DRM_MODE_ENCODER_DAC); |
| 208 | |
| 209 | drm_mode_connector_attach_encoder(&intel_output->base, |
| 210 | &intel_output->enc); |
| 211 | |
| 212 | /* Set up the DDC bus. */ |
| 213 | intel_output->ddc_bus = intel_i2c_create(dev, GPIOA, "CRTDDC_A"); |
| 214 | if (!intel_output->ddc_bus) { |
| 215 | dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration " |
| 216 | "failed.\n"); |
| 217 | return; |
| 218 | } |
| 219 | |
| 220 | intel_output->type = INTEL_OUTPUT_ANALOG; |
| 221 | connector->interlace_allowed = 0; |
| 222 | connector->doublescan_allowed = 0; |
| 223 | |
| 224 | drm_encoder_helper_add(&intel_output->enc, &intel_crt_helper_funcs); |
| 225 | drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs); |
| 226 | |
| 227 | drm_connector_register(connector); |
| 228 | } |
| 229 | |
| 230 | In the example above (taken from the i915 driver), a CRTC, connector and |
| 231 | encoder combination is created. A device-specific i2c bus is also |
| 232 | created for fetching EDID data and performing monitor detection. Once |
| 233 | the process is complete, the new connector is registered with sysfs to |
| 234 | make its properties available to applications. |
| 235 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 236 | KMS Locking |
Daniel Vetter | 311b62d | 2016-08-12 22:48:41 +0200 | [diff] [blame] | 237 | =========== |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 238 | |
| 239 | .. kernel-doc:: drivers/gpu/drm/drm_modeset_lock.c |
| 240 | :doc: kms locking |
| 241 | |
| 242 | .. kernel-doc:: include/drm/drm_modeset_lock.h |
| 243 | :internal: |
| 244 | |
| 245 | .. kernel-doc:: drivers/gpu/drm/drm_modeset_lock.c |
| 246 | :export: |
| 247 | |
| 248 | KMS Properties |
| 249 | ============== |
| 250 | |
Daniel Vetter | 59e71ee | 2016-08-29 10:27:55 +0200 | [diff] [blame] | 251 | Property Types and Blob Property Support |
| 252 | ---------------------------------------- |
| 253 | |
Daniel Vetter | c8458c7 | 2016-08-29 10:27:57 +0200 | [diff] [blame] | 254 | .. kernel-doc:: drivers/gpu/drm/drm_property.c |
| 255 | :doc: overview |
| 256 | |
Daniel Vetter | 59e71ee | 2016-08-29 10:27:55 +0200 | [diff] [blame] | 257 | .. kernel-doc:: include/drm/drm_property.h |
| 258 | :internal: |
| 259 | |
| 260 | .. kernel-doc:: drivers/gpu/drm/drm_property.c |
| 261 | :export: |
| 262 | |
Daniel Vetter | 1e4d84c | 2016-09-21 10:59:27 +0200 | [diff] [blame] | 263 | Plane Composition Properties |
| 264 | ---------------------------- |
| 265 | |
| 266 | .. kernel-doc:: drivers/gpu/drm/drm_blend.c |
| 267 | :doc: overview |
Daniel Vetter | 52a9fcd | 2016-08-12 22:48:51 +0200 | [diff] [blame] | 268 | |
| 269 | .. kernel-doc:: drivers/gpu/drm/drm_blend.c |
| 270 | :export: |
| 271 | |
Daniel Vetter | a6acccf | 2016-09-21 10:59:29 +0200 | [diff] [blame] | 272 | Color Management Properties |
| 273 | --------------------------- |
| 274 | |
| 275 | .. kernel-doc:: drivers/gpu/drm/drm_color_mgmt.c |
| 276 | :doc: overview |
| 277 | |
| 278 | .. kernel-doc:: include/drm/drm_color_mgmt.h |
| 279 | :internal: |
| 280 | |
| 281 | .. kernel-doc:: drivers/gpu/drm/drm_color_mgmt.c |
| 282 | :export: |
| 283 | |
Jani Nikula | 2fa91d1 | 2016-06-21 14:49:02 +0300 | [diff] [blame] | 284 | Existing KMS Properties |
| 285 | ----------------------- |
| 286 | |
| 287 | The following table gives description of drm properties exposed by |
| 288 | various modules/drivers. |
| 289 | |
| 290 | .. csv-table:: |
| 291 | :header-rows: 1 |
| 292 | :file: kms-properties.csv |
| 293 | |
| 294 | Vertical Blanking |
| 295 | ================= |
| 296 | |
| 297 | Vertical blanking plays a major role in graphics rendering. To achieve |
| 298 | tear-free display, users must synchronize page flips and/or rendering to |
| 299 | vertical blanking. The DRM API offers ioctls to perform page flips |
| 300 | synchronized to vertical blanking and wait for vertical blanking. |
| 301 | |
| 302 | The DRM core handles most of the vertical blanking management logic, |
| 303 | which involves filtering out spurious interrupts, keeping race-free |
| 304 | blanking counters, coping with counter wrap-around and resets and |
| 305 | keeping use counts. It relies on the driver to generate vertical |
| 306 | blanking interrupts and optionally provide a hardware vertical blanking |
| 307 | counter. Drivers must implement the following operations. |
| 308 | |
| 309 | - int (\*enable_vblank) (struct drm_device \*dev, int crtc); void |
| 310 | (\*disable_vblank) (struct drm_device \*dev, int crtc); |
| 311 | Enable or disable vertical blanking interrupts for the given CRTC. |
| 312 | |
| 313 | - u32 (\*get_vblank_counter) (struct drm_device \*dev, int crtc); |
| 314 | Retrieve the value of the vertical blanking counter for the given |
| 315 | CRTC. If the hardware maintains a vertical blanking counter its value |
| 316 | should be returned. Otherwise drivers can use the |
| 317 | :c:func:`drm_vblank_count()` helper function to handle this |
| 318 | operation. |
| 319 | |
| 320 | Drivers must initialize the vertical blanking handling core with a call |
| 321 | to :c:func:`drm_vblank_init()` in their load operation. |
| 322 | |
| 323 | Vertical blanking interrupts can be enabled by the DRM core or by |
| 324 | drivers themselves (for instance to handle page flipping operations). |
| 325 | The DRM core maintains a vertical blanking use count to ensure that the |
| 326 | interrupts are not disabled while a user still needs them. To increment |
| 327 | the use count, drivers call :c:func:`drm_vblank_get()`. Upon |
| 328 | return vertical blanking interrupts are guaranteed to be enabled. |
| 329 | |
| 330 | To decrement the use count drivers call |
| 331 | :c:func:`drm_vblank_put()`. Only when the use count drops to zero |
| 332 | will the DRM core disable the vertical blanking interrupts after a delay |
| 333 | by scheduling a timer. The delay is accessible through the |
| 334 | vblankoffdelay module parameter or the ``drm_vblank_offdelay`` global |
| 335 | variable and expressed in milliseconds. Its default value is 5000 ms. |
| 336 | Zero means never disable, and a negative value means disable |
| 337 | immediately. Drivers may override the behaviour by setting the |
| 338 | :c:type:`struct drm_device <drm_device>` |
| 339 | vblank_disable_immediate flag, which when set causes vblank interrupts |
| 340 | to be disabled immediately regardless of the drm_vblank_offdelay |
| 341 | value. The flag should only be set if there's a properly working |
| 342 | hardware vblank counter present. |
| 343 | |
| 344 | When a vertical blanking interrupt occurs drivers only need to call the |
| 345 | :c:func:`drm_handle_vblank()` function to account for the |
| 346 | interrupt. |
| 347 | |
| 348 | Resources allocated by :c:func:`drm_vblank_init()` must be freed |
| 349 | with a call to :c:func:`drm_vblank_cleanup()` in the driver unload |
| 350 | operation handler. |
| 351 | |
| 352 | Vertical Blanking and Interrupt Handling Functions Reference |
| 353 | ------------------------------------------------------------ |
| 354 | |
| 355 | .. kernel-doc:: drivers/gpu/drm/drm_irq.c |
| 356 | :export: |
| 357 | |
Daniel Vetter | 34a67dd | 2016-07-15 21:48:01 +0200 | [diff] [blame] | 358 | .. kernel-doc:: include/drm/drm_irq.h |
| 359 | :internal: |