drm/amd/amdgpu : Refine tracepoints to track more information
[deliverable/linux.git] / drivers / gpu / drm / vc4 / vc4_kms.c
CommitLineData
c8b75bca
EA
1/*
2 * Copyright (C) 2015 Broadcom
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 version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/**
10 * DOC: VC4 KMS
11 *
12 * This is the general code for implementing KMS mode setting that
13 * doesn't clearly associate with any of the other objects (plane,
14 * crtc, HDMI encoder).
15 */
16
17#include "drm_crtc.h"
b501bacc 18#include "drm_atomic.h"
c8b75bca
EA
19#include "drm_atomic_helper.h"
20#include "drm_crtc_helper.h"
21#include "drm_plane_helper.h"
22#include "drm_fb_cma_helper.h"
23#include "vc4_drv.h"
24
48666d56
DF
25static void vc4_output_poll_changed(struct drm_device *dev)
26{
27 struct vc4_dev *vc4 = to_vc4_dev(dev);
28
29 if (vc4->fbdev)
30 drm_fbdev_cma_hotplug_event(vc4->fbdev);
31}
32
b501bacc
EA
33struct vc4_commit {
34 struct drm_device *dev;
35 struct drm_atomic_state *state;
36 struct vc4_seqno_cb cb;
37};
38
39static void
40vc4_atomic_complete_commit(struct vc4_commit *c)
41{
42 struct drm_atomic_state *state = c->state;
43 struct drm_device *dev = state->dev;
44 struct vc4_dev *vc4 = to_vc4_dev(dev);
45
46 drm_atomic_helper_commit_modeset_disables(dev, state);
47
48 drm_atomic_helper_commit_planes(dev, state, false);
49
50 drm_atomic_helper_commit_modeset_enables(dev, state);
51
6674a904
EA
52 /* Make sure that drm_atomic_helper_wait_for_vblanks()
53 * actually waits for vblank. If we're doing a full atomic
54 * modeset (as opposed to a vc4_update_plane() short circuit),
55 * then we need to wait for scanout to be done with our
56 * display lists before we free it and potentially reallocate
57 * and overwrite the dlist memory with a new modeset.
58 */
59 state->legacy_cursor_update = false;
60
b501bacc
EA
61 drm_atomic_helper_wait_for_vblanks(dev, state);
62
63 drm_atomic_helper_cleanup_planes(dev, state);
64
65 drm_atomic_state_free(state);
66
67 up(&vc4->async_modeset);
68
69 kfree(c);
70}
71
72static void
73vc4_atomic_complete_commit_seqno_cb(struct vc4_seqno_cb *cb)
74{
75 struct vc4_commit *c = container_of(cb, struct vc4_commit, cb);
76
77 vc4_atomic_complete_commit(c);
78}
79
80static struct vc4_commit *commit_init(struct drm_atomic_state *state)
81{
82 struct vc4_commit *c = kzalloc(sizeof(*c), GFP_KERNEL);
83
84 if (!c)
85 return NULL;
86 c->dev = state->dev;
87 c->state = state;
88
89 return c;
90}
91
92/**
93 * vc4_atomic_commit - commit validated state object
94 * @dev: DRM device
95 * @state: the driver state object
eb63961b 96 * @nonblock: nonblocking commit
b501bacc
EA
97 *
98 * This function commits a with drm_atomic_helper_check() pre-validated state
99 * object. This can still fail when e.g. the framebuffer reservation fails. For
100 * now this doesn't implement asynchronous commits.
101 *
102 * RETURNS
103 * Zero for success or -errno.
104 */
105static int vc4_atomic_commit(struct drm_device *dev,
106 struct drm_atomic_state *state,
eb63961b 107 bool nonblock)
b501bacc
EA
108{
109 struct vc4_dev *vc4 = to_vc4_dev(dev);
110 int ret;
111 int i;
112 uint64_t wait_seqno = 0;
113 struct vc4_commit *c;
833cd78a
DV
114 struct drm_plane *plane;
115 struct drm_plane_state *new_state;
b501bacc
EA
116
117 c = commit_init(state);
118 if (!c)
119 return -ENOMEM;
120
121 /* Make sure that any outstanding modesets have finished. */
e7c31f6f
RF
122 if (nonblock) {
123 ret = down_trylock(&vc4->async_modeset);
124 if (ret) {
125 kfree(c);
126 return -EBUSY;
127 }
128 } else {
129 ret = down_interruptible(&vc4->async_modeset);
130 if (ret) {
131 kfree(c);
132 return ret;
133 }
b501bacc
EA
134 }
135
136 ret = drm_atomic_helper_prepare_planes(dev, state);
137 if (ret) {
138 kfree(c);
139 up(&vc4->async_modeset);
140 return ret;
141 }
142
833cd78a 143 for_each_plane_in_state(state, plane, new_state, i) {
b501bacc
EA
144 if ((plane->state->fb != new_state->fb) && new_state->fb) {
145 struct drm_gem_cma_object *cma_bo =
146 drm_fb_cma_get_gem_obj(new_state->fb, 0);
147 struct vc4_bo *bo = to_vc4_bo(&cma_bo->base);
148
149 wait_seqno = max(bo->seqno, wait_seqno);
150 }
151 }
152
153 /*
154 * This is the point of no return - everything below never fails except
155 * when the hw goes bonghits. Which means we can commit the new state on
156 * the software side now.
157 */
158
5e84c269 159 drm_atomic_helper_swap_state(state, true);
b501bacc
EA
160
161 /*
162 * Everything below can be run asynchronously without the need to grab
163 * any modeset locks at all under one condition: It must be guaranteed
164 * that the asynchronous work has either been cancelled (if the driver
165 * supports it, which at least requires that the framebuffers get
166 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
167 * before the new state gets committed on the software side with
168 * drm_atomic_helper_swap_state().
169 *
170 * This scheme allows new atomic state updates to be prepared and
171 * checked in parallel to the asynchronous completion of the previous
172 * update. Which is important since compositors need to figure out the
173 * composition of the next frame right after having submitted the
174 * current layout.
175 */
176
eb63961b 177 if (nonblock) {
b501bacc
EA
178 vc4_queue_seqno_cb(dev, &c->cb, wait_seqno,
179 vc4_atomic_complete_commit_seqno_cb);
180 } else {
181 vc4_wait_for_seqno(dev, wait_seqno, ~0ull, false);
182 vc4_atomic_complete_commit(c);
183 }
184
185 return 0;
186}
187
c8b75bca 188static const struct drm_mode_config_funcs vc4_mode_funcs = {
48666d56 189 .output_poll_changed = vc4_output_poll_changed,
c8b75bca 190 .atomic_check = drm_atomic_helper_check,
b501bacc 191 .atomic_commit = vc4_atomic_commit,
c8b75bca
EA
192 .fb_create = drm_fb_cma_create,
193};
194
195int vc4_kms_load(struct drm_device *dev)
196{
48666d56 197 struct vc4_dev *vc4 = to_vc4_dev(dev);
c8b75bca
EA
198 int ret;
199
b501bacc
EA
200 sema_init(&vc4->async_modeset, 1);
201
c8b75bca
EA
202 ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
203 if (ret < 0) {
204 dev_err(dev->dev, "failed to initialize vblank\n");
205 return ret;
206 }
207
208 dev->mode_config.max_width = 2048;
209 dev->mode_config.max_height = 2048;
210 dev->mode_config.funcs = &vc4_mode_funcs;
211 dev->mode_config.preferred_depth = 24;
b501bacc
EA
212 dev->mode_config.async_page_flip = true;
213
c8b75bca
EA
214 drm_mode_config_reset(dev);
215
48666d56
DF
216 vc4->fbdev = drm_fbdev_cma_init(dev, 32,
217 dev->mode_config.num_crtc,
218 dev->mode_config.num_connector);
219 if (IS_ERR(vc4->fbdev))
220 vc4->fbdev = NULL;
c8b75bca
EA
221
222 drm_kms_helper_poll_init(dev);
223
224 return 0;
225}
This page took 0.087541 seconds and 5 git commands to generate.