]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/amd/display/dc/core/dc.c
drm/amd/display: Power on front end during set mode.
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / amd / display / dc / core / dc.c
CommitLineData
4562236b
HW
1/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: AMD
23 */
24
25#include "dm_services.h"
26
27#include "dc.h"
28
29#include "core_status.h"
30#include "core_types.h"
31#include "hw_sequencer.h"
32
33#include "resource.h"
34
35#include "clock_source.h"
36#include "dc_bios_types.h"
37
38#include "bandwidth_calcs.h"
39#include "bios_parser_interface.h"
40#include "include/irq_service_interface.h"
41#include "transform.h"
42#include "timing_generator.h"
43#include "virtual/virtual_link_encoder.h"
44
45#include "link_hwss.h"
46#include "link_encoder.h"
47
48#include "dc_link_ddc.h"
49#include "dm_helpers.h"
50#include "mem_input.h"
51
4562236b
HW
52/*******************************************************************************
53 * Private functions
54 ******************************************************************************/
55static void destroy_links(struct core_dc *dc)
56{
57 uint32_t i;
58
59 for (i = 0; i < dc->link_count; i++) {
60 if (NULL != dc->links[i])
61 link_destroy(&dc->links[i]);
62 }
63}
64
65static bool create_links(
66 struct core_dc *dc,
67 uint32_t num_virtual_links)
68{
69 int i;
70 int connectors_num;
71 struct dc_bios *bios = dc->ctx->dc_bios;
72
73 dc->link_count = 0;
74
75 connectors_num = bios->funcs->get_connectors_number(bios);
76
77 if (connectors_num > ENUM_ID_COUNT) {
78 dm_error(
79 "DC: Number of connectors %d exceeds maximum of %d!\n",
80 connectors_num,
81 ENUM_ID_COUNT);
82 return false;
83 }
84
85 if (connectors_num == 0 && num_virtual_links == 0) {
86 dm_error("DC: Number of connectors is zero!\n");
87 }
88
89 dm_output_to_console(
90 "DC: %s: connectors_num: physical:%d, virtual:%d\n",
91 __func__,
92 connectors_num,
93 num_virtual_links);
94
95 for (i = 0; i < connectors_num; i++) {
96 struct link_init_data link_init_params = {0};
97 struct core_link *link;
98
99 link_init_params.ctx = dc->ctx;
100 link_init_params.connector_index = i;
101 link_init_params.link_index = dc->link_count;
102 link_init_params.dc = dc;
103 link = link_create(&link_init_params);
104
105 if (link) {
106 dc->links[dc->link_count] = link;
107 link->dc = dc;
108 ++dc->link_count;
109 } else {
110 dm_error("DC: failed to create link!\n");
111 }
112 }
113
114 for (i = 0; i < num_virtual_links; i++) {
115 struct core_link *link = dm_alloc(sizeof(*link));
116 struct encoder_init_data enc_init = {0};
117
118 if (link == NULL) {
119 BREAK_TO_DEBUGGER();
120 goto failed_alloc;
121 }
122
123 link->ctx = dc->ctx;
124 link->dc = dc;
125 link->public.connector_signal = SIGNAL_TYPE_VIRTUAL;
126 link->link_id.type = OBJECT_TYPE_CONNECTOR;
127 link->link_id.id = CONNECTOR_ID_VIRTUAL;
128 link->link_id.enum_id = ENUM_ID_1;
129 link->link_enc = dm_alloc(sizeof(*link->link_enc));
130
131 enc_init.ctx = dc->ctx;
132 enc_init.channel = CHANNEL_ID_UNKNOWN;
133 enc_init.hpd_source = HPD_SOURCEID_UNKNOWN;
134 enc_init.transmitter = TRANSMITTER_UNKNOWN;
135 enc_init.connector = link->link_id;
136 enc_init.encoder.type = OBJECT_TYPE_ENCODER;
137 enc_init.encoder.id = ENCODER_ID_INTERNAL_VIRTUAL;
138 enc_init.encoder.enum_id = ENUM_ID_1;
139 virtual_link_encoder_construct(link->link_enc, &enc_init);
140
141 link->public.link_index = dc->link_count;
142 dc->links[dc->link_count] = link;
143 dc->link_count++;
144 }
145
146 return true;
147
148failed_alloc:
149 return false;
150}
151
152static bool stream_adjust_vmin_vmax(struct dc *dc,
153 const struct dc_stream **stream, int num_streams,
154 int vmin, int vmax)
155{
156 /* TODO: Support multiple streams */
157 struct core_dc *core_dc = DC_TO_CORE(dc);
158 struct core_stream *core_stream = DC_STREAM_TO_CORE(stream[0]);
159 int i = 0;
160 bool ret = false;
4562236b
HW
161
162 for (i = 0; i < MAX_PIPES; i++) {
6680b6a1 163 struct pipe_ctx *pipe = &core_dc->current_context->res_ctx.pipe_ctx[i];
4562236b 164
6680b6a1
YS
165 if (pipe->stream == core_stream && pipe->stream_enc) {
166 core_dc->hwss.set_drr(&pipe, 1, vmin, vmax);
4562236b
HW
167
168 /* build and update the info frame */
6680b6a1
YS
169 resource_build_info_frame(pipe);
170 core_dc->hwss.update_info_frame(pipe);
4562236b
HW
171
172 ret = true;
173 }
174 }
4562236b
HW
175 return ret;
176}
177
178
179static bool set_gamut_remap(struct dc *dc,
180 const struct dc_stream **stream, int num_streams)
181{
182 struct core_dc *core_dc = DC_TO_CORE(dc);
183 struct core_stream *core_stream = DC_STREAM_TO_CORE(stream[0]);
184 int i = 0;
185 bool ret = false;
186 struct pipe_ctx *pipes;
187
188 for (i = 0; i < MAX_PIPES; i++) {
189 if (core_dc->current_context->res_ctx.pipe_ctx[i].stream
190 == core_stream) {
191
192 pipes = &core_dc->current_context->res_ctx.pipe_ctx[i];
193 core_dc->hwss.set_plane_config(core_dc, pipes,
194 &core_dc->current_context->res_ctx);
195 ret = true;
196 }
197 }
198
199 return ret;
200}
201
202/* This function is not expected to fail, proper implementation of
203 * validation will prevent this from ever being called for unsupported
204 * configurations.
205 */
206static void stream_update_scaling(
207 const struct dc *dc,
208 const struct dc_stream *dc_stream,
209 const struct rect *src,
210 const struct rect *dst)
211{
212 struct core_stream *stream = DC_STREAM_TO_CORE(dc_stream);
213 struct core_dc *core_dc = DC_TO_CORE(dc);
214 struct validate_context *cur_ctx = core_dc->current_context;
ab2541b6 215 int i;
4562236b
HW
216
217 if (src)
218 stream->public.src = *src;
219
220 if (dst)
221 stream->public.dst = *dst;
222
ab2541b6
AC
223 for (i = 0; i < cur_ctx->stream_count; i++) {
224 struct core_stream *cur_stream = cur_ctx->streams[i];
4562236b 225
ab2541b6
AC
226 if (stream == cur_stream) {
227 struct dc_stream_status *status = &cur_ctx->stream_status[i];
4562236b
HW
228
229 if (status->surface_count)
ab2541b6 230 if (!dc_commit_surfaces_to_stream(
4562236b
HW
231 &core_dc->public,
232 status->surfaces,
233 status->surface_count,
ab2541b6 234 &cur_stream->public))
4562236b
HW
235 /* Need to debug validation */
236 BREAK_TO_DEBUGGER();
237
238 return;
239 }
240 }
241}
242
4562236b
HW
243static bool set_psr_enable(struct dc *dc, bool enable)
244{
245 struct core_dc *core_dc = DC_TO_CORE(dc);
246 int i;
247
248 for (i = 0; i < core_dc->link_count; i++)
249 dc_link_set_psr_enable(&core_dc->links[i]->public,
250 enable);
251
252 return true;
253}
254
255
256static bool setup_psr(struct dc *dc, const struct dc_stream *stream)
257{
258 struct core_dc *core_dc = DC_TO_CORE(dc);
259 struct core_stream *core_stream = DC_STREAM_TO_CORE(stream);
260 struct pipe_ctx *pipes;
261 int i;
262 unsigned int underlay_idx = core_dc->res_pool->underlay_pipe_index;
263
264 for (i = 0; i < core_dc->link_count; i++) {
265 if (core_stream->sink->link == core_dc->links[i])
266 dc_link_setup_psr(&core_dc->links[i]->public,
267 stream);
268 }
269
270 for (i = 0; i < MAX_PIPES; i++) {
271 if (core_dc->current_context->res_ctx.pipe_ctx[i].stream
272 == core_stream && i != underlay_idx) {
273 pipes = &core_dc->current_context->res_ctx.pipe_ctx[i];
274 core_dc->hwss.set_static_screen_control(&pipes, 1,
275 0x182);
276 }
277 }
278
279 return true;
280}
281
282static void set_drive_settings(struct dc *dc,
bf5cda33
HW
283 struct link_training_settings *lt_settings,
284 const struct dc_link *link)
4562236b
HW
285{
286 struct core_dc *core_dc = DC_TO_CORE(dc);
287 int i;
288
bf5cda33
HW
289 for (i = 0; i < core_dc->link_count; i++) {
290 if (&core_dc->links[i]->public == link)
291 break;
292 }
293
294 if (i >= core_dc->link_count)
295 ASSERT_CRITICAL(false);
296
297 dc_link_dp_set_drive_settings(&core_dc->links[i]->public, lt_settings);
4562236b
HW
298}
299
300static void perform_link_training(struct dc *dc,
301 struct dc_link_settings *link_setting,
302 bool skip_video_pattern)
303{
304 struct core_dc *core_dc = DC_TO_CORE(dc);
305 int i;
306
307 for (i = 0; i < core_dc->link_count; i++)
308 dc_link_dp_perform_link_training(
309 &core_dc->links[i]->public,
310 link_setting,
311 skip_video_pattern);
312}
313
314static void set_preferred_link_settings(struct dc *dc,
88639168
ZF
315 struct dc_link_settings *link_setting,
316 const struct dc_link *link)
4562236b 317{
88639168 318 struct core_link *core_link = DC_LINK_TO_CORE(link);
4562236b 319
88639168 320 core_link->public.verified_link_cap.lane_count =
4562236b 321 link_setting->lane_count;
88639168 322 core_link->public.verified_link_cap.link_rate =
4562236b 323 link_setting->link_rate;
73c72602 324 dp_retrain_link_dp_test(core_link, link_setting, false);
4562236b
HW
325}
326
327static void enable_hpd(const struct dc_link *link)
328{
329 dc_link_dp_enable_hpd(link);
330}
331
332static void disable_hpd(const struct dc_link *link)
333{
334 dc_link_dp_disable_hpd(link);
335}
336
337
338static void set_test_pattern(
339 const struct dc_link *link,
340 enum dp_test_pattern test_pattern,
341 const struct link_training_settings *p_link_settings,
342 const unsigned char *p_custom_pattern,
343 unsigned int cust_pattern_size)
344{
345 if (link != NULL)
346 dc_link_dp_set_test_pattern(
347 link,
348 test_pattern,
349 p_link_settings,
350 p_custom_pattern,
351 cust_pattern_size);
352}
353
354static void allocate_dc_stream_funcs(struct core_dc *core_dc)
355{
356 core_dc->public.stream_funcs.stream_update_scaling = stream_update_scaling;
357 if (core_dc->hwss.set_drr != NULL) {
358 core_dc->public.stream_funcs.adjust_vmin_vmax =
359 stream_adjust_vmin_vmax;
360 }
361
362 core_dc->public.stream_funcs.set_gamut_remap =
363 set_gamut_remap;
364
4562236b
HW
365 core_dc->public.stream_funcs.set_psr_enable =
366 set_psr_enable;
367
368 core_dc->public.stream_funcs.setup_psr =
369 setup_psr;
370
371 core_dc->public.link_funcs.set_drive_settings =
372 set_drive_settings;
373
374 core_dc->public.link_funcs.perform_link_training =
375 perform_link_training;
376
377 core_dc->public.link_funcs.set_preferred_link_settings =
378 set_preferred_link_settings;
379
380 core_dc->public.link_funcs.enable_hpd =
381 enable_hpd;
382
383 core_dc->public.link_funcs.disable_hpd =
384 disable_hpd;
385
386 core_dc->public.link_funcs.set_test_pattern =
387 set_test_pattern;
388}
389
390static void destruct(struct core_dc *dc)
391{
392 resource_validate_ctx_destruct(dc->current_context);
393
4562236b
HW
394 destroy_links(dc);
395
396 dc_destroy_resource_pool(dc);
397
398 if (dc->ctx->gpio_service)
399 dal_gpio_service_destroy(&dc->ctx->gpio_service);
400
401 if (dc->ctx->i2caux)
402 dal_i2caux_destroy(&dc->ctx->i2caux);
403
404 if (dc->ctx->created_bios)
405 dal_bios_parser_destroy(&dc->ctx->dc_bios);
406
407 if (dc->ctx->logger)
408 dal_logger_destroy(&dc->ctx->logger);
409
410 dm_free(dc->current_context);
411 dc->current_context = NULL;
5ea81b91
DL
412 dm_free(dc->temp_flip_context);
413 dc->temp_flip_context = NULL;
414 dm_free(dc->scratch_val_ctx);
415 dc->scratch_val_ctx = NULL;
4562236b
HW
416
417 dm_free(dc->ctx);
418 dc->ctx = NULL;
419}
420
421static bool construct(struct core_dc *dc,
422 const struct dc_init_data *init_params)
423{
424 struct dal_logger *logger;
425 struct dc_context *dc_ctx = dm_alloc(sizeof(*dc_ctx));
426 enum dce_version dc_version = DCE_VERSION_UNKNOWN;
427
428 if (!dc_ctx) {
429 dm_error("%s: failed to create ctx\n", __func__);
430 goto ctx_fail;
431 }
432
433 dc->current_context = dm_alloc(sizeof(*dc->current_context));
434 dc->temp_flip_context = dm_alloc(sizeof(*dc->temp_flip_context));
5ea81b91 435 dc->scratch_val_ctx = dm_alloc(sizeof(*dc->scratch_val_ctx));
4562236b
HW
436
437 if (!dc->current_context || !dc->temp_flip_context) {
438 dm_error("%s: failed to create validate ctx\n", __func__);
439 goto val_ctx_fail;
440 }
441
442 dc_ctx->cgs_device = init_params->cgs_device;
443 dc_ctx->driver_context = init_params->driver;
444 dc_ctx->dc = &dc->public;
445 dc_ctx->asic_id = init_params->asic_id;
446
447 /* Create logger */
448 logger = dal_logger_create(dc_ctx);
449
450 if (!logger) {
451 /* can *not* call logger. call base driver 'print error' */
452 dm_error("%s: failed to create Logger!\n", __func__);
453 goto logger_fail;
454 }
455 dc_ctx->logger = logger;
456 dc->ctx = dc_ctx;
457 dc->ctx->dce_environment = init_params->dce_environment;
458
459 dc_version = resource_parse_asic_id(init_params->asic_id);
460 dc->ctx->dce_version = dc_version;
461
462 /* Resource should construct all asic specific resources.
463 * This should be the only place where we need to parse the asic id
464 */
465 if (init_params->vbios_override)
466 dc_ctx->dc_bios = init_params->vbios_override;
467 else {
468 /* Create BIOS parser */
469 struct bp_init_data bp_init_data;
e8c963d6 470
4562236b
HW
471 bp_init_data.ctx = dc_ctx;
472 bp_init_data.bios = init_params->asic_id.atombios_base_address;
473
474 dc_ctx->dc_bios = dal_bios_parser_create(
475 &bp_init_data, dc_version);
476
477 if (!dc_ctx->dc_bios) {
478 ASSERT_CRITICAL(false);
479 goto bios_fail;
480 }
481
482 dc_ctx->created_bios = true;
e8c963d6 483 }
4562236b
HW
484
485 /* Create I2C AUX */
486 dc_ctx->i2caux = dal_i2caux_create(dc_ctx);
487
488 if (!dc_ctx->i2caux) {
489 ASSERT_CRITICAL(false);
490 goto failed_to_create_i2caux;
491 }
492
493 /* Create GPIO service */
494 dc_ctx->gpio_service = dal_gpio_service_create(
495 dc_version,
496 dc_ctx->dce_environment,
497 dc_ctx);
498
499 if (!dc_ctx->gpio_service) {
500 ASSERT_CRITICAL(false);
501 goto gpio_fail;
502 }
503
504 dc->res_pool = dc_create_resource_pool(
505 dc,
506 init_params->num_virtual_links,
507 dc_version,
508 init_params->asic_id);
509 if (!dc->res_pool)
510 goto create_resource_fail;
511
512 if (!create_links(dc, init_params->num_virtual_links))
513 goto create_links_fail;
514
515 allocate_dc_stream_funcs(dc);
516
517 return true;
518
519 /**** error handling here ****/
520create_links_fail:
521create_resource_fail:
522gpio_fail:
523failed_to_create_i2caux:
524bios_fail:
525logger_fail:
526val_ctx_fail:
527ctx_fail:
528 destruct(dc);
529 return false;
530}
531
532/*
533void ProgramPixelDurationV(unsigned int pixelClockInKHz )
534{
535 fixed31_32 pixel_duration = Fixed31_32(100000000, pixelClockInKHz) * 10;
536 unsigned int pixDurationInPico = round(pixel_duration);
537
538 DPG_PIPE_ARBITRATION_CONTROL1 arb_control;
539
540 arb_control.u32All = ReadReg (mmDPGV0_PIPE_ARBITRATION_CONTROL1);
541 arb_control.bits.PIXEL_DURATION = pixDurationInPico;
542 WriteReg (mmDPGV0_PIPE_ARBITRATION_CONTROL1, arb_control.u32All);
543
544 arb_control.u32All = ReadReg (mmDPGV1_PIPE_ARBITRATION_CONTROL1);
545 arb_control.bits.PIXEL_DURATION = pixDurationInPico;
546 WriteReg (mmDPGV1_PIPE_ARBITRATION_CONTROL1, arb_control.u32All);
547
548 WriteReg (mmDPGV0_PIPE_ARBITRATION_CONTROL2, 0x4000800);
549 WriteReg (mmDPGV0_REPEATER_PROGRAM, 0x11);
550
551 WriteReg (mmDPGV1_PIPE_ARBITRATION_CONTROL2, 0x4000800);
552 WriteReg (mmDPGV1_REPEATER_PROGRAM, 0x11);
553}
554*/
555
556/*******************************************************************************
557 * Public functions
558 ******************************************************************************/
559
560struct dc *dc_create(const struct dc_init_data *init_params)
561 {
562 struct core_dc *core_dc = dm_alloc(sizeof(*core_dc));
563 unsigned int full_pipe_count;
564
565 if (NULL == core_dc)
566 goto alloc_fail;
567
568 if (false == construct(core_dc, init_params))
569 goto construct_fail;
570
571 /*TODO: separate HW and SW initialization*/
572 core_dc->hwss.init_hw(core_dc);
573
574 full_pipe_count = core_dc->res_pool->pipe_count;
f0e3db90 575 if (core_dc->res_pool->underlay_pipe_index != NO_UNDERLAY_PIPE)
4562236b 576 full_pipe_count--;
ab2541b6 577 core_dc->public.caps.max_streams = min(
4562236b
HW
578 full_pipe_count,
579 core_dc->res_pool->stream_enc_count);
580
581 core_dc->public.caps.max_links = core_dc->link_count;
582 core_dc->public.caps.max_audios = core_dc->res_pool->audio_count;
583
584 core_dc->public.config = init_params->flags;
585
586 dm_logger_write(core_dc->ctx->logger, LOG_DC,
587 "Display Core initialized\n");
588
589
590 /* TODO: missing feature to be enabled */
591 core_dc->public.debug.disable_dfs_bypass = true;
592
593 return &core_dc->public;
594
595construct_fail:
596 dm_free(core_dc);
597
598alloc_fail:
599 return NULL;
600}
601
602void dc_destroy(struct dc **dc)
603{
604 struct core_dc *core_dc = DC_TO_CORE(*dc);
605 destruct(core_dc);
606 dm_free(core_dc);
607 *dc = NULL;
608}
609
610static bool is_validation_required(
611 const struct core_dc *dc,
612 const struct dc_validation_set set[],
613 int set_count)
614{
615 const struct validate_context *context = dc->current_context;
616 int i, j;
617
ab2541b6 618 if (context->stream_count != set_count)
4562236b
HW
619 return true;
620
621 for (i = 0; i < set_count; i++) {
622
ab2541b6 623 if (set[i].surface_count != context->stream_status[i].surface_count)
4562236b 624 return true;
ab2541b6 625 if (!is_stream_unchanged(DC_STREAM_TO_CORE(set[i].stream), context->streams[i]))
4562236b
HW
626 return true;
627
628 for (j = 0; j < set[i].surface_count; j++) {
629 struct dc_surface temp_surf = { 0 };
630
ab2541b6 631 temp_surf = *context->stream_status[i].surfaces[j];
4562236b
HW
632 temp_surf.clip_rect = set[i].surfaces[j]->clip_rect;
633 temp_surf.dst_rect.x = set[i].surfaces[j]->dst_rect.x;
634 temp_surf.dst_rect.y = set[i].surfaces[j]->dst_rect.y;
635
636 if (memcmp(&temp_surf, set[i].surfaces[j], sizeof(temp_surf)) != 0)
637 return true;
638 }
639 }
640
641 return false;
642}
643
644bool dc_validate_resources(
645 const struct dc *dc,
646 const struct dc_validation_set set[],
647 uint8_t set_count)
648{
649 struct core_dc *core_dc = DC_TO_CORE(dc);
650 enum dc_status result = DC_ERROR_UNEXPECTED;
651 struct validate_context *context;
652
653 if (!is_validation_required(core_dc, set, set_count))
654 return true;
655
656 context = dm_alloc(sizeof(struct validate_context));
657 if(context == NULL)
658 goto context_alloc_fail;
659
660 result = core_dc->res_pool->funcs->validate_with_context(
661 core_dc, set, set_count, context);
662
663 resource_validate_ctx_destruct(context);
664 dm_free(context);
665
666context_alloc_fail:
667 if (result != DC_OK) {
668 dm_logger_write(core_dc->ctx->logger, LOG_WARNING,
669 "%s:resource validation failed, dc_status:%d\n",
670 __func__,
671 result);
672 }
673
674 return (result == DC_OK);
675
676}
677
678bool dc_validate_guaranteed(
679 const struct dc *dc,
ab2541b6 680 const struct dc_stream *stream)
4562236b
HW
681{
682 struct core_dc *core_dc = DC_TO_CORE(dc);
683 enum dc_status result = DC_ERROR_UNEXPECTED;
684 struct validate_context *context;
685
686 context = dm_alloc(sizeof(struct validate_context));
687 if (context == NULL)
688 goto context_alloc_fail;
689
690 result = core_dc->res_pool->funcs->validate_guaranteed(
ab2541b6 691 core_dc, stream, context);
4562236b
HW
692
693 resource_validate_ctx_destruct(context);
694 dm_free(context);
695
696context_alloc_fail:
697 if (result != DC_OK) {
698 dm_logger_write(core_dc->ctx->logger, LOG_WARNING,
699 "%s:guaranteed validation failed, dc_status:%d\n",
700 __func__,
701 result);
702 }
703
704 return (result == DC_OK);
705}
706
707static void program_timing_sync(
708 struct core_dc *core_dc,
709 struct validate_context *ctx)
710{
711 int i, j;
712 int group_index = 0;
713 int pipe_count = ctx->res_ctx.pool->pipe_count;
714 struct pipe_ctx *unsynced_pipes[MAX_PIPES] = { NULL };
715
716 for (i = 0; i < pipe_count; i++) {
717 if (!ctx->res_ctx.pipe_ctx[i].stream || ctx->res_ctx.pipe_ctx[i].top_pipe)
718 continue;
719
720 unsynced_pipes[i] = &ctx->res_ctx.pipe_ctx[i];
721 }
722
723 for (i = 0; i < pipe_count; i++) {
724 int group_size = 1;
725 struct pipe_ctx *pipe_set[MAX_PIPES];
726
727 if (!unsynced_pipes[i])
728 continue;
729
730 pipe_set[0] = unsynced_pipes[i];
731 unsynced_pipes[i] = NULL;
732
733 /* Add tg to the set, search rest of the tg's for ones with
734 * same timing, add all tgs with same timing to the group
735 */
736 for (j = i + 1; j < pipe_count; j++) {
737 if (!unsynced_pipes[j])
738 continue;
739
740 if (resource_are_streams_timing_synchronizable(
741 unsynced_pipes[j]->stream,
742 pipe_set[0]->stream)) {
743 pipe_set[group_size] = unsynced_pipes[j];
744 unsynced_pipes[j] = NULL;
745 group_size++;
746 }
747 }
748
749 /* set first unblanked pipe as master */
750 for (j = 0; j < group_size; j++) {
751 struct pipe_ctx *temp;
752
753 if (!pipe_set[j]->tg->funcs->is_blanked(pipe_set[j]->tg)) {
754 if (j == 0)
755 break;
756
757 temp = pipe_set[0];
758 pipe_set[0] = pipe_set[j];
759 pipe_set[j] = temp;
760 break;
761 }
762 }
763
764 /* remove any other unblanked pipes as they have already been synced */
765 for (j = j + 1; j < group_size; j++) {
766 if (!pipe_set[j]->tg->funcs->is_blanked(pipe_set[j]->tg)) {
767 group_size--;
768 pipe_set[j] = pipe_set[group_size];
769 j--;
770 }
771 }
772
773 if (group_size > 1) {
774 core_dc->hwss.enable_timing_synchronization(
775 core_dc, group_index, group_size, pipe_set);
776 group_index++;
777 }
778 }
779}
780
ab2541b6 781static bool streams_changed(
4562236b 782 struct core_dc *dc,
ab2541b6
AC
783 const struct dc_stream *streams[],
784 uint8_t stream_count)
4562236b
HW
785{
786 uint8_t i;
787
ab2541b6 788 if (stream_count != dc->current_context->stream_count)
4562236b
HW
789 return true;
790
ab2541b6
AC
791 for (i = 0; i < dc->current_context->stream_count; i++) {
792 if (&dc->current_context->streams[i]->public != streams[i])
4562236b
HW
793 return true;
794 }
795
796 return false;
797}
798
ab2541b6 799bool dc_commit_streams(
4562236b 800 struct dc *dc,
ab2541b6
AC
801 const struct dc_stream *streams[],
802 uint8_t stream_count)
4562236b
HW
803{
804 struct core_dc *core_dc = DC_TO_CORE(dc);
805 struct dc_bios *dcb = core_dc->ctx->dc_bios;
806 enum dc_status result = DC_ERROR_UNEXPECTED;
807 struct validate_context *context;
e72f0acd 808 struct dc_validation_set set[MAX_STREAMS] = { {0, {0} } };
f196f080 809 int i, j;
4562236b 810
ab2541b6 811 if (false == streams_changed(core_dc, streams, stream_count))
4562236b
HW
812 return DC_OK;
813
ab2541b6
AC
814 dm_logger_write(core_dc->ctx->logger, LOG_DC, "%s: %d streams\n",
815 __func__, stream_count);
4562236b 816
ab2541b6
AC
817 for (i = 0; i < stream_count; i++) {
818 const struct dc_stream *stream = streams[i];
f84a8161
TC
819 const struct dc_stream_status *status = dc_stream_get_status(stream);
820 int j;
4562236b 821
ab2541b6 822 dc_stream_log(stream,
4562236b
HW
823 core_dc->ctx->logger,
824 LOG_DC);
825
ab2541b6 826 set[i].stream = stream;
f84a8161
TC
827
828 if (status) {
829 set[i].surface_count = status->surface_count;
830 for (j = 0; j < status->surface_count; j++)
831 set[i].surfaces[j] = status->surfaces[j];
832 }
4562236b
HW
833
834 }
835
836 context = dm_alloc(sizeof(struct validate_context));
837 if (context == NULL)
838 goto context_alloc_fail;
839
ab2541b6 840 result = core_dc->res_pool->funcs->validate_with_context(core_dc, set, stream_count, context);
4562236b
HW
841 if (result != DC_OK){
842 dm_logger_write(core_dc->ctx->logger, LOG_ERROR,
843 "%s: Context validation failed! dc_status:%d\n",
844 __func__,
845 result);
846 BREAK_TO_DEBUGGER();
847 resource_validate_ctx_destruct(context);
848 goto fail;
849 }
850
851 if (!dcb->funcs->is_accelerated_mode(dcb)) {
852 core_dc->hwss.enable_accelerated_mode(core_dc);
853 }
854
855 if (result == DC_OK) {
856 result = core_dc->hwss.apply_ctx_to_hw(core_dc, context);
857 }
858
859 program_timing_sync(core_dc, context);
860
ab2541b6
AC
861 for (i = 0; i < context->stream_count; i++) {
862 const struct core_sink *sink = context->streams[i]->sink;
4562236b 863
ab2541b6 864 for (j = 0; j < context->stream_status[i].surface_count; j++) {
f196f080
YS
865 struct core_surface *surface =
866 DC_SURFACE_TO_CORE(context->stream_status[i].surfaces[j]);
4562236b 867
f196f080 868 core_dc->hwss.apply_ctx_for_surface(core_dc, surface, context);
4562236b
HW
869 }
870
871 CONN_MSG_MODE(sink->link, "{%dx%d, %dx%d@%dKhz}",
ab2541b6
AC
872 context->streams[i]->public.timing.h_addressable,
873 context->streams[i]->public.timing.v_addressable,
874 context->streams[i]->public.timing.h_total,
875 context->streams[i]->public.timing.v_total,
876 context->streams[i]->public.timing.pix_clk_khz);
4562236b
HW
877 }
878
4562236b
HW
879 resource_validate_ctx_destruct(core_dc->current_context);
880
ead964f2 881 if (core_dc->temp_flip_context != core_dc->current_context) {
882 dm_free(core_dc->temp_flip_context);
883 core_dc->temp_flip_context = core_dc->current_context;
884 }
4562236b 885 core_dc->current_context = context;
ead964f2 886 memset(core_dc->temp_flip_context, 0, sizeof(*core_dc->temp_flip_context));
4562236b
HW
887
888 return (result == DC_OK);
889
890fail:
891 dm_free(context);
892
893context_alloc_fail:
894 return (result == DC_OK);
895}
896
ab2541b6 897bool dc_pre_update_surfaces_to_stream(
4562236b
HW
898 struct dc *dc,
899 const struct dc_surface *const *new_surfaces,
900 uint8_t new_surface_count,
ab2541b6 901 const struct dc_stream *dc_stream)
4562236b 902{
745cc746 903 return true;
4562236b
HW
904}
905
ab2541b6 906bool dc_post_update_surfaces_to_stream(struct dc *dc)
4562236b 907{
4562236b 908 int i;
45209ef7
DL
909 struct core_dc *core_dc = DC_TO_CORE(dc);
910 struct validate_context *context = dm_alloc(sizeof(struct validate_context));
911
912 if (!context) {
913 dm_error("%s: failed to create validate ctx\n", __func__);
914 return false;
915 }
916 resource_validate_ctx_copy_construct(core_dc->current_context, context);
4562236b
HW
917
918 post_surface_trace(dc);
919
45209ef7
DL
920 for (i = 0; i < context->res_ctx.pool->pipe_count; i++)
921 if (context->res_ctx.pipe_ctx[i].stream == NULL) {
922 context->res_ctx.pipe_ctx[i].pipe_idx = i;
4562236b 923 core_dc->hwss.power_down_front_end(
45209ef7 924 core_dc, &context->res_ctx.pipe_ctx[i]);
bb9042da 925 }
45209ef7
DL
926 if (!core_dc->res_pool->funcs->validate_bandwidth(core_dc, context)) {
927 BREAK_TO_DEBUGGER();
928 return false;
929 }
4562236b 930
cf437593 931 core_dc->hwss.set_bandwidth(core_dc, context, true);
45209ef7
DL
932
933 resource_validate_ctx_destruct(core_dc->current_context);
68339af3
LE
934 if (core_dc->current_context)
935 dm_free(core_dc->current_context);
936
45209ef7 937 core_dc->current_context = context;
4562236b
HW
938
939 return true;
940}
941
ab2541b6 942bool dc_commit_surfaces_to_stream(
4562236b
HW
943 struct dc *dc,
944 const struct dc_surface **new_surfaces,
945 uint8_t new_surface_count,
ab2541b6 946 const struct dc_stream *dc_stream)
4562236b 947{
ab2541b6
AC
948 struct dc_surface_update updates[MAX_SURFACES];
949 struct dc_flip_addrs flip_addr[MAX_SURFACES];
950 struct dc_plane_info plane_info[MAX_SURFACES];
951 struct dc_scaling_info scaling_info[MAX_SURFACES];
4562236b
HW
952 int i;
953
ab2541b6
AC
954 memset(updates, 0, sizeof(updates));
955 memset(flip_addr, 0, sizeof(flip_addr));
956 memset(plane_info, 0, sizeof(plane_info));
957 memset(scaling_info, 0, sizeof(scaling_info));
958
4562236b
HW
959 for (i = 0; i < new_surface_count; i++) {
960 updates[i].surface = new_surfaces[i];
89e89630
AZ
961 updates[i].gamma =
962 (struct dc_gamma *)new_surfaces[i]->gamma_correction;
4562236b
HW
963 flip_addr[i].address = new_surfaces[i]->address;
964 flip_addr[i].flip_immediate = new_surfaces[i]->flip_immediate;
965 plane_info[i].color_space = new_surfaces[i]->color_space;
966 plane_info[i].format = new_surfaces[i]->format;
967 plane_info[i].plane_size = new_surfaces[i]->plane_size;
968 plane_info[i].rotation = new_surfaces[i]->rotation;
969 plane_info[i].horizontal_mirror = new_surfaces[i]->horizontal_mirror;
970 plane_info[i].stereo_format = new_surfaces[i]->stereo_format;
971 plane_info[i].tiling_info = new_surfaces[i]->tiling_info;
972 plane_info[i].visible = new_surfaces[i]->visible;
5c1879b6 973 plane_info[i].dcc = new_surfaces[i]->dcc;
4562236b
HW
974 scaling_info[i].scaling_quality = new_surfaces[i]->scaling_quality;
975 scaling_info[i].src_rect = new_surfaces[i]->src_rect;
976 scaling_info[i].dst_rect = new_surfaces[i]->dst_rect;
977 scaling_info[i].clip_rect = new_surfaces[i]->clip_rect;
978
979 updates[i].flip_addr = &flip_addr[i];
980 updates[i].plane_info = &plane_info[i];
981 updates[i].scaling_info = &scaling_info[i];
982 }
ab2541b6 983 dc_update_surfaces_for_stream(dc, updates, new_surface_count, dc_stream);
4562236b 984
ab2541b6 985 return dc_post_update_surfaces_to_stream(dc);
4562236b
HW
986}
987
e72f0acd
TC
988static bool is_surface_in_context(
989 const struct validate_context *context,
990 const struct dc_surface *surface)
4562236b 991{
e72f0acd 992 int j;
4562236b 993
e72f0acd
TC
994 for (j = 0; j < context->res_ctx.pool->pipe_count; j++) {
995 const struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j];
4562236b 996
e72f0acd
TC
997 if (surface == &pipe_ctx->surface->public) {
998 return true;
999 }
1000 }
4562236b 1001
e72f0acd
TC
1002 return false;
1003}
4562236b 1004
5869b0f6
LE
1005static unsigned int pixel_format_to_bpp(enum surface_pixel_format format)
1006{
1007 switch (format) {
1008 case SURFACE_PIXEL_FORMAT_GRPH_ARGB1555:
1009 case SURFACE_PIXEL_FORMAT_GRPH_RGB565:
1010 return 16;
1011 case SURFACE_PIXEL_FORMAT_GRPH_ARGB8888:
1012 case SURFACE_PIXEL_FORMAT_GRPH_ABGR8888:
1013 case SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010:
1014 case SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010:
1015 return 32;
1016 case SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616:
1017 case SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F:
1018 case SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F:
1019 return 64;
1020 default:
1021 ASSERT_CRITICAL(false);
1022 return -1;
1023 }
1024}
1025
1026static enum surface_update_type get_plane_info_update_type(
1027 const struct dc_surface_update *u)
1028{
1029 struct dc_plane_info temp_plane_info = { { { { 0 } } } };
1030
1031 if (!u->plane_info)
1032 return UPDATE_TYPE_FAST;
1033
1034 /* Copy all parameters that will cause a full update
1035 * from current surface, the rest of the parameters
1036 * from provided plane configuration.
1037 * Perform memory compare and special validation
1038 * for those that can cause fast/medium updates
1039 */
1040
1041 /* Full update parameters */
1042 temp_plane_info.color_space = u->surface->color_space;
1043 temp_plane_info.dcc = u->surface->dcc;
1044 temp_plane_info.horizontal_mirror = u->surface->horizontal_mirror;
1045 temp_plane_info.plane_size = u->surface->plane_size;
1046 temp_plane_info.rotation = u->surface->rotation;
1047 temp_plane_info.stereo_format = u->surface->stereo_format;
1048 temp_plane_info.tiling_info = u->surface->tiling_info;
1049 temp_plane_info.visible = u->surface->visible;
1050
1051 /* Special Validation parameters */
1052 temp_plane_info.format = u->plane_info->format;
1053
1054 if (memcmp(u->plane_info, &temp_plane_info,
1055 sizeof(struct dc_plane_info)) != 0)
1056 return UPDATE_TYPE_FULL;
1057
1058 if (pixel_format_to_bpp(u->plane_info->format) !=
1059 pixel_format_to_bpp(u->surface->format)) {
1060 return UPDATE_TYPE_FULL;
1061 } else {
1062 return UPDATE_TYPE_MED;
1063 }
1064}
1065
1066static enum surface_update_type get_scaling_info_update_type(
1067 const struct dc_surface_update *u)
1068{
1069 struct dc_scaling_info temp_scaling_info = { { 0 } };
1070
1071 if (!u->scaling_info)
1072 return UPDATE_TYPE_FAST;
1073
1074 /* Copy all parameters that will cause a full update
1075 * from current surface, the rest of the parameters
1076 * from provided plane configuration.
1077 * Perform memory compare and special validation
1078 * for those that can cause fast/medium updates
1079 */
1080
1081 /* Full Update Parameters */
1082 temp_scaling_info.dst_rect = u->surface->dst_rect;
1083 temp_scaling_info.src_rect = u->surface->src_rect;
1084 temp_scaling_info.scaling_quality = u->surface->scaling_quality;
1085
1086 /* Special validation required */
1087 temp_scaling_info.clip_rect = u->scaling_info->clip_rect;
1088
1089 if (memcmp(u->scaling_info, &temp_scaling_info,
1090 sizeof(struct dc_scaling_info)) != 0)
1091 return UPDATE_TYPE_FULL;
1092
1093 /* Check Clip rectangles if not equal
1094 * difference is in offsets == > UPDATE_TYPE_FAST
1095 * difference is in dimensions == > UPDATE_TYPE_FULL
1096 */
1097 if (memcmp(&u->scaling_info->clip_rect,
1098 &u->surface->clip_rect, sizeof(struct rect)) != 0) {
1099 if ((u->scaling_info->clip_rect.height ==
1100 u->surface->clip_rect.height) &&
1101 (u->scaling_info->clip_rect.width ==
1102 u->surface->clip_rect.width)) {
1103 return UPDATE_TYPE_FAST;
1104 } else {
1105 return UPDATE_TYPE_FULL;
1106 }
1107 }
1108
1109 return UPDATE_TYPE_FAST;
1110}
4562236b 1111
e72f0acd
TC
1112static enum surface_update_type det_surface_update(
1113 const struct core_dc *dc,
1114 const struct dc_surface_update *u)
1115{
1116 const struct validate_context *context = dc->current_context;
5869b0f6
LE
1117 enum surface_update_type type = UPDATE_TYPE_FAST;
1118 enum surface_update_type overall_type = UPDATE_TYPE_FAST;
4562236b 1119
e72f0acd
TC
1120 if (!is_surface_in_context(context, u->surface))
1121 return UPDATE_TYPE_FULL;
4562236b 1122
5869b0f6
LE
1123 type = get_plane_info_update_type(u);
1124 if (overall_type < type)
1125 overall_type = type;
1126
1127 type = get_scaling_info_update_type(u);
1128 if (overall_type < type)
1129 overall_type = type;
1130
e72f0acd
TC
1131 if (u->in_transfer_func ||
1132 u->out_transfer_func ||
5869b0f6
LE
1133 u->hdr_static_metadata) {
1134 if (overall_type < UPDATE_TYPE_MED)
1135 overall_type = UPDATE_TYPE_MED;
1136 }
1c4e6bce 1137
5869b0f6 1138 return overall_type;
e72f0acd 1139}
4562236b 1140
5869b0f6
LE
1141enum surface_update_type dc_check_update_surfaces_for_stream(
1142 struct dc *dc,
e72f0acd
TC
1143 struct dc_surface_update *updates,
1144 int surface_count,
ee8f63e1 1145 struct dc_stream_update *stream_update,
e72f0acd
TC
1146 const struct dc_stream_status *stream_status)
1147{
5869b0f6 1148 struct core_dc *core_dc = DC_TO_CORE(dc);
e72f0acd
TC
1149 int i;
1150 enum surface_update_type overall_type = UPDATE_TYPE_FAST;
1151
1152 if (stream_status->surface_count != surface_count)
1153 return UPDATE_TYPE_FULL;
1154
ee8f63e1
LE
1155 if (stream_update)
1156 return UPDATE_TYPE_FULL;
1157
e72f0acd
TC
1158 for (i = 0 ; i < surface_count; i++) {
1159 enum surface_update_type type =
5869b0f6 1160 det_surface_update(core_dc, &updates[i]);
e72f0acd
TC
1161
1162 if (type == UPDATE_TYPE_FULL)
1163 return type;
1c4e6bce 1164
e72f0acd
TC
1165 if (overall_type < type)
1166 overall_type = type;
4562236b
HW
1167 }
1168
e72f0acd
TC
1169 return overall_type;
1170}
4562236b 1171
ee8f63e1 1172void dc_update_surfaces_for_stream(struct dc *dc,
a783e7b5 1173 struct dc_surface_update *surface_updates, int surface_count,
ee8f63e1 1174 const struct dc_stream *dc_stream)
a783e7b5 1175{
ee8f63e1
LE
1176 dc_update_surfaces_and_stream(dc, surface_updates, surface_count,
1177 dc_stream, NULL);
a783e7b5
LE
1178}
1179
e72f0acd 1180enum surface_update_type update_surface_trace_level = UPDATE_TYPE_FULL;
4562236b 1181
ee8f63e1
LE
1182void dc_update_surfaces_and_stream(struct dc *dc,
1183 struct dc_surface_update *srf_updates, int surface_count,
1184 const struct dc_stream *dc_stream,
1185 struct dc_stream_update *stream_update)
e72f0acd
TC
1186{
1187 struct core_dc *core_dc = DC_TO_CORE(dc);
1188 struct validate_context *context;
1189 int i, j;
e72f0acd
TC
1190 enum surface_update_type update_type;
1191 const struct dc_stream_status *stream_status;
ee8f63e1 1192 struct core_stream *stream = DC_STREAM_TO_CORE(dc_stream);
e72f0acd
TC
1193
1194 stream_status = dc_stream_get_status(dc_stream);
1195 ASSERT(stream_status);
1196 if (!stream_status)
1197 return; /* Cannot commit surface to stream that is not committed */
1198
5869b0f6 1199 update_type = dc_check_update_surfaces_for_stream(
ee8f63e1 1200 dc, srf_updates, surface_count, stream_update, stream_status);
4562236b 1201
e72f0acd 1202 if (update_type >= update_surface_trace_level)
ee8f63e1 1203 update_surface_trace(dc, srf_updates, surface_count);
e72f0acd
TC
1204
1205 if (update_type >= UPDATE_TYPE_FULL) {
1206 const struct dc_surface *new_surfaces[MAX_SURFACES] = { 0 };
1207
1208 for (i = 0; i < surface_count; i++)
ee8f63e1 1209 new_surfaces[i] = srf_updates[i].surface;
e72f0acd
TC
1210
1211 /* initialize scratch memory for building context */
1212 context = core_dc->temp_flip_context;
1213 resource_validate_ctx_copy_construct(
1214 core_dc->current_context, context);
1215
1216 /* add surface to context */
4562236b 1217 if (!resource_attach_surfaces_to_context(
ab2541b6 1218 new_surfaces, surface_count, dc_stream, context)) {
4562236b
HW
1219 BREAK_TO_DEBUGGER();
1220 return;
1221 }
e72f0acd
TC
1222 } else {
1223 context = core_dc->current_context;
4562236b 1224 }
ee8f63e1
LE
1225
1226 /* update current stream with the new updates */
1227 if (stream_update) {
1228 stream->public.src = stream_update->src;
1229 stream->public.dst = stream_update->dst;
1230 }
1231
1232 /* save update parameters into surface */
4562236b 1233 for (i = 0; i < surface_count; i++) {
ee8f63e1
LE
1234 struct core_surface *surface =
1235 DC_SURFACE_TO_CORE(srf_updates[i].surface);
4562236b 1236
ee8f63e1
LE
1237 if (srf_updates[i].flip_addr) {
1238 surface->public.address = srf_updates[i].flip_addr->address;
e72f0acd 1239 surface->public.flip_immediate =
ee8f63e1 1240 srf_updates[i].flip_addr->flip_immediate;
e72f0acd
TC
1241 }
1242
ee8f63e1 1243 if (srf_updates[i].scaling_info) {
e72f0acd 1244 surface->public.scaling_quality =
ee8f63e1 1245 srf_updates[i].scaling_info->scaling_quality;
e72f0acd 1246 surface->public.dst_rect =
ee8f63e1 1247 srf_updates[i].scaling_info->dst_rect;
e72f0acd 1248 surface->public.src_rect =
ee8f63e1 1249 srf_updates[i].scaling_info->src_rect;
e72f0acd 1250 surface->public.clip_rect =
ee8f63e1 1251 srf_updates[i].scaling_info->clip_rect;
e72f0acd
TC
1252 }
1253
ee8f63e1 1254 if (srf_updates[i].plane_info) {
e72f0acd 1255 surface->public.color_space =
ee8f63e1 1256 srf_updates[i].plane_info->color_space;
e72f0acd 1257 surface->public.format =
ee8f63e1 1258 srf_updates[i].plane_info->format;
e72f0acd 1259 surface->public.plane_size =
ee8f63e1 1260 srf_updates[i].plane_info->plane_size;
e72f0acd 1261 surface->public.rotation =
ee8f63e1 1262 srf_updates[i].plane_info->rotation;
e72f0acd 1263 surface->public.horizontal_mirror =
ee8f63e1 1264 srf_updates[i].plane_info->horizontal_mirror;
e72f0acd 1265 surface->public.stereo_format =
ee8f63e1 1266 srf_updates[i].plane_info->stereo_format;
e72f0acd 1267 surface->public.tiling_info =
ee8f63e1 1268 srf_updates[i].plane_info->tiling_info;
e72f0acd 1269 surface->public.visible =
ee8f63e1 1270 srf_updates[i].plane_info->visible;
e72f0acd 1271 surface->public.dcc =
ee8f63e1 1272 srf_updates[i].plane_info->dcc;
e72f0acd
TC
1273 }
1274
1275 /* not sure if we still need this */
ed151940
YS
1276 if (update_type == UPDATE_TYPE_FULL) {
1277 for (j = 0; j < context->res_ctx.pool->pipe_count; j++) {
1278 struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j];
4562236b 1279
ed151940
YS
1280 if (pipe_ctx->surface != surface)
1281 continue;
4562236b 1282
b2d0a103 1283 resource_build_scaling_params(pipe_ctx);
4562236b 1284 }
e72f0acd 1285 }
89e89630 1286
ee8f63e1
LE
1287 if (srf_updates[i].gamma &&
1288 srf_updates[i].gamma != surface->public.gamma_correction) {
e72f0acd
TC
1289 if (surface->public.gamma_correction != NULL)
1290 dc_gamma_release(&surface->public.
1291 gamma_correction);
89e89630 1292
ee8f63e1 1293 dc_gamma_retain(srf_updates[i].gamma);
e72f0acd 1294 surface->public.gamma_correction =
ee8f63e1 1295 srf_updates[i].gamma;
e72f0acd 1296 }
fb735a9f 1297
ee8f63e1
LE
1298 if (srf_updates[i].in_transfer_func &&
1299 srf_updates[i].in_transfer_func != surface->public.in_transfer_func) {
e72f0acd
TC
1300 if (surface->public.in_transfer_func != NULL)
1301 dc_transfer_func_release(
1302 surface->public.
1303 in_transfer_func);
1304
1305 dc_transfer_func_retain(
ee8f63e1 1306 srf_updates[i].in_transfer_func);
e72f0acd 1307 surface->public.in_transfer_func =
ee8f63e1 1308 srf_updates[i].in_transfer_func;
e72f0acd 1309 }
fb735a9f 1310
ee8f63e1
LE
1311 if (srf_updates[i].out_transfer_func &&
1312 srf_updates[i].out_transfer_func != dc_stream->out_transfer_func) {
e72f0acd
TC
1313 if (dc_stream->out_transfer_func != NULL)
1314 dc_transfer_func_release(dc_stream->out_transfer_func);
ee8f63e1
LE
1315 dc_transfer_func_retain(srf_updates[i].out_transfer_func);
1316 stream->public.out_transfer_func = srf_updates[i].out_transfer_func;
4562236b 1317 }
ee8f63e1 1318 if (srf_updates[i].hdr_static_metadata)
e72f0acd 1319 surface->public.hdr_static_ctx =
ee8f63e1 1320 *(srf_updates[i].hdr_static_metadata);
4562236b
HW
1321 }
1322
745cc746
DL
1323 if (update_type == UPDATE_TYPE_FULL) {
1324 if (!core_dc->res_pool->funcs->validate_bandwidth(core_dc, context)) {
1325 BREAK_TO_DEBUGGER();
1326 return;
1327 } else
1328 core_dc->hwss.set_bandwidth(core_dc, context, false);
45209ef7 1329 }
e72f0acd
TC
1330
1331 if (!surface_count) /* reset */
1332 core_dc->hwss.apply_ctx_for_surface(core_dc, NULL, context);
1333
00f02019 1334 /* Lock pipes for provided surfaces */
4562236b 1335 for (i = 0; i < surface_count; i++) {
ee8f63e1 1336 struct core_surface *surface = DC_SURFACE_TO_CORE(srf_updates[i].surface);
4562236b 1337
f0828115
CL
1338 for (j = 0; j < context->res_ctx.pool->pipe_count; j++) {
1339 struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j];
92a65e32 1340
f0828115
CL
1341 if (pipe_ctx->surface != surface)
1342 continue;
d98e5cc2 1343 if (!pipe_ctx->tg->funcs->is_blanked(pipe_ctx->tg)) {
f0828115
CL
1344 core_dc->hwss.pipe_control_lock(
1345 core_dc,
1346 pipe_ctx,
e72f0acd
TC
1347 true);
1348 }
00f02019
LE
1349 }
1350 }
1351
1352 /* Perform requested Updates */
1353 for (i = 0; i < surface_count; i++) {
1354 struct core_surface *surface = DC_SURFACE_TO_CORE(srf_updates[i].surface);
1355
1356 if (update_type >= UPDATE_TYPE_MED) {
1357 core_dc->hwss.apply_ctx_for_surface(
1358 core_dc, surface, context);
1359 context_timing_trace(dc, &context->res_ctx);
1360 }
1361
1362 for (j = 0; j < context->res_ctx.pool->pipe_count; j++) {
1363 struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j];
1364 struct pipe_ctx *cur_pipe_ctx;
1365 bool is_new_pipe_surface = true;
1366
1367 if (pipe_ctx->surface != surface)
1368 continue;
4562236b 1369
ee8f63e1 1370 if (srf_updates[i].flip_addr)
e72f0acd 1371 core_dc->hwss.update_plane_addr(core_dc, pipe_ctx);
4562236b 1372
e72f0acd
TC
1373 if (update_type == UPDATE_TYPE_FAST)
1374 continue;
1375
1376 cur_pipe_ctx = &core_dc->current_context->res_ctx.pipe_ctx[j];
1377 if (cur_pipe_ctx->surface == pipe_ctx->surface)
1378 is_new_pipe_surface = false;
1379
e72f0acd 1380 if (is_new_pipe_surface ||
ee8f63e1 1381 srf_updates[i].in_transfer_func)
90e508ba
AK
1382 core_dc->hwss.set_input_transfer_func(
1383 pipe_ctx, pipe_ctx->surface);
1384
e72f0acd 1385 if (is_new_pipe_surface ||
ee8f63e1 1386 srf_updates[i].out_transfer_func)
90e508ba
AK
1387 core_dc->hwss.set_output_transfer_func(
1388 pipe_ctx,
1389 pipe_ctx->surface,
1390 pipe_ctx->stream);
1391
ee8f63e1 1392 if (srf_updates[i].hdr_static_metadata) {
fcd2f4bf
AZ
1393 resource_build_info_frame(pipe_ctx);
1394 core_dc->hwss.update_info_frame(pipe_ctx);
1395 }
9474980a 1396 }
4562236b
HW
1397 }
1398
00f02019 1399 /* Unlock pipes */
4562236b
HW
1400 for (i = context->res_ctx.pool->pipe_count - 1; i >= 0; i--) {
1401 struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
1402
1403 for (j = 0; j < surface_count; j++) {
ee8f63e1 1404 if (srf_updates[j].surface == &pipe_ctx->surface->public) {
4562236b
HW
1405 if (!pipe_ctx->tg->funcs->is_blanked(pipe_ctx->tg)) {
1406 core_dc->hwss.pipe_control_lock(
f0828115
CL
1407 core_dc,
1408 pipe_ctx,
4562236b
HW
1409 false);
1410 }
1411 break;
1412 }
1413 }
1414 }
1415
e72f0acd
TC
1416 if (core_dc->current_context != context) {
1417 resource_validate_ctx_destruct(core_dc->current_context);
1418 core_dc->temp_flip_context = core_dc->current_context;
1419
1420 core_dc->current_context = context;
1421 }
4562236b
HW
1422}
1423
ab2541b6 1424uint8_t dc_get_current_stream_count(const struct dc *dc)
4562236b
HW
1425{
1426 struct core_dc *core_dc = DC_TO_CORE(dc);
ab2541b6 1427 return core_dc->current_context->stream_count;
4562236b
HW
1428}
1429
ab2541b6 1430struct dc_stream *dc_get_stream_at_index(const struct dc *dc, uint8_t i)
4562236b
HW
1431{
1432 struct core_dc *core_dc = DC_TO_CORE(dc);
ab2541b6
AC
1433 if (i < core_dc->current_context->stream_count)
1434 return &(core_dc->current_context->streams[i]->public);
4562236b
HW
1435 return NULL;
1436}
1437
1438const struct dc_link *dc_get_link_at_index(const struct dc *dc, uint32_t link_index)
1439{
1440 struct core_dc *core_dc = DC_TO_CORE(dc);
1441 return &core_dc->links[link_index]->public;
1442}
1443
1444const struct graphics_object_id dc_get_link_id_at_index(
1445 struct dc *dc, uint32_t link_index)
1446{
1447 struct core_dc *core_dc = DC_TO_CORE(dc);
1448 return core_dc->links[link_index]->link_id;
1449}
1450
1451const struct ddc_service *dc_get_ddc_at_index(
1452 struct dc *dc, uint32_t link_index)
1453{
1454 struct core_dc *core_dc = DC_TO_CORE(dc);
1455 return core_dc->links[link_index]->ddc;
1456}
1457
1458enum dc_irq_source dc_get_hpd_irq_source_at_index(
1459 struct dc *dc, uint32_t link_index)
1460{
1461 struct core_dc *core_dc = DC_TO_CORE(dc);
1462 return core_dc->links[link_index]->public.irq_source_hpd;
1463}
1464
1465const struct audio **dc_get_audios(struct dc *dc)
1466{
1467 struct core_dc *core_dc = DC_TO_CORE(dc);
1468 return (const struct audio **)core_dc->res_pool->audios;
1469}
1470
1471void dc_flip_surface_addrs(
1472 struct dc *dc,
1473 const struct dc_surface *const surfaces[],
1474 struct dc_flip_addrs flip_addrs[],
1475 uint32_t count)
1476{
1477 struct core_dc *core_dc = DC_TO_CORE(dc);
1478 int i, j;
1479
1480 for (i = 0; i < count; i++) {
1481 struct core_surface *surface = DC_SURFACE_TO_CORE(surfaces[i]);
1482
1483 surface->public.address = flip_addrs[i].address;
1484 surface->public.flip_immediate = flip_addrs[i].flip_immediate;
1485
1486 for (j = 0; j < core_dc->res_pool->pipe_count; j++) {
1487 struct pipe_ctx *pipe_ctx = &core_dc->current_context->res_ctx.pipe_ctx[j];
1488
1489 if (pipe_ctx->surface != surface)
1490 continue;
1491
1492 core_dc->hwss.update_plane_addr(core_dc, pipe_ctx);
1493 }
1494 }
1495}
1496
1497enum dc_irq_source dc_interrupt_to_irq_source(
1498 struct dc *dc,
1499 uint32_t src_id,
1500 uint32_t ext_id)
1501{
1502 struct core_dc *core_dc = DC_TO_CORE(dc);
1503 return dal_irq_service_to_irq_source(core_dc->res_pool->irqs, src_id, ext_id);
1504}
1505
1506void dc_interrupt_set(const struct dc *dc, enum dc_irq_source src, bool enable)
1507{
1508 struct core_dc *core_dc = DC_TO_CORE(dc);
1509 dal_irq_service_set(core_dc->res_pool->irqs, src, enable);
1510}
1511
1512void dc_interrupt_ack(struct dc *dc, enum dc_irq_source src)
1513{
1514 struct core_dc *core_dc = DC_TO_CORE(dc);
1515 dal_irq_service_ack(core_dc->res_pool->irqs, src);
1516}
1517
1518void dc_set_power_state(
1519 struct dc *dc,
a3621485 1520 enum dc_acpi_cm_power_state power_state)
4562236b
HW
1521{
1522 struct core_dc *core_dc = DC_TO_CORE(dc);
1523
4562236b
HW
1524 switch (power_state) {
1525 case DC_ACPI_CM_POWER_STATE_D0:
1526 core_dc->hwss.init_hw(core_dc);
1527 break;
1528 default:
4562236b
HW
1529
1530 core_dc->hwss.power_down(core_dc);
1531
1532 /* Zero out the current context so that on resume we start with
1533 * clean state, and dc hw programming optimizations will not
1534 * cause any trouble.
1535 */
1536 memset(core_dc->current_context, 0,
1537 sizeof(*core_dc->current_context));
1538
1539 core_dc->current_context->res_ctx.pool = core_dc->res_pool;
1540
1541 break;
1542 }
1543
1544}
1545
1546void dc_resume(const struct dc *dc)
1547{
1548 struct core_dc *core_dc = DC_TO_CORE(dc);
1549
1550 uint32_t i;
1551
1552 for (i = 0; i < core_dc->link_count; i++)
1553 core_link_resume(core_dc->links[i]);
1554}
1555
1556bool dc_read_dpcd(
1557 struct dc *dc,
1558 uint32_t link_index,
1559 uint32_t address,
1560 uint8_t *data,
1561 uint32_t size)
1562{
1563 struct core_dc *core_dc = DC_TO_CORE(dc);
1564
1565 struct core_link *link = core_dc->links[link_index];
1566 enum ddc_result r = dal_ddc_service_read_dpcd_data(
1567 link->ddc,
1568 address,
1569 data,
1570 size);
1571 return r == DDC_RESULT_SUCESSFULL;
1572}
1573
2b230ea3
ZF
1574bool dc_query_ddc_data(
1575 struct dc *dc,
1576 uint32_t link_index,
1577 uint32_t address,
1578 uint8_t *write_buf,
1579 uint32_t write_size,
1580 uint8_t *read_buf,
1581 uint32_t read_size) {
1582
1583 struct core_dc *core_dc = DC_TO_CORE(dc);
1584
1585 struct core_link *link = core_dc->links[link_index];
1586
1587 bool result = dal_ddc_service_query_ddc_data(
1588 link->ddc,
1589 address,
1590 write_buf,
1591 write_size,
1592 read_buf,
1593 read_size);
1594
1595 return result;
1596}
1597
1598
4562236b
HW
1599bool dc_write_dpcd(
1600 struct dc *dc,
1601 uint32_t link_index,
1602 uint32_t address,
1603 const uint8_t *data,
1604 uint32_t size)
1605{
1606 struct core_dc *core_dc = DC_TO_CORE(dc);
1607
1608 struct core_link *link = core_dc->links[link_index];
1609
1610 enum ddc_result r = dal_ddc_service_write_dpcd_data(
1611 link->ddc,
1612 address,
1613 data,
1614 size);
1615 return r == DDC_RESULT_SUCESSFULL;
1616}
1617
1618bool dc_submit_i2c(
1619 struct dc *dc,
1620 uint32_t link_index,
1621 struct i2c_command *cmd)
1622{
1623 struct core_dc *core_dc = DC_TO_CORE(dc);
1624
1625 struct core_link *link = core_dc->links[link_index];
1626 struct ddc_service *ddc = link->ddc;
1627
1628 return dal_i2caux_submit_i2c_command(
1629 ddc->ctx->i2caux,
1630 ddc->ddc_pin,
1631 cmd);
1632}
1633
1634static bool link_add_remote_sink_helper(struct core_link *core_link, struct dc_sink *sink)
1635{
1636 struct dc_link *dc_link = &core_link->public;
1637
1638 if (dc_link->sink_count >= MAX_SINKS_PER_LINK) {
1639 BREAK_TO_DEBUGGER();
1640 return false;
1641 }
1642
1643 dc_sink_retain(sink);
1644
1645 dc_link->remote_sinks[dc_link->sink_count] = sink;
1646 dc_link->sink_count++;
1647
1648 return true;
1649}
1650
1651struct dc_sink *dc_link_add_remote_sink(
1652 const struct dc_link *link,
1653 const uint8_t *edid,
1654 int len,
1655 struct dc_sink_init_data *init_data)
1656{
1657 struct dc_sink *dc_sink;
1658 enum dc_edid_status edid_status;
1659 struct core_link *core_link = DC_LINK_TO_LINK(link);
1660
1661 if (len > MAX_EDID_BUFFER_SIZE) {
1662 dm_error("Max EDID buffer size breached!\n");
1663 return NULL;
1664 }
1665
1666 if (!init_data) {
1667 BREAK_TO_DEBUGGER();
1668 return NULL;
1669 }
1670
1671 if (!init_data->link) {
1672 BREAK_TO_DEBUGGER();
1673 return NULL;
1674 }
1675
1676 dc_sink = dc_sink_create(init_data);
1677
1678 if (!dc_sink)
1679 return NULL;
1680
1681 memmove(dc_sink->dc_edid.raw_edid, edid, len);
1682 dc_sink->dc_edid.length = len;
1683
1684 if (!link_add_remote_sink_helper(
1685 core_link,
1686 dc_sink))
1687 goto fail_add_sink;
1688
1689 edid_status = dm_helpers_parse_edid_caps(
1690 core_link->ctx,
1691 &dc_sink->dc_edid,
1692 &dc_sink->edid_caps);
1693
1694 if (edid_status != EDID_OK)
1695 goto fail;
1696
1697 return dc_sink;
1698fail:
1699 dc_link_remove_remote_sink(link, dc_sink);
1700fail_add_sink:
1701 dc_sink_release(dc_sink);
1702 return NULL;
1703}
1704
1705void dc_link_set_sink(const struct dc_link *link, struct dc_sink *sink)
1706{
1707 struct core_link *core_link = DC_LINK_TO_LINK(link);
1708 struct dc_link *dc_link = &core_link->public;
1709
1710 dc_link->local_sink = sink;
1711
1712 if (sink == NULL) {
1713 dc_link->type = dc_connection_none;
1714 } else {
1715 dc_link->type = dc_connection_single;
1716 }
1717}
1718
1719void dc_link_remove_remote_sink(const struct dc_link *link, const struct dc_sink *sink)
1720{
1721 int i;
1722 struct core_link *core_link = DC_LINK_TO_LINK(link);
1723 struct dc_link *dc_link = &core_link->public;
1724
1725 if (!link->sink_count) {
1726 BREAK_TO_DEBUGGER();
1727 return;
1728 }
1729
1730 for (i = 0; i < dc_link->sink_count; i++) {
1731 if (dc_link->remote_sinks[i] == sink) {
1732 dc_sink_release(sink);
1733 dc_link->remote_sinks[i] = NULL;
1734
1735 /* shrink array to remove empty place */
1736 while (i < dc_link->sink_count - 1) {
1737 dc_link->remote_sinks[i] = dc_link->remote_sinks[i+1];
1738 i++;
1739 }
1740
1741 dc_link->sink_count--;
1742 return;
1743 }
1744 }
1745}
1746
2c8ad2d5
AD
1747bool dc_init_dchub(struct dc *dc, struct dchub_init_data *dh_data)
1748{
1749 int i;
1750 struct core_dc *core_dc = DC_TO_CORE(dc);
1751 struct mem_input *mi = NULL;
1752
1753 for (i = 0; i < core_dc->res_pool->pipe_count; i++) {
1754 if (core_dc->res_pool->mis[i] != NULL) {
1755 mi = core_dc->res_pool->mis[i];
1756 break;
1757 }
1758 }
1759 if (mi == NULL) {
1760 dm_error("no mem_input!\n");
1761 return false;
1762 }
1763
1764 if (mi->funcs->mem_input_update_dchub)
1765 mi->funcs->mem_input_update_dchub(mi, dh_data);
1766 else
1767 ASSERT(mi->funcs->mem_input_update_dchub);
1768
1769
1770 return true;
1771
1772}
2c8ad2d5 1773