blob: 987a353c7f720113fe4e07e81d76ba4a581d4394 [file] [log] [blame]
Noralf Trønnes5b809072016-06-10 16:55:59 +02001/*
2 * Copyright (C) 2016 Noralf Trønnes
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 */
9
10#include <drm/drmP.h>
11#include <drm/drm_atomic.h>
12#include <drm/drm_atomic_helper.h>
13#include <drm/drm_crtc_helper.h>
14#include <drm/drm_plane_helper.h>
15#include <drm/drm_simple_kms_helper.h>
16#include <linux/slab.h>
17
18/**
19 * DOC: overview
20 *
21 * This helper library provides helpers for drivers for simple display
22 * hardware.
23 *
24 * drm_simple_display_pipe_init() initializes a simple display pipeline
25 * which has only one full-screen scanout buffer feeding one output. The
Daniel Vetterea0dd852016-12-29 21:48:26 +010026 * pipeline is represented by &struct drm_simple_display_pipe and binds
Noralf Trønnes5b809072016-06-10 16:55:59 +020027 * together &drm_plane, &drm_crtc and &drm_encoder structures into one fixed
28 * entity. Some flexibility for code reuse is provided through a separately
29 * allocated &drm_connector object and supporting optional &drm_bridge
30 * encoder drivers.
31 */
32
33static const struct drm_encoder_funcs drm_simple_kms_encoder_funcs = {
34 .destroy = drm_encoder_cleanup,
35};
36
Linus Walleij40275dc2018-02-20 08:28:59 +010037static enum drm_mode_status
38drm_simple_kms_crtc_mode_valid(struct drm_crtc *crtc,
39 const struct drm_display_mode *mode)
40{
41 struct drm_simple_display_pipe *pipe;
42
43 pipe = container_of(crtc, struct drm_simple_display_pipe, crtc);
44 if (!pipe->funcs || !pipe->funcs->mode_valid)
45 /* Anything goes */
46 return MODE_OK;
47
48 return pipe->funcs->mode_valid(crtc, mode);
49}
50
Daniel Vetter6dcf0de2016-08-23 08:25:40 +020051static int drm_simple_kms_crtc_check(struct drm_crtc *crtc,
52 struct drm_crtc_state *state)
53{
Maarten Lankhorst765831d2017-07-12 10:13:29 +020054 bool has_primary = state->plane_mask &
55 BIT(drm_plane_index(crtc->primary));
56
57 /* We always want to have an active plane with an active CRTC */
58 if (has_primary != state->enable)
59 return -EINVAL;
60
Daniel Vetter6dcf0de2016-08-23 08:25:40 +020061 return drm_atomic_add_affected_planes(state->state, crtc);
62}
63
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +030064static void drm_simple_kms_crtc_enable(struct drm_crtc *crtc,
65 struct drm_crtc_state *old_state)
Noralf Trønnes5b809072016-06-10 16:55:59 +020066{
67 struct drm_simple_display_pipe *pipe;
68
69 pipe = container_of(crtc, struct drm_simple_display_pipe, crtc);
70 if (!pipe->funcs || !pipe->funcs->enable)
71 return;
72
73 pipe->funcs->enable(pipe, crtc->state);
74}
75
Laurent Pinchart64581712017-06-30 12:36:45 +030076static void drm_simple_kms_crtc_disable(struct drm_crtc *crtc,
77 struct drm_crtc_state *old_state)
Noralf Trønnes5b809072016-06-10 16:55:59 +020078{
79 struct drm_simple_display_pipe *pipe;
80
81 pipe = container_of(crtc, struct drm_simple_display_pipe, crtc);
82 if (!pipe->funcs || !pipe->funcs->disable)
83 return;
84
85 pipe->funcs->disable(pipe);
86}
87
88static const struct drm_crtc_helper_funcs drm_simple_kms_crtc_helper_funcs = {
Linus Walleij40275dc2018-02-20 08:28:59 +010089 .mode_valid = drm_simple_kms_crtc_mode_valid,
Daniel Vetter6dcf0de2016-08-23 08:25:40 +020090 .atomic_check = drm_simple_kms_crtc_check,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +030091 .atomic_enable = drm_simple_kms_crtc_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +030092 .atomic_disable = drm_simple_kms_crtc_disable,
Noralf Trønnes5b809072016-06-10 16:55:59 +020093};
94
Oleksandr Andrushchenkoac86cba2018-02-12 10:52:51 +020095static int drm_simple_kms_crtc_enable_vblank(struct drm_crtc *crtc)
96{
97 struct drm_simple_display_pipe *pipe;
98
99 pipe = container_of(crtc, struct drm_simple_display_pipe, crtc);
100 if (!pipe->funcs || !pipe->funcs->enable_vblank)
101 return 0;
102
103 return pipe->funcs->enable_vblank(pipe);
104}
105
106static void drm_simple_kms_crtc_disable_vblank(struct drm_crtc *crtc)
107{
108 struct drm_simple_display_pipe *pipe;
109
110 pipe = container_of(crtc, struct drm_simple_display_pipe, crtc);
111 if (!pipe->funcs || !pipe->funcs->disable_vblank)
112 return;
113
114 pipe->funcs->disable_vblank(pipe);
115}
116
Noralf Trønnes5b809072016-06-10 16:55:59 +0200117static const struct drm_crtc_funcs drm_simple_kms_crtc_funcs = {
118 .reset = drm_atomic_helper_crtc_reset,
119 .destroy = drm_crtc_cleanup,
120 .set_config = drm_atomic_helper_set_config,
121 .page_flip = drm_atomic_helper_page_flip,
122 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
123 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Oleksandr Andrushchenkoac86cba2018-02-12 10:52:51 +0200124 .enable_vblank = drm_simple_kms_crtc_enable_vblank,
125 .disable_vblank = drm_simple_kms_crtc_disable_vblank,
Noralf Trønnes5b809072016-06-10 16:55:59 +0200126};
127
128static int drm_simple_kms_plane_atomic_check(struct drm_plane *plane,
129 struct drm_plane_state *plane_state)
130{
Noralf Trønnes5b809072016-06-10 16:55:59 +0200131 struct drm_simple_display_pipe *pipe;
132 struct drm_crtc_state *crtc_state;
Noralf Trønnes5b809072016-06-10 16:55:59 +0200133 int ret;
134
135 pipe = container_of(plane, struct drm_simple_display_pipe, plane);
Maarten Lankhorstb4d93672017-03-01 10:22:10 +0100136 crtc_state = drm_atomic_get_new_crtc_state(plane_state->state,
137 &pipe->crtc);
Ville Syrjälä4be12cc2016-07-26 19:07:04 +0300138
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200139 ret = drm_atomic_helper_check_plane_state(plane_state, crtc_state,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200140 DRM_PLANE_HELPER_NO_SCALING,
141 DRM_PLANE_HELPER_NO_SCALING,
142 false, true);
Noralf Trønnes5b809072016-06-10 16:55:59 +0200143 if (ret)
144 return ret;
145
Ville Syrjälä4be12cc2016-07-26 19:07:04 +0300146 if (!plane_state->visible)
Oleksandr Andrushchenko4751cf72018-02-22 08:09:19 +0200147 return 0;
148
Noralf Trønnes5b809072016-06-10 16:55:59 +0200149 if (!pipe->funcs || !pipe->funcs->check)
150 return 0;
151
152 return pipe->funcs->check(pipe, plane_state, crtc_state);
153}
154
155static void drm_simple_kms_plane_atomic_update(struct drm_plane *plane,
Eric Anholtbcd2ba02017-03-20 16:36:15 -0700156 struct drm_plane_state *old_pstate)
Noralf Trønnes5b809072016-06-10 16:55:59 +0200157{
158 struct drm_simple_display_pipe *pipe;
159
160 pipe = container_of(plane, struct drm_simple_display_pipe, plane);
161 if (!pipe->funcs || !pipe->funcs->update)
162 return;
163
Eric Anholtbcd2ba02017-03-20 16:36:15 -0700164 pipe->funcs->update(pipe, old_pstate);
Noralf Trønnes5b809072016-06-10 16:55:59 +0200165}
166
Marek Vasut7d83a152016-10-02 19:01:24 +0200167static int drm_simple_kms_plane_prepare_fb(struct drm_plane *plane,
168 struct drm_plane_state *state)
169{
170 struct drm_simple_display_pipe *pipe;
171
172 pipe = container_of(plane, struct drm_simple_display_pipe, plane);
173 if (!pipe->funcs || !pipe->funcs->prepare_fb)
174 return 0;
175
176 return pipe->funcs->prepare_fb(pipe, state);
177}
178
179static void drm_simple_kms_plane_cleanup_fb(struct drm_plane *plane,
180 struct drm_plane_state *state)
181{
182 struct drm_simple_display_pipe *pipe;
183
184 pipe = container_of(plane, struct drm_simple_display_pipe, plane);
185 if (!pipe->funcs || !pipe->funcs->cleanup_fb)
186 return;
187
188 pipe->funcs->cleanup_fb(pipe, state);
189}
190
Noralf Trønnes5b809072016-06-10 16:55:59 +0200191static const struct drm_plane_helper_funcs drm_simple_kms_plane_helper_funcs = {
Marek Vasut7d83a152016-10-02 19:01:24 +0200192 .prepare_fb = drm_simple_kms_plane_prepare_fb,
193 .cleanup_fb = drm_simple_kms_plane_cleanup_fb,
Noralf Trønnes5b809072016-06-10 16:55:59 +0200194 .atomic_check = drm_simple_kms_plane_atomic_check,
195 .atomic_update = drm_simple_kms_plane_atomic_update,
196};
197
198static const struct drm_plane_funcs drm_simple_kms_plane_funcs = {
199 .update_plane = drm_atomic_helper_update_plane,
200 .disable_plane = drm_atomic_helper_disable_plane,
201 .destroy = drm_plane_cleanup,
202 .reset = drm_atomic_helper_plane_reset,
203 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
204 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
205};
206
207/**
Andrea Merello315486c2016-08-25 11:04:34 +0200208 * drm_simple_display_pipe_attach_bridge - Attach a bridge to the display pipe
209 * @pipe: simple display pipe object
210 * @bridge: bridge to attach
211 *
212 * Makes it possible to still use the drm_simple_display_pipe helpers when
213 * a DRM bridge has to be used.
214 *
215 * Note that you probably want to initialize the pipe by passing a NULL
216 * connector to drm_simple_display_pipe_init().
217 *
218 * Returns:
219 * Zero on success, negative error code on failure.
220 */
221int drm_simple_display_pipe_attach_bridge(struct drm_simple_display_pipe *pipe,
222 struct drm_bridge *bridge)
223{
Laurent Pinchart3bb80f22016-11-28 17:59:08 +0200224 return drm_bridge_attach(&pipe->encoder, bridge, NULL);
Andrea Merello315486c2016-08-25 11:04:34 +0200225}
226EXPORT_SYMBOL(drm_simple_display_pipe_attach_bridge);
227
228/**
Noralf Trønnes5b809072016-06-10 16:55:59 +0200229 * drm_simple_display_pipe_init - Initialize a simple display pipeline
230 * @dev: DRM device
231 * @pipe: simple display pipe object to initialize
232 * @funcs: callbacks for the display pipe (optional)
Daniel Vetter62cacc72016-08-12 22:48:37 +0200233 * @formats: array of supported formats (DRM_FORMAT\_\*)
Noralf Trønnes5b809072016-06-10 16:55:59 +0200234 * @format_count: number of elements in @formats
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700235 * @format_modifiers: array of formats modifiers
Andrea Merello4f993972016-08-25 11:04:33 +0200236 * @connector: connector to attach and register (optional)
Noralf Trønnes5b809072016-06-10 16:55:59 +0200237 *
238 * Sets up a display pipeline which consist of a really simple
Andrea Merello4f993972016-08-25 11:04:33 +0200239 * plane-crtc-encoder pipe.
240 *
241 * If a connector is supplied, the pipe will be coupled with the provided
242 * connector. You may supply a NULL connector when using drm bridges, that
243 * handle connectors themselves (see drm_simple_display_pipe_attach_bridge()).
244 *
Noralf Trønnes5b809072016-06-10 16:55:59 +0200245 * Teardown of a simple display pipe is all handled automatically by the drm
246 * core through calling drm_mode_config_cleanup(). Drivers afterwards need to
247 * release the memory for the structure themselves.
248 *
249 * Returns:
250 * Zero on success, negative error code on failure.
251 */
252int drm_simple_display_pipe_init(struct drm_device *dev,
253 struct drm_simple_display_pipe *pipe,
254 const struct drm_simple_display_pipe_funcs *funcs,
255 const uint32_t *formats, unsigned int format_count,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700256 const uint64_t *format_modifiers,
Noralf Trønnes5b809072016-06-10 16:55:59 +0200257 struct drm_connector *connector)
258{
259 struct drm_encoder *encoder = &pipe->encoder;
260 struct drm_plane *plane = &pipe->plane;
261 struct drm_crtc *crtc = &pipe->crtc;
262 int ret;
263
264 pipe->connector = connector;
265 pipe->funcs = funcs;
266
267 drm_plane_helper_add(plane, &drm_simple_kms_plane_helper_funcs);
268 ret = drm_universal_plane_init(dev, plane, 0,
269 &drm_simple_kms_plane_funcs,
270 formats, format_count,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700271 format_modifiers,
Noralf Trønnes5b809072016-06-10 16:55:59 +0200272 DRM_PLANE_TYPE_PRIMARY, NULL);
273 if (ret)
274 return ret;
275
276 drm_crtc_helper_add(crtc, &drm_simple_kms_crtc_helper_funcs);
277 ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
278 &drm_simple_kms_crtc_funcs, NULL);
279 if (ret)
280 return ret;
281
282 encoder->possible_crtcs = 1 << drm_crtc_index(crtc);
283 ret = drm_encoder_init(dev, encoder, &drm_simple_kms_encoder_funcs,
284 DRM_MODE_ENCODER_NONE, NULL);
Andrea Merello4f993972016-08-25 11:04:33 +0200285 if (ret || !connector)
Noralf Trønnes5b809072016-06-10 16:55:59 +0200286 return ret;
287
288 return drm_mode_connector_attach_encoder(connector, encoder);
289}
290EXPORT_SYMBOL(drm_simple_display_pipe_init);
291
292MODULE_LICENSE("GPL");