1 // SPDX-License-Identifier: GPL-2.0 OR MIT 2 /************************************************************************** 3 * 4 * Copyright 2009-2015 VMware, Inc., Palo Alto, CA., USA 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the 8 * "Software"), to deal in the Software without restriction, including 9 * without limitation the rights to use, copy, modify, merge, publish, 10 * distribute, sub license, and/or sell copies of the Software, and to 11 * permit persons to whom the Software is furnished to do so, subject to 12 * the following conditions: 13 * 14 * The above copyright notice and this permission notice (including the 15 * next paragraph) shall be included in all copies or substantial portions 16 * of the Software. 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 24 * USE OR OTHER DEALINGS IN THE SOFTWARE. 25 * 26 **************************************************************************/ 27 28 #include <drm/drm_atomic.h> 29 #include <drm/drm_atomic_helper.h> 30 #include <drm/drm_fourcc.h> 31 #include <drm/drm_plane_helper.h> 32 #include <drm/drm_vblank.h> 33 34 #include "vmwgfx_kms.h" 35 36 #define vmw_crtc_to_ldu(x) \ 37 container_of(x, struct vmw_legacy_display_unit, base.crtc) 38 #define vmw_encoder_to_ldu(x) \ 39 container_of(x, struct vmw_legacy_display_unit, base.encoder) 40 #define vmw_connector_to_ldu(x) \ 41 container_of(x, struct vmw_legacy_display_unit, base.connector) 42 43 struct vmw_legacy_display { 44 struct list_head active; 45 46 unsigned num_active; 47 unsigned last_num_active; 48 49 struct vmw_framebuffer *fb; 50 }; 51 52 /** 53 * Display unit using the legacy register interface. 54 */ 55 struct vmw_legacy_display_unit { 56 struct vmw_display_unit base; 57 58 struct list_head active; 59 }; 60 61 static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu) 62 { 63 list_del_init(&ldu->active); 64 vmw_du_cleanup(&ldu->base); 65 kfree(ldu); 66 } 67 68 69 /* 70 * Legacy Display Unit CRTC functions 71 */ 72 73 static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc) 74 { 75 vmw_ldu_destroy(vmw_crtc_to_ldu(crtc)); 76 } 77 78 static int vmw_ldu_commit_list(struct vmw_private *dev_priv) 79 { 80 struct vmw_legacy_display *lds = dev_priv->ldu_priv; 81 struct vmw_legacy_display_unit *entry; 82 struct drm_framebuffer *fb = NULL; 83 struct drm_crtc *crtc = NULL; 84 int i = 0; 85 86 /* If there is no display topology the host just assumes 87 * that the guest will set the same layout as the host. 88 */ 89 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) { 90 int w = 0, h = 0; 91 list_for_each_entry(entry, &lds->active, active) { 92 crtc = &entry->base.crtc; 93 w = max(w, crtc->x + crtc->mode.hdisplay); 94 h = max(h, crtc->y + crtc->mode.vdisplay); 95 i++; 96 } 97 98 if (crtc == NULL) 99 return 0; 100 fb = entry->base.crtc.primary->state->fb; 101 102 return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0], 103 fb->format->cpp[0] * 8, 104 fb->format->depth); 105 } 106 107 if (!list_empty(&lds->active)) { 108 entry = list_entry(lds->active.next, typeof(*entry), active); 109 fb = entry->base.crtc.primary->state->fb; 110 111 vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0], 112 fb->format->cpp[0] * 8, fb->format->depth); 113 } 114 115 /* Make sure we always show something. */ 116 vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS, 117 lds->num_active ? lds->num_active : 1); 118 119 i = 0; 120 list_for_each_entry(entry, &lds->active, active) { 121 crtc = &entry->base.crtc; 122 123 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i); 124 vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i); 125 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x); 126 vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y); 127 vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay); 128 vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay); 129 vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID); 130 131 i++; 132 } 133 134 BUG_ON(i != lds->num_active); 135 136 lds->last_num_active = lds->num_active; 137 138 return 0; 139 } 140 141 static int vmw_ldu_del_active(struct vmw_private *vmw_priv, 142 struct vmw_legacy_display_unit *ldu) 143 { 144 struct vmw_legacy_display *ld = vmw_priv->ldu_priv; 145 if (list_empty(&ldu->active)) 146 return 0; 147 148 /* Must init otherwise list_empty(&ldu->active) will not work. */ 149 list_del_init(&ldu->active); 150 if (--(ld->num_active) == 0) { 151 BUG_ON(!ld->fb); 152 if (ld->fb->unpin) 153 ld->fb->unpin(ld->fb); 154 ld->fb = NULL; 155 } 156 157 return 0; 158 } 159 160 static int vmw_ldu_add_active(struct vmw_private *vmw_priv, 161 struct vmw_legacy_display_unit *ldu, 162 struct vmw_framebuffer *vfb) 163 { 164 struct vmw_legacy_display *ld = vmw_priv->ldu_priv; 165 struct vmw_legacy_display_unit *entry; 166 struct list_head *at; 167 168 BUG_ON(!ld->num_active && ld->fb); 169 if (vfb != ld->fb) { 170 if (ld->fb && ld->fb->unpin) 171 ld->fb->unpin(ld->fb); 172 vmw_svga_enable(vmw_priv); 173 if (vfb->pin) 174 vfb->pin(vfb); 175 ld->fb = vfb; 176 } 177 178 if (!list_empty(&ldu->active)) 179 return 0; 180 181 at = &ld->active; 182 list_for_each_entry(entry, &ld->active, active) { 183 if (entry->base.unit > ldu->base.unit) 184 break; 185 186 at = &entry->active; 187 } 188 189 list_add(&ldu->active, at); 190 191 ld->num_active++; 192 193 return 0; 194 } 195 196 /** 197 * vmw_ldu_crtc_mode_set_nofb - Enable svga 198 * 199 * @crtc: CRTC associated with the new screen 200 * 201 * For LDU, just enable the svga 202 */ 203 static void vmw_ldu_crtc_mode_set_nofb(struct drm_crtc *crtc) 204 { 205 } 206 207 /** 208 * vmw_ldu_crtc_atomic_enable - Noop 209 * 210 * @crtc: CRTC associated with the new screen 211 * 212 * This is called after a mode set has been completed. Here's 213 * usually a good place to call vmw_ldu_add_active/vmw_ldu_del_active 214 * but since for LDU the display plane is closely tied to the 215 * CRTC, it makes more sense to do those at plane update time. 216 */ 217 static void vmw_ldu_crtc_atomic_enable(struct drm_crtc *crtc, 218 struct drm_crtc_state *old_state) 219 { 220 } 221 222 /** 223 * vmw_ldu_crtc_atomic_disable - Turns off CRTC 224 * 225 * @crtc: CRTC to be turned off 226 */ 227 static void vmw_ldu_crtc_atomic_disable(struct drm_crtc *crtc, 228 struct drm_crtc_state *old_state) 229 { 230 } 231 232 static const struct drm_crtc_funcs vmw_legacy_crtc_funcs = { 233 .gamma_set = vmw_du_crtc_gamma_set, 234 .destroy = vmw_ldu_crtc_destroy, 235 .reset = vmw_du_crtc_reset, 236 .atomic_duplicate_state = vmw_du_crtc_duplicate_state, 237 .atomic_destroy_state = vmw_du_crtc_destroy_state, 238 .set_config = drm_atomic_helper_set_config, 239 .get_vblank_counter = vmw_get_vblank_counter, 240 .enable_vblank = vmw_enable_vblank, 241 .disable_vblank = vmw_disable_vblank, 242 }; 243 244 245 /* 246 * Legacy Display Unit encoder functions 247 */ 248 249 static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder) 250 { 251 vmw_ldu_destroy(vmw_encoder_to_ldu(encoder)); 252 } 253 254 static const struct drm_encoder_funcs vmw_legacy_encoder_funcs = { 255 .destroy = vmw_ldu_encoder_destroy, 256 }; 257 258 /* 259 * Legacy Display Unit connector functions 260 */ 261 262 static void vmw_ldu_connector_destroy(struct drm_connector *connector) 263 { 264 vmw_ldu_destroy(vmw_connector_to_ldu(connector)); 265 } 266 267 static const struct drm_connector_funcs vmw_legacy_connector_funcs = { 268 .dpms = vmw_du_connector_dpms, 269 .detect = vmw_du_connector_detect, 270 .fill_modes = vmw_du_connector_fill_modes, 271 .destroy = vmw_ldu_connector_destroy, 272 .reset = vmw_du_connector_reset, 273 .atomic_duplicate_state = vmw_du_connector_duplicate_state, 274 .atomic_destroy_state = vmw_du_connector_destroy_state, 275 }; 276 277 static const struct 278 drm_connector_helper_funcs vmw_ldu_connector_helper_funcs = { 279 }; 280 281 /* 282 * Legacy Display Plane Functions 283 */ 284 285 static void 286 vmw_ldu_primary_plane_atomic_update(struct drm_plane *plane, 287 struct drm_plane_state *old_state) 288 { 289 struct vmw_private *dev_priv; 290 struct vmw_legacy_display_unit *ldu; 291 struct vmw_framebuffer *vfb; 292 struct drm_framebuffer *fb; 293 struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc; 294 295 296 ldu = vmw_crtc_to_ldu(crtc); 297 dev_priv = vmw_priv(plane->dev); 298 fb = plane->state->fb; 299 300 vfb = (fb) ? vmw_framebuffer_to_vfb(fb) : NULL; 301 302 if (vfb) 303 vmw_ldu_add_active(dev_priv, ldu, vfb); 304 else 305 vmw_ldu_del_active(dev_priv, ldu); 306 307 vmw_ldu_commit_list(dev_priv); 308 } 309 310 311 static const struct drm_plane_funcs vmw_ldu_plane_funcs = { 312 .update_plane = drm_atomic_helper_update_plane, 313 .disable_plane = drm_atomic_helper_disable_plane, 314 .destroy = vmw_du_primary_plane_destroy, 315 .reset = vmw_du_plane_reset, 316 .atomic_duplicate_state = vmw_du_plane_duplicate_state, 317 .atomic_destroy_state = vmw_du_plane_destroy_state, 318 }; 319 320 static const struct drm_plane_funcs vmw_ldu_cursor_funcs = { 321 .update_plane = drm_atomic_helper_update_plane, 322 .disable_plane = drm_atomic_helper_disable_plane, 323 .destroy = vmw_du_cursor_plane_destroy, 324 .reset = vmw_du_plane_reset, 325 .atomic_duplicate_state = vmw_du_plane_duplicate_state, 326 .atomic_destroy_state = vmw_du_plane_destroy_state, 327 }; 328 329 /* 330 * Atomic Helpers 331 */ 332 static const struct 333 drm_plane_helper_funcs vmw_ldu_cursor_plane_helper_funcs = { 334 .atomic_check = vmw_du_cursor_plane_atomic_check, 335 .atomic_update = vmw_du_cursor_plane_atomic_update, 336 .prepare_fb = vmw_du_cursor_plane_prepare_fb, 337 .cleanup_fb = vmw_du_plane_cleanup_fb, 338 }; 339 340 static const struct 341 drm_plane_helper_funcs vmw_ldu_primary_plane_helper_funcs = { 342 .atomic_check = vmw_du_primary_plane_atomic_check, 343 .atomic_update = vmw_ldu_primary_plane_atomic_update, 344 }; 345 346 static const struct drm_crtc_helper_funcs vmw_ldu_crtc_helper_funcs = { 347 .mode_set_nofb = vmw_ldu_crtc_mode_set_nofb, 348 .atomic_check = vmw_du_crtc_atomic_check, 349 .atomic_begin = vmw_du_crtc_atomic_begin, 350 .atomic_flush = vmw_du_crtc_atomic_flush, 351 .atomic_enable = vmw_ldu_crtc_atomic_enable, 352 .atomic_disable = vmw_ldu_crtc_atomic_disable, 353 }; 354 355 356 static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit) 357 { 358 struct vmw_legacy_display_unit *ldu; 359 struct drm_device *dev = dev_priv->dev; 360 struct drm_connector *connector; 361 struct drm_encoder *encoder; 362 struct drm_plane *primary, *cursor; 363 struct drm_crtc *crtc; 364 int ret; 365 366 ldu = kzalloc(sizeof(*ldu), GFP_KERNEL); 367 if (!ldu) 368 return -ENOMEM; 369 370 ldu->base.unit = unit; 371 crtc = &ldu->base.crtc; 372 encoder = &ldu->base.encoder; 373 connector = &ldu->base.connector; 374 primary = &ldu->base.primary; 375 cursor = &ldu->base.cursor; 376 377 INIT_LIST_HEAD(&ldu->active); 378 379 ldu->base.pref_active = (unit == 0); 380 ldu->base.pref_width = dev_priv->initial_width; 381 ldu->base.pref_height = dev_priv->initial_height; 382 ldu->base.pref_mode = NULL; 383 384 /* 385 * Remove this after enabling atomic because property values can 386 * only exist in a state object 387 */ 388 ldu->base.is_implicit = true; 389 390 /* Initialize primary plane */ 391 vmw_du_plane_reset(primary); 392 393 ret = drm_universal_plane_init(dev, &ldu->base.primary, 394 0, &vmw_ldu_plane_funcs, 395 vmw_primary_plane_formats, 396 ARRAY_SIZE(vmw_primary_plane_formats), 397 NULL, DRM_PLANE_TYPE_PRIMARY, NULL); 398 if (ret) { 399 DRM_ERROR("Failed to initialize primary plane"); 400 goto err_free; 401 } 402 403 drm_plane_helper_add(primary, &vmw_ldu_primary_plane_helper_funcs); 404 405 /* Initialize cursor plane */ 406 vmw_du_plane_reset(cursor); 407 408 ret = drm_universal_plane_init(dev, &ldu->base.cursor, 409 0, &vmw_ldu_cursor_funcs, 410 vmw_cursor_plane_formats, 411 ARRAY_SIZE(vmw_cursor_plane_formats), 412 NULL, DRM_PLANE_TYPE_CURSOR, NULL); 413 if (ret) { 414 DRM_ERROR("Failed to initialize cursor plane"); 415 drm_plane_cleanup(&ldu->base.primary); 416 goto err_free; 417 } 418 419 drm_plane_helper_add(cursor, &vmw_ldu_cursor_plane_helper_funcs); 420 421 vmw_du_connector_reset(connector); 422 ret = drm_connector_init(dev, connector, &vmw_legacy_connector_funcs, 423 DRM_MODE_CONNECTOR_VIRTUAL); 424 if (ret) { 425 DRM_ERROR("Failed to initialize connector\n"); 426 goto err_free; 427 } 428 429 drm_connector_helper_add(connector, &vmw_ldu_connector_helper_funcs); 430 connector->status = vmw_du_connector_detect(connector, true); 431 432 ret = drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs, 433 DRM_MODE_ENCODER_VIRTUAL, NULL); 434 if (ret) { 435 DRM_ERROR("Failed to initialize encoder\n"); 436 goto err_free_connector; 437 } 438 439 (void) drm_connector_attach_encoder(connector, encoder); 440 encoder->possible_crtcs = (1 << unit); 441 encoder->possible_clones = 0; 442 443 ret = drm_connector_register(connector); 444 if (ret) { 445 DRM_ERROR("Failed to register connector\n"); 446 goto err_free_encoder; 447 } 448 449 vmw_du_crtc_reset(crtc); 450 ret = drm_crtc_init_with_planes(dev, crtc, &ldu->base.primary, 451 &ldu->base.cursor, 452 &vmw_legacy_crtc_funcs, NULL); 453 if (ret) { 454 DRM_ERROR("Failed to initialize CRTC\n"); 455 goto err_free_unregister; 456 } 457 458 drm_crtc_helper_add(crtc, &vmw_ldu_crtc_helper_funcs); 459 460 drm_mode_crtc_set_gamma_size(crtc, 256); 461 462 drm_object_attach_property(&connector->base, 463 dev_priv->hotplug_mode_update_property, 1); 464 drm_object_attach_property(&connector->base, 465 dev->mode_config.suggested_x_property, 0); 466 drm_object_attach_property(&connector->base, 467 dev->mode_config.suggested_y_property, 0); 468 if (dev_priv->implicit_placement_property) 469 drm_object_attach_property 470 (&connector->base, 471 dev_priv->implicit_placement_property, 472 1); 473 474 return 0; 475 476 err_free_unregister: 477 drm_connector_unregister(connector); 478 err_free_encoder: 479 drm_encoder_cleanup(encoder); 480 err_free_connector: 481 drm_connector_cleanup(connector); 482 err_free: 483 kfree(ldu); 484 return ret; 485 } 486 487 int vmw_kms_ldu_init_display(struct vmw_private *dev_priv) 488 { 489 struct drm_device *dev = dev_priv->dev; 490 int i, ret; 491 492 if (dev_priv->ldu_priv) { 493 DRM_INFO("ldu system already on\n"); 494 return -EINVAL; 495 } 496 497 dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL); 498 if (!dev_priv->ldu_priv) 499 return -ENOMEM; 500 501 INIT_LIST_HEAD(&dev_priv->ldu_priv->active); 502 dev_priv->ldu_priv->num_active = 0; 503 dev_priv->ldu_priv->last_num_active = 0; 504 dev_priv->ldu_priv->fb = NULL; 505 506 /* for old hardware without multimon only enable one display */ 507 if (dev_priv->capabilities & SVGA_CAP_MULTIMON) 508 ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS); 509 else 510 ret = drm_vblank_init(dev, 1); 511 if (ret != 0) 512 goto err_free; 513 514 vmw_kms_create_implicit_placement_property(dev_priv); 515 516 if (dev_priv->capabilities & SVGA_CAP_MULTIMON) 517 for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i) 518 vmw_ldu_init(dev_priv, i); 519 else 520 vmw_ldu_init(dev_priv, 0); 521 522 dev_priv->active_display_unit = vmw_du_legacy; 523 524 DRM_INFO("Legacy Display Unit initialized\n"); 525 526 return 0; 527 528 err_free: 529 kfree(dev_priv->ldu_priv); 530 dev_priv->ldu_priv = NULL; 531 return ret; 532 } 533 534 int vmw_kms_ldu_close_display(struct vmw_private *dev_priv) 535 { 536 if (!dev_priv->ldu_priv) 537 return -ENOSYS; 538 539 BUG_ON(!list_empty(&dev_priv->ldu_priv->active)); 540 541 kfree(dev_priv->ldu_priv); 542 543 return 0; 544 } 545 546 547 int vmw_kms_ldu_do_bo_dirty(struct vmw_private *dev_priv, 548 struct vmw_framebuffer *framebuffer, 549 unsigned int flags, unsigned int color, 550 struct drm_clip_rect *clips, 551 unsigned int num_clips, int increment) 552 { 553 size_t fifo_size; 554 int i; 555 556 struct { 557 uint32_t header; 558 SVGAFifoCmdUpdate body; 559 } *cmd; 560 561 fifo_size = sizeof(*cmd) * num_clips; 562 cmd = VMW_FIFO_RESERVE(dev_priv, fifo_size); 563 if (unlikely(cmd == NULL)) 564 return -ENOMEM; 565 566 memset(cmd, 0, fifo_size); 567 for (i = 0; i < num_clips; i++, clips += increment) { 568 cmd[i].header = SVGA_CMD_UPDATE; 569 cmd[i].body.x = clips->x1; 570 cmd[i].body.y = clips->y1; 571 cmd[i].body.width = clips->x2 - clips->x1; 572 cmd[i].body.height = clips->y2 - clips->y1; 573 } 574 575 vmw_fifo_commit(dev_priv, fifo_size); 576 return 0; 577 } 578