1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <linux/mm.h>
27
28
29#include "dm_services.h"
30#include "dc.h"
31
32
33#include "core_types.h"
34#include "transform.h"
35#include "dpp.h"
36
37
38
39
40static void dc_plane_construct(struct dc_context *ctx, struct dc_plane_state *plane_state)
41{
42 plane_state->ctx = ctx;
43
44 plane_state->gamma_correction = dc_create_gamma();
45 if (plane_state->gamma_correction != NULL)
46 plane_state->gamma_correction->is_identity = true;
47
48 plane_state->in_transfer_func = dc_create_transfer_func();
49 if (plane_state->in_transfer_func != NULL) {
50 plane_state->in_transfer_func->type = TF_TYPE_BYPASS;
51 }
52 plane_state->in_shaper_func = dc_create_transfer_func();
53 if (plane_state->in_shaper_func != NULL) {
54 plane_state->in_shaper_func->type = TF_TYPE_BYPASS;
55 }
56
57 plane_state->lut3d_func = dc_create_3dlut_func();
58
59 plane_state->blend_tf = dc_create_transfer_func();
60 if (plane_state->blend_tf != NULL) {
61 plane_state->blend_tf->type = TF_TYPE_BYPASS;
62 }
63
64}
65
66static void dc_plane_destruct(struct dc_plane_state *plane_state)
67{
68 if (plane_state->gamma_correction != NULL) {
69 dc_gamma_release(&plane_state->gamma_correction);
70 }
71 if (plane_state->in_transfer_func != NULL) {
72 dc_transfer_func_release(
73 plane_state->in_transfer_func);
74 plane_state->in_transfer_func = NULL;
75 }
76 if (plane_state->in_shaper_func != NULL) {
77 dc_transfer_func_release(
78 plane_state->in_shaper_func);
79 plane_state->in_shaper_func = NULL;
80 }
81 if (plane_state->lut3d_func != NULL) {
82 dc_3dlut_func_release(
83 plane_state->lut3d_func);
84 plane_state->lut3d_func = NULL;
85 }
86 if (plane_state->blend_tf != NULL) {
87 dc_transfer_func_release(
88 plane_state->blend_tf);
89 plane_state->blend_tf = NULL;
90 }
91
92}
93
94
95
96
97void enable_surface_flip_reporting(struct dc_plane_state *plane_state,
98 uint32_t controller_id)
99{
100 plane_state->irq_source = controller_id + DC_IRQ_SOURCE_PFLIP1 - 1;
101
102}
103
104struct dc_plane_state *dc_create_plane_state(struct dc *dc)
105{
106 struct dc_plane_state *plane_state = kvzalloc(sizeof(*plane_state),
107 GFP_KERNEL);
108
109 if (NULL == plane_state)
110 return NULL;
111
112 kref_init(&plane_state->refcount);
113 dc_plane_construct(dc->ctx, plane_state);
114
115 return plane_state;
116}
117
118
119
120
121
122
123
124
125
126
127
128
129const struct dc_plane_status *dc_plane_get_status(
130 const struct dc_plane_state *plane_state)
131{
132 const struct dc_plane_status *plane_status;
133 struct dc *dc;
134 int i;
135
136 if (!plane_state ||
137 !plane_state->ctx ||
138 !plane_state->ctx->dc) {
139 ASSERT(0);
140 return NULL;
141 }
142
143 plane_status = &plane_state->status;
144 dc = plane_state->ctx->dc;
145
146 if (dc->current_state == NULL)
147 return NULL;
148
149
150 for (i = 0; i < dc->res_pool->pipe_count; i++) {
151 struct pipe_ctx *pipe_ctx =
152 &dc->current_state->res_ctx.pipe_ctx[i];
153
154 if (pipe_ctx->plane_state != plane_state)
155 continue;
156
157 pipe_ctx->plane_state->status.is_flip_pending = false;
158
159 break;
160 }
161
162 for (i = 0; i < dc->res_pool->pipe_count; i++) {
163 struct pipe_ctx *pipe_ctx =
164 &dc->current_state->res_ctx.pipe_ctx[i];
165
166 if (pipe_ctx->plane_state != plane_state)
167 continue;
168
169 dc->hwss.update_pending_status(pipe_ctx);
170 }
171
172 return plane_status;
173}
174
175void dc_plane_state_retain(struct dc_plane_state *plane_state)
176{
177 kref_get(&plane_state->refcount);
178}
179
180static void dc_plane_state_free(struct kref *kref)
181{
182 struct dc_plane_state *plane_state = container_of(kref, struct dc_plane_state, refcount);
183 dc_plane_destruct(plane_state);
184 kvfree(plane_state);
185}
186
187void dc_plane_state_release(struct dc_plane_state *plane_state)
188{
189 kref_put(&plane_state->refcount, dc_plane_state_free);
190}
191
192void dc_gamma_retain(struct dc_gamma *gamma)
193{
194 kref_get(&gamma->refcount);
195}
196
197static void dc_gamma_free(struct kref *kref)
198{
199 struct dc_gamma *gamma = container_of(kref, struct dc_gamma, refcount);
200 kvfree(gamma);
201}
202
203void dc_gamma_release(struct dc_gamma **gamma)
204{
205 kref_put(&(*gamma)->refcount, dc_gamma_free);
206 *gamma = NULL;
207}
208
209struct dc_gamma *dc_create_gamma(void)
210{
211 struct dc_gamma *gamma = kvzalloc(sizeof(*gamma), GFP_KERNEL);
212
213 if (gamma == NULL)
214 goto alloc_fail;
215
216 kref_init(&gamma->refcount);
217 return gamma;
218
219alloc_fail:
220 return NULL;
221}
222
223void dc_transfer_func_retain(struct dc_transfer_func *tf)
224{
225 kref_get(&tf->refcount);
226}
227
228static void dc_transfer_func_free(struct kref *kref)
229{
230 struct dc_transfer_func *tf = container_of(kref, struct dc_transfer_func, refcount);
231 kvfree(tf);
232}
233
234void dc_transfer_func_release(struct dc_transfer_func *tf)
235{
236 kref_put(&tf->refcount, dc_transfer_func_free);
237}
238
239struct dc_transfer_func *dc_create_transfer_func(void)
240{
241 struct dc_transfer_func *tf = kvzalloc(sizeof(*tf), GFP_KERNEL);
242
243 if (tf == NULL)
244 goto alloc_fail;
245
246 kref_init(&tf->refcount);
247
248 return tf;
249
250alloc_fail:
251 return NULL;
252}
253
254static void dc_3dlut_func_free(struct kref *kref)
255{
256 struct dc_3dlut *lut = container_of(kref, struct dc_3dlut, refcount);
257
258 kvfree(lut);
259}
260
261struct dc_3dlut *dc_create_3dlut_func(void)
262{
263 struct dc_3dlut *lut = kvzalloc(sizeof(*lut), GFP_KERNEL);
264
265 if (lut == NULL)
266 goto alloc_fail;
267
268 kref_init(&lut->refcount);
269 lut->state.raw = 0;
270
271 return lut;
272
273alloc_fail:
274 return NULL;
275
276}
277
278void dc_3dlut_func_release(struct dc_3dlut *lut)
279{
280 kref_put(&lut->refcount, dc_3dlut_func_free);
281}
282
283void dc_3dlut_func_retain(struct dc_3dlut *lut)
284{
285 kref_get(&lut->refcount);
286}
287
288
289