1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * (C) COPYRIGHT 2018 ARM Limited. All rights reserved. 4 * Author: James.Qian.Wang <james.qian.wang@arm.com> 5 * 6 */ 7 #include <linux/clk.h> 8 #include <linux/pm_runtime.h> 9 #include <linux/spinlock.h> 10 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_print.h> 16 #include <drm/drm_vblank.h> 17 18 #include "komeda_dev.h" 19 #include "komeda_kms.h" 20 21 void komeda_crtc_get_color_config(struct drm_crtc_state *crtc_st, 22 u32 *color_depths, u32 *color_formats) 23 { 24 struct drm_connector *conn; 25 struct drm_connector_state *conn_st; 26 u32 conn_color_formats = ~0u; 27 int i, min_bpc = 31, conn_bpc = 0; 28 29 for_each_new_connector_in_state(crtc_st->state, conn, conn_st, i) { 30 if (conn_st->crtc != crtc_st->crtc) 31 continue; 32 33 conn_bpc = conn->display_info.bpc ? conn->display_info.bpc : 8; 34 conn_color_formats &= conn->display_info.color_formats; 35 36 if (conn_bpc < min_bpc) 37 min_bpc = conn_bpc; 38 } 39 40 /* connector doesn't config any color_format, use RGB444 as default */ 41 if (!conn_color_formats) 42 conn_color_formats = DRM_COLOR_FORMAT_RGB444; 43 44 *color_depths = GENMASK(min_bpc, 0); 45 *color_formats = conn_color_formats; 46 } 47 48 static void komeda_crtc_update_clock_ratio(struct komeda_crtc_state *kcrtc_st) 49 { 50 u64 pxlclk, aclk; 51 52 if (!kcrtc_st->base.active) { 53 kcrtc_st->clock_ratio = 0; 54 return; 55 } 56 57 pxlclk = kcrtc_st->base.adjusted_mode.crtc_clock * 1000ULL; 58 aclk = komeda_crtc_get_aclk(kcrtc_st); 59 60 kcrtc_st->clock_ratio = div64_u64(aclk << 32, pxlclk); 61 } 62 63 /** 64 * komeda_crtc_atomic_check - build display output data flow 65 * @crtc: DRM crtc 66 * @state: the crtc state object 67 * 68 * crtc_atomic_check is the final check stage, so beside build a display data 69 * pipeline according to the crtc_state, but still needs to release or disable 70 * the unclaimed pipeline resources. 71 * 72 * RETURNS: 73 * Zero for success or -errno 74 */ 75 static int 76 komeda_crtc_atomic_check(struct drm_crtc *crtc, 77 struct drm_atomic_state *state) 78 { 79 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state, 80 crtc); 81 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 82 struct komeda_crtc_state *kcrtc_st = to_kcrtc_st(crtc_state); 83 int err; 84 85 if (drm_atomic_crtc_needs_modeset(crtc_state)) 86 komeda_crtc_update_clock_ratio(kcrtc_st); 87 88 if (crtc_state->active) { 89 err = komeda_build_display_data_flow(kcrtc, kcrtc_st); 90 if (err) 91 return err; 92 } 93 94 /* release unclaimed pipeline resources */ 95 err = komeda_release_unclaimed_resources(kcrtc->slave, kcrtc_st); 96 if (err) 97 return err; 98 99 err = komeda_release_unclaimed_resources(kcrtc->master, kcrtc_st); 100 if (err) 101 return err; 102 103 return 0; 104 } 105 106 /* For active a crtc, mainly need two parts of preparation 107 * 1. adjust display operation mode. 108 * 2. enable needed clk 109 */ 110 static int 111 komeda_crtc_prepare(struct komeda_crtc *kcrtc) 112 { 113 struct komeda_dev *mdev = kcrtc->base.dev->dev_private; 114 struct komeda_pipeline *master = kcrtc->master; 115 struct komeda_crtc_state *kcrtc_st = to_kcrtc_st(kcrtc->base.state); 116 struct drm_display_mode *mode = &kcrtc_st->base.adjusted_mode; 117 u32 new_mode; 118 int err; 119 120 mutex_lock(&mdev->lock); 121 122 new_mode = mdev->dpmode | BIT(master->id); 123 if (WARN_ON(new_mode == mdev->dpmode)) { 124 err = 0; 125 goto unlock; 126 } 127 128 err = mdev->funcs->change_opmode(mdev, new_mode); 129 if (err) { 130 DRM_ERROR("failed to change opmode: 0x%x -> 0x%x.\n,", 131 mdev->dpmode, new_mode); 132 goto unlock; 133 } 134 135 mdev->dpmode = new_mode; 136 /* Only need to enable aclk on single display mode, but no need to 137 * enable aclk it on dual display mode, since the dual mode always 138 * switch from single display mode, the aclk already enabled, no need 139 * to enable it again. 140 */ 141 if (new_mode != KOMEDA_MODE_DUAL_DISP) { 142 err = clk_set_rate(mdev->aclk, komeda_crtc_get_aclk(kcrtc_st)); 143 if (err) 144 DRM_ERROR("failed to set aclk.\n"); 145 err = clk_prepare_enable(mdev->aclk); 146 if (err) 147 DRM_ERROR("failed to enable aclk.\n"); 148 } 149 150 err = clk_set_rate(master->pxlclk, mode->crtc_clock * 1000); 151 if (err) 152 DRM_ERROR("failed to set pxlclk for pipe%d\n", master->id); 153 err = clk_prepare_enable(master->pxlclk); 154 if (err) 155 DRM_ERROR("failed to enable pxl clk for pipe%d.\n", master->id); 156 157 unlock: 158 mutex_unlock(&mdev->lock); 159 160 return err; 161 } 162 163 static int 164 komeda_crtc_unprepare(struct komeda_crtc *kcrtc) 165 { 166 struct komeda_dev *mdev = kcrtc->base.dev->dev_private; 167 struct komeda_pipeline *master = kcrtc->master; 168 u32 new_mode; 169 int err; 170 171 mutex_lock(&mdev->lock); 172 173 new_mode = mdev->dpmode & (~BIT(master->id)); 174 175 if (WARN_ON(new_mode == mdev->dpmode)) { 176 err = 0; 177 goto unlock; 178 } 179 180 err = mdev->funcs->change_opmode(mdev, new_mode); 181 if (err) { 182 DRM_ERROR("failed to change opmode: 0x%x -> 0x%x.\n,", 183 mdev->dpmode, new_mode); 184 goto unlock; 185 } 186 187 mdev->dpmode = new_mode; 188 189 clk_disable_unprepare(master->pxlclk); 190 if (new_mode == KOMEDA_MODE_INACTIVE) 191 clk_disable_unprepare(mdev->aclk); 192 193 unlock: 194 mutex_unlock(&mdev->lock); 195 196 return err; 197 } 198 199 void komeda_crtc_handle_event(struct komeda_crtc *kcrtc, 200 struct komeda_events *evts) 201 { 202 struct drm_crtc *crtc = &kcrtc->base; 203 u32 events = evts->pipes[kcrtc->master->id]; 204 205 if (events & KOMEDA_EVENT_VSYNC) 206 drm_crtc_handle_vblank(crtc); 207 208 if (events & KOMEDA_EVENT_EOW) { 209 struct komeda_wb_connector *wb_conn = kcrtc->wb_conn; 210 211 if (wb_conn) 212 drm_writeback_signal_completion(&wb_conn->base, 0); 213 else 214 DRM_WARN("CRTC[%d]: EOW happen but no wb_connector.\n", 215 drm_crtc_index(&kcrtc->base)); 216 } 217 /* will handle it together with the write back support */ 218 if (events & KOMEDA_EVENT_EOW) 219 DRM_DEBUG("EOW.\n"); 220 221 if (events & KOMEDA_EVENT_FLIP) { 222 unsigned long flags; 223 struct drm_pending_vblank_event *event; 224 225 spin_lock_irqsave(&crtc->dev->event_lock, flags); 226 if (kcrtc->disable_done) { 227 complete_all(kcrtc->disable_done); 228 kcrtc->disable_done = NULL; 229 } else if (crtc->state->event) { 230 event = crtc->state->event; 231 /* 232 * Consume event before notifying drm core that flip 233 * happened. 234 */ 235 crtc->state->event = NULL; 236 drm_crtc_send_vblank_event(crtc, event); 237 } else { 238 DRM_WARN("CRTC[%d]: FLIP happen but no pending commit.\n", 239 drm_crtc_index(&kcrtc->base)); 240 } 241 spin_unlock_irqrestore(&crtc->dev->event_lock, flags); 242 } 243 } 244 245 static void 246 komeda_crtc_do_flush(struct drm_crtc *crtc, 247 struct drm_crtc_state *old) 248 { 249 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 250 struct komeda_crtc_state *kcrtc_st = to_kcrtc_st(crtc->state); 251 struct komeda_dev *mdev = kcrtc->base.dev->dev_private; 252 struct komeda_pipeline *master = kcrtc->master; 253 struct komeda_pipeline *slave = kcrtc->slave; 254 struct komeda_wb_connector *wb_conn = kcrtc->wb_conn; 255 struct drm_connector_state *conn_st; 256 257 DRM_DEBUG_ATOMIC("CRTC%d_FLUSH: active_pipes: 0x%x, affected: 0x%x.\n", 258 drm_crtc_index(crtc), 259 kcrtc_st->active_pipes, kcrtc_st->affected_pipes); 260 261 /* step 1: update the pipeline/component state to HW */ 262 if (has_bit(master->id, kcrtc_st->affected_pipes)) 263 komeda_pipeline_update(master, old->state); 264 265 if (slave && has_bit(slave->id, kcrtc_st->affected_pipes)) 266 komeda_pipeline_update(slave, old->state); 267 268 conn_st = wb_conn ? wb_conn->base.base.state : NULL; 269 if (conn_st && conn_st->writeback_job) 270 drm_writeback_queue_job(&wb_conn->base, conn_st); 271 272 /* step 2: notify the HW to kickoff the update */ 273 mdev->funcs->flush(mdev, master->id, kcrtc_st->active_pipes); 274 } 275 276 static void 277 komeda_crtc_atomic_enable(struct drm_crtc *crtc, 278 struct drm_atomic_state *state) 279 { 280 struct drm_crtc_state *old = drm_atomic_get_old_crtc_state(state, 281 crtc); 282 pm_runtime_get_sync(crtc->dev->dev); 283 komeda_crtc_prepare(to_kcrtc(crtc)); 284 drm_crtc_vblank_on(crtc); 285 WARN_ON(drm_crtc_vblank_get(crtc)); 286 komeda_crtc_do_flush(crtc, old); 287 } 288 289 static void 290 komeda_crtc_flush_and_wait_for_flip_done(struct komeda_crtc *kcrtc, 291 struct completion *input_flip_done) 292 { 293 struct drm_device *drm = kcrtc->base.dev; 294 struct komeda_dev *mdev = kcrtc->master->mdev; 295 struct completion *flip_done; 296 struct completion temp; 297 int timeout; 298 299 /* if caller doesn't send a flip_done, use a private flip_done */ 300 if (input_flip_done) { 301 flip_done = input_flip_done; 302 } else { 303 init_completion(&temp); 304 kcrtc->disable_done = &temp; 305 flip_done = &temp; 306 } 307 308 mdev->funcs->flush(mdev, kcrtc->master->id, 0); 309 310 /* wait the flip take affect.*/ 311 timeout = wait_for_completion_timeout(flip_done, HZ); 312 if (timeout == 0) { 313 DRM_ERROR("wait pipe%d flip done timeout\n", kcrtc->master->id); 314 if (!input_flip_done) { 315 unsigned long flags; 316 317 spin_lock_irqsave(&drm->event_lock, flags); 318 kcrtc->disable_done = NULL; 319 spin_unlock_irqrestore(&drm->event_lock, flags); 320 } 321 } 322 } 323 324 static void 325 komeda_crtc_atomic_disable(struct drm_crtc *crtc, 326 struct drm_atomic_state *state) 327 { 328 struct drm_crtc_state *old = drm_atomic_get_old_crtc_state(state, 329 crtc); 330 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 331 struct komeda_crtc_state *old_st = to_kcrtc_st(old); 332 struct komeda_pipeline *master = kcrtc->master; 333 struct komeda_pipeline *slave = kcrtc->slave; 334 struct completion *disable_done; 335 bool needs_phase2 = false; 336 337 DRM_DEBUG_ATOMIC("CRTC%d_DISABLE: active_pipes: 0x%x, affected: 0x%x\n", 338 drm_crtc_index(crtc), 339 old_st->active_pipes, old_st->affected_pipes); 340 341 if (slave && has_bit(slave->id, old_st->active_pipes)) 342 komeda_pipeline_disable(slave, old->state); 343 344 if (has_bit(master->id, old_st->active_pipes)) 345 needs_phase2 = komeda_pipeline_disable(master, old->state); 346 347 /* crtc_disable has two scenarios according to the state->active switch. 348 * 1. active -> inactive 349 * this commit is a disable commit. and the commit will be finished 350 * or done after the disable operation. on this case we can directly 351 * use the crtc->state->event to tracking the HW disable operation. 352 * 2. active -> active 353 * the crtc->commit is not for disable, but a modeset operation when 354 * crtc is active, such commit actually has been completed by 3 355 * DRM operations: 356 * crtc_disable, update_planes(crtc_flush), crtc_enable 357 * so on this case the crtc->commit is for the whole process. 358 * we can not use it for tracing the disable, we need a temporary 359 * flip_done for tracing the disable. and crtc->state->event for 360 * the crtc_enable operation. 361 * That's also the reason why skip modeset commit in 362 * komeda_crtc_atomic_flush() 363 */ 364 disable_done = (needs_phase2 || crtc->state->active) ? 365 NULL : &crtc->state->commit->flip_done; 366 367 /* wait phase 1 disable done */ 368 komeda_crtc_flush_and_wait_for_flip_done(kcrtc, disable_done); 369 370 /* phase 2 */ 371 if (needs_phase2) { 372 komeda_pipeline_disable(kcrtc->master, old->state); 373 374 disable_done = crtc->state->active ? 375 NULL : &crtc->state->commit->flip_done; 376 377 komeda_crtc_flush_and_wait_for_flip_done(kcrtc, disable_done); 378 } 379 380 drm_crtc_vblank_put(crtc); 381 drm_crtc_vblank_off(crtc); 382 komeda_crtc_unprepare(kcrtc); 383 pm_runtime_put(crtc->dev->dev); 384 } 385 386 static void 387 komeda_crtc_atomic_flush(struct drm_crtc *crtc, 388 struct drm_atomic_state *state) 389 { 390 struct drm_crtc_state *old = drm_atomic_get_old_crtc_state(state, 391 crtc); 392 /* commit with modeset will be handled in enable/disable */ 393 if (drm_atomic_crtc_needs_modeset(crtc->state)) 394 return; 395 396 komeda_crtc_do_flush(crtc, old); 397 } 398 399 /* Returns the minimum frequency of the aclk rate (main engine clock) in Hz */ 400 static unsigned long 401 komeda_calc_min_aclk_rate(struct komeda_crtc *kcrtc, 402 unsigned long pxlclk) 403 { 404 /* Once dual-link one display pipeline drives two display outputs, 405 * the aclk needs run on the double rate of pxlclk 406 */ 407 if (kcrtc->master->dual_link) 408 return pxlclk * 2; 409 else 410 return pxlclk; 411 } 412 413 /* Get current aclk rate that specified by state */ 414 unsigned long komeda_crtc_get_aclk(struct komeda_crtc_state *kcrtc_st) 415 { 416 struct drm_crtc *crtc = kcrtc_st->base.crtc; 417 struct komeda_dev *mdev = crtc->dev->dev_private; 418 unsigned long pxlclk = kcrtc_st->base.adjusted_mode.crtc_clock * 1000; 419 unsigned long min_aclk; 420 421 min_aclk = komeda_calc_min_aclk_rate(to_kcrtc(crtc), pxlclk); 422 423 return clk_round_rate(mdev->aclk, min_aclk); 424 } 425 426 static enum drm_mode_status 427 komeda_crtc_mode_valid(struct drm_crtc *crtc, const struct drm_display_mode *m) 428 { 429 struct komeda_dev *mdev = crtc->dev->dev_private; 430 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 431 struct komeda_pipeline *master = kcrtc->master; 432 unsigned long min_pxlclk, min_aclk; 433 434 if (m->flags & DRM_MODE_FLAG_INTERLACE) 435 return MODE_NO_INTERLACE; 436 437 min_pxlclk = m->clock * 1000; 438 if (master->dual_link) 439 min_pxlclk /= 2; 440 441 if (min_pxlclk != clk_round_rate(master->pxlclk, min_pxlclk)) { 442 DRM_DEBUG_ATOMIC("pxlclk doesn't support %lu Hz\n", min_pxlclk); 443 444 return MODE_NOCLOCK; 445 } 446 447 min_aclk = komeda_calc_min_aclk_rate(to_kcrtc(crtc), min_pxlclk); 448 if (clk_round_rate(mdev->aclk, min_aclk) < min_aclk) { 449 DRM_DEBUG_ATOMIC("engine clk can't satisfy the requirement of %s-clk: %lu.\n", 450 m->name, min_pxlclk); 451 452 return MODE_CLOCK_HIGH; 453 } 454 455 return MODE_OK; 456 } 457 458 static bool komeda_crtc_mode_fixup(struct drm_crtc *crtc, 459 const struct drm_display_mode *m, 460 struct drm_display_mode *adjusted_mode) 461 { 462 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 463 unsigned long clk_rate; 464 465 drm_mode_set_crtcinfo(adjusted_mode, 0); 466 /* In dual link half the horizontal settings */ 467 if (kcrtc->master->dual_link) { 468 adjusted_mode->crtc_clock /= 2; 469 adjusted_mode->crtc_hdisplay /= 2; 470 adjusted_mode->crtc_hsync_start /= 2; 471 adjusted_mode->crtc_hsync_end /= 2; 472 adjusted_mode->crtc_htotal /= 2; 473 } 474 475 clk_rate = adjusted_mode->crtc_clock * 1000; 476 /* crtc_clock will be used as the komeda output pixel clock */ 477 adjusted_mode->crtc_clock = clk_round_rate(kcrtc->master->pxlclk, 478 clk_rate) / 1000; 479 480 return true; 481 } 482 483 static const struct drm_crtc_helper_funcs komeda_crtc_helper_funcs = { 484 .atomic_check = komeda_crtc_atomic_check, 485 .atomic_flush = komeda_crtc_atomic_flush, 486 .atomic_enable = komeda_crtc_atomic_enable, 487 .atomic_disable = komeda_crtc_atomic_disable, 488 .mode_valid = komeda_crtc_mode_valid, 489 .mode_fixup = komeda_crtc_mode_fixup, 490 }; 491 492 static void komeda_crtc_reset(struct drm_crtc *crtc) 493 { 494 struct komeda_crtc_state *state; 495 496 if (crtc->state) 497 __drm_atomic_helper_crtc_destroy_state(crtc->state); 498 499 kfree(to_kcrtc_st(crtc->state)); 500 crtc->state = NULL; 501 502 state = kzalloc(sizeof(*state), GFP_KERNEL); 503 if (state) 504 __drm_atomic_helper_crtc_reset(crtc, &state->base); 505 } 506 507 static struct drm_crtc_state * 508 komeda_crtc_atomic_duplicate_state(struct drm_crtc *crtc) 509 { 510 struct komeda_crtc_state *old = to_kcrtc_st(crtc->state); 511 struct komeda_crtc_state *new; 512 513 new = kzalloc(sizeof(*new), GFP_KERNEL); 514 if (!new) 515 return NULL; 516 517 __drm_atomic_helper_crtc_duplicate_state(crtc, &new->base); 518 519 new->affected_pipes = old->active_pipes; 520 new->clock_ratio = old->clock_ratio; 521 new->max_slave_zorder = old->max_slave_zorder; 522 523 return &new->base; 524 } 525 526 static void komeda_crtc_atomic_destroy_state(struct drm_crtc *crtc, 527 struct drm_crtc_state *state) 528 { 529 __drm_atomic_helper_crtc_destroy_state(state); 530 kfree(to_kcrtc_st(state)); 531 } 532 533 static int komeda_crtc_vblank_enable(struct drm_crtc *crtc) 534 { 535 struct komeda_dev *mdev = crtc->dev->dev_private; 536 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 537 538 mdev->funcs->on_off_vblank(mdev, kcrtc->master->id, true); 539 return 0; 540 } 541 542 static void komeda_crtc_vblank_disable(struct drm_crtc *crtc) 543 { 544 struct komeda_dev *mdev = crtc->dev->dev_private; 545 struct komeda_crtc *kcrtc = to_kcrtc(crtc); 546 547 mdev->funcs->on_off_vblank(mdev, kcrtc->master->id, false); 548 } 549 550 static const struct drm_crtc_funcs komeda_crtc_funcs = { 551 .gamma_set = drm_atomic_helper_legacy_gamma_set, 552 .destroy = drm_crtc_cleanup, 553 .set_config = drm_atomic_helper_set_config, 554 .page_flip = drm_atomic_helper_page_flip, 555 .reset = komeda_crtc_reset, 556 .atomic_duplicate_state = komeda_crtc_atomic_duplicate_state, 557 .atomic_destroy_state = komeda_crtc_atomic_destroy_state, 558 .enable_vblank = komeda_crtc_vblank_enable, 559 .disable_vblank = komeda_crtc_vblank_disable, 560 }; 561 562 int komeda_kms_setup_crtcs(struct komeda_kms_dev *kms, 563 struct komeda_dev *mdev) 564 { 565 struct komeda_crtc *crtc; 566 struct komeda_pipeline *master; 567 char str[16]; 568 int i; 569 570 kms->n_crtcs = 0; 571 572 for (i = 0; i < mdev->n_pipelines; i++) { 573 crtc = &kms->crtcs[kms->n_crtcs]; 574 master = mdev->pipelines[i]; 575 576 crtc->master = master; 577 crtc->slave = komeda_pipeline_get_slave(master); 578 579 if (crtc->slave) 580 sprintf(str, "pipe-%d", crtc->slave->id); 581 else 582 sprintf(str, "None"); 583 584 DRM_INFO("CRTC-%d: master(pipe-%d) slave(%s).\n", 585 kms->n_crtcs, master->id, str); 586 587 kms->n_crtcs++; 588 } 589 590 return 0; 591 } 592 593 static struct drm_plane * 594 get_crtc_primary(struct komeda_kms_dev *kms, struct komeda_crtc *crtc) 595 { 596 struct komeda_plane *kplane; 597 struct drm_plane *plane; 598 599 drm_for_each_plane(plane, &kms->base) { 600 if (plane->type != DRM_PLANE_TYPE_PRIMARY) 601 continue; 602 603 kplane = to_kplane(plane); 604 /* only master can be primary */ 605 if (kplane->layer->base.pipeline == crtc->master) 606 return plane; 607 } 608 609 return NULL; 610 } 611 612 static int komeda_crtc_add(struct komeda_kms_dev *kms, 613 struct komeda_crtc *kcrtc) 614 { 615 struct drm_crtc *crtc = &kcrtc->base; 616 int err; 617 618 err = drm_crtc_init_with_planes(&kms->base, crtc, 619 get_crtc_primary(kms, kcrtc), NULL, 620 &komeda_crtc_funcs, NULL); 621 if (err) 622 return err; 623 624 drm_crtc_helper_add(crtc, &komeda_crtc_helper_funcs); 625 626 crtc->port = kcrtc->master->of_output_port; 627 628 drm_crtc_enable_color_mgmt(crtc, 0, true, KOMEDA_COLOR_LUT_SIZE); 629 630 return err; 631 } 632 633 int komeda_kms_add_crtcs(struct komeda_kms_dev *kms, struct komeda_dev *mdev) 634 { 635 int i, err; 636 637 for (i = 0; i < kms->n_crtcs; i++) { 638 err = komeda_crtc_add(kms, &kms->crtcs[i]); 639 if (err) 640 return err; 641 } 642 643 return 0; 644 } 645