Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Sinclair Yeh | 54fbde8 | 2015-07-29 12:38:02 -0700 | [diff] [blame] | 3 | * COPYRIGHT © 2014-2015 VMware, Inc., Palo Alto, CA., USA |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 4 | * All Rights Reserved. |
| 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 "vmwgfx_kms.h" |
Sinclair Yeh | 8ce75f8 | 2015-07-08 21:20:39 -0700 | [diff] [blame] | 29 | #include "device_include/svga3d_surfacedefs.h" |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 30 | #include <drm/drm_plane_helper.h> |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 31 | #include <drm/drm_atomic.h> |
| 32 | #include <drm/drm_atomic_helper.h> |
| 33 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 34 | |
| 35 | #define vmw_crtc_to_stdu(x) \ |
| 36 | container_of(x, struct vmw_screen_target_display_unit, base.crtc) |
| 37 | #define vmw_encoder_to_stdu(x) \ |
| 38 | container_of(x, struct vmw_screen_target_display_unit, base.encoder) |
| 39 | #define vmw_connector_to_stdu(x) \ |
| 40 | container_of(x, struct vmw_screen_target_display_unit, base.connector) |
| 41 | |
| 42 | |
| 43 | |
| 44 | enum stdu_content_type { |
| 45 | SAME_AS_DISPLAY = 0, |
| 46 | SEPARATE_SURFACE, |
| 47 | SEPARATE_DMA |
| 48 | }; |
| 49 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 50 | /** |
| 51 | * struct vmw_stdu_dirty - closure structure for the update functions |
| 52 | * |
| 53 | * @base: The base type we derive from. Used by vmw_kms_helper_dirty(). |
| 54 | * @transfer: Transfer direction for DMA command. |
| 55 | * @left: Left side of bounding box. |
| 56 | * @right: Right side of bounding box. |
| 57 | * @top: Top side of bounding box. |
| 58 | * @bottom: Bottom side of bounding box. |
| 59 | * @buf: DMA buffer when DMA-ing between buffer and screen targets. |
| 60 | * @sid: Surface ID when copying between surface and screen targets. |
| 61 | */ |
| 62 | struct vmw_stdu_dirty { |
| 63 | struct vmw_kms_dirty base; |
| 64 | SVGA3dTransferType transfer; |
| 65 | s32 left, right, top, bottom; |
| 66 | u32 pitch; |
| 67 | union { |
| 68 | struct vmw_dma_buffer *buf; |
| 69 | u32 sid; |
| 70 | }; |
| 71 | }; |
| 72 | |
| 73 | /* |
| 74 | * SVGA commands that are used by this code. Please see the device headers |
| 75 | * for explanation. |
| 76 | */ |
| 77 | struct vmw_stdu_update { |
| 78 | SVGA3dCmdHeader header; |
| 79 | SVGA3dCmdUpdateGBScreenTarget body; |
| 80 | }; |
| 81 | |
| 82 | struct vmw_stdu_dma { |
| 83 | SVGA3dCmdHeader header; |
| 84 | SVGA3dCmdSurfaceDMA body; |
| 85 | }; |
| 86 | |
| 87 | struct vmw_stdu_surface_copy { |
| 88 | SVGA3dCmdHeader header; |
| 89 | SVGA3dCmdSurfaceCopy body; |
| 90 | }; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 91 | |
| 92 | |
| 93 | /** |
| 94 | * struct vmw_screen_target_display_unit |
| 95 | * |
| 96 | * @base: VMW specific DU structure |
| 97 | * @display_srf: surface to be displayed. The dimension of this will always |
| 98 | * match the display mode. If the display mode matches |
| 99 | * content_vfbs dimensions, then this is a pointer into the |
| 100 | * corresponding field in content_vfbs. If not, then this |
| 101 | * is a separate buffer to which content_vfbs will blit to. |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 102 | * @content_type: content_fb type |
| 103 | * @defined: true if the current display unit has been initialized |
| 104 | */ |
| 105 | struct vmw_screen_target_display_unit { |
| 106 | struct vmw_display_unit base; |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 107 | const struct vmw_surface *display_srf; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 108 | enum stdu_content_type content_fb_type; |
| 109 | |
| 110 | bool defined; |
| 111 | }; |
| 112 | |
| 113 | |
| 114 | |
| 115 | static void vmw_stdu_destroy(struct vmw_screen_target_display_unit *stdu); |
| 116 | |
| 117 | |
| 118 | |
| 119 | /****************************************************************************** |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 120 | * Screen Target Display Unit CRTC Functions |
| 121 | *****************************************************************************/ |
| 122 | |
| 123 | |
| 124 | /** |
| 125 | * vmw_stdu_crtc_destroy - cleans up the STDU |
| 126 | * |
| 127 | * @crtc: used to get a reference to the containing STDU |
| 128 | */ |
| 129 | static void vmw_stdu_crtc_destroy(struct drm_crtc *crtc) |
| 130 | { |
| 131 | vmw_stdu_destroy(vmw_crtc_to_stdu(crtc)); |
| 132 | } |
| 133 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 134 | /** |
| 135 | * vmw_stdu_define_st - Defines a Screen Target |
| 136 | * |
| 137 | * @dev_priv: VMW DRM device |
| 138 | * @stdu: display unit to create a Screen Target for |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 139 | * @mode: The mode to set. |
| 140 | * @crtc_x: X coordinate of screen target relative to framebuffer origin. |
| 141 | * @crtc_y: Y coordinate of screen target relative to framebuffer origin. |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 142 | * |
| 143 | * Creates a STDU that we can used later. This function is called whenever the |
| 144 | * framebuffer size changes. |
| 145 | * |
| 146 | * RETURNs: |
| 147 | * 0 on success, error code on failure |
| 148 | */ |
| 149 | static int vmw_stdu_define_st(struct vmw_private *dev_priv, |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 150 | struct vmw_screen_target_display_unit *stdu, |
| 151 | struct drm_display_mode *mode, |
| 152 | int crtc_x, int crtc_y) |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 153 | { |
| 154 | struct { |
| 155 | SVGA3dCmdHeader header; |
| 156 | SVGA3dCmdDefineGBScreenTarget body; |
| 157 | } *cmd; |
| 158 | |
| 159 | cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd)); |
| 160 | |
| 161 | if (unlikely(cmd == NULL)) { |
| 162 | DRM_ERROR("Out of FIFO space defining Screen Target\n"); |
| 163 | return -ENOMEM; |
| 164 | } |
| 165 | |
| 166 | cmd->header.id = SVGA_3D_CMD_DEFINE_GB_SCREENTARGET; |
| 167 | cmd->header.size = sizeof(cmd->body); |
| 168 | |
| 169 | cmd->body.stid = stdu->base.unit; |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 170 | cmd->body.width = mode->hdisplay; |
| 171 | cmd->body.height = mode->vdisplay; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 172 | cmd->body.flags = (0 == cmd->body.stid) ? SVGA_STFLAG_PRIMARY : 0; |
| 173 | cmd->body.dpi = 0; |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 174 | if (stdu->base.is_implicit) { |
| 175 | cmd->body.xRoot = crtc_x; |
| 176 | cmd->body.yRoot = crtc_y; |
| 177 | } else { |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 178 | cmd->body.xRoot = stdu->base.gui_x; |
| 179 | cmd->body.yRoot = stdu->base.gui_y; |
| 180 | } |
Thomas Hellstrom | 6dd687b | 2016-02-12 09:57:15 +0100 | [diff] [blame] | 181 | stdu->base.set_gui_x = cmd->body.xRoot; |
| 182 | stdu->base.set_gui_y = cmd->body.yRoot; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 183 | |
| 184 | vmw_fifo_commit(dev_priv, sizeof(*cmd)); |
| 185 | |
| 186 | stdu->defined = true; |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
| 191 | |
| 192 | |
| 193 | /** |
| 194 | * vmw_stdu_bind_st - Binds a surface to a Screen Target |
| 195 | * |
| 196 | * @dev_priv: VMW DRM device |
| 197 | * @stdu: display unit affected |
| 198 | * @res: Buffer to bind to the screen target. Set to NULL to blank screen. |
| 199 | * |
| 200 | * Binding a surface to a Screen Target the same as flipping |
| 201 | */ |
| 202 | static int vmw_stdu_bind_st(struct vmw_private *dev_priv, |
| 203 | struct vmw_screen_target_display_unit *stdu, |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 204 | const struct vmw_resource *res) |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 205 | { |
| 206 | SVGA3dSurfaceImageId image; |
| 207 | |
| 208 | struct { |
| 209 | SVGA3dCmdHeader header; |
| 210 | SVGA3dCmdBindGBScreenTarget body; |
| 211 | } *cmd; |
| 212 | |
| 213 | |
| 214 | if (!stdu->defined) { |
| 215 | DRM_ERROR("No screen target defined\n"); |
| 216 | return -EINVAL; |
| 217 | } |
| 218 | |
| 219 | /* Set up image using information in vfb */ |
| 220 | memset(&image, 0, sizeof(image)); |
| 221 | image.sid = res ? res->id : SVGA3D_INVALID_ID; |
| 222 | |
| 223 | cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd)); |
| 224 | |
| 225 | if (unlikely(cmd == NULL)) { |
| 226 | DRM_ERROR("Out of FIFO space binding a screen target\n"); |
| 227 | return -ENOMEM; |
| 228 | } |
| 229 | |
| 230 | cmd->header.id = SVGA_3D_CMD_BIND_GB_SCREENTARGET; |
| 231 | cmd->header.size = sizeof(cmd->body); |
| 232 | |
| 233 | cmd->body.stid = stdu->base.unit; |
| 234 | cmd->body.image = image; |
| 235 | |
| 236 | vmw_fifo_commit(dev_priv, sizeof(*cmd)); |
| 237 | |
| 238 | return 0; |
| 239 | } |
| 240 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 241 | /** |
| 242 | * vmw_stdu_populate_update - populate an UPDATE_GB_SCREENTARGET command with a |
| 243 | * bounding box. |
| 244 | * |
| 245 | * @cmd: Pointer to command stream. |
| 246 | * @unit: Screen target unit. |
| 247 | * @left: Left side of bounding box. |
| 248 | * @right: Right side of bounding box. |
| 249 | * @top: Top side of bounding box. |
| 250 | * @bottom: Bottom side of bounding box. |
| 251 | */ |
| 252 | static void vmw_stdu_populate_update(void *cmd, int unit, |
| 253 | s32 left, s32 right, s32 top, s32 bottom) |
| 254 | { |
| 255 | struct vmw_stdu_update *update = cmd; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 256 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 257 | update->header.id = SVGA_3D_CMD_UPDATE_GB_SCREENTARGET; |
| 258 | update->header.size = sizeof(update->body); |
| 259 | |
| 260 | update->body.stid = unit; |
| 261 | update->body.rect.x = left; |
| 262 | update->body.rect.y = top; |
| 263 | update->body.rect.w = right - left; |
| 264 | update->body.rect.h = bottom - top; |
| 265 | } |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 266 | |
| 267 | /** |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 268 | * vmw_stdu_update_st - Full update of a Screen Target |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 269 | * |
| 270 | * @dev_priv: VMW DRM device |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 271 | * @stdu: display unit affected |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 272 | * |
| 273 | * This function needs to be called whenever the content of a screen |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 274 | * target has changed completely. Typically as a result of a backing |
| 275 | * surface change. |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 276 | * |
| 277 | * RETURNS: |
| 278 | * 0 on success, error code on failure |
| 279 | */ |
| 280 | static int vmw_stdu_update_st(struct vmw_private *dev_priv, |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 281 | struct vmw_screen_target_display_unit *stdu) |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 282 | { |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 283 | struct vmw_stdu_update *cmd; |
| 284 | struct drm_crtc *crtc = &stdu->base.crtc; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 285 | |
| 286 | if (!stdu->defined) { |
| 287 | DRM_ERROR("No screen target defined"); |
| 288 | return -EINVAL; |
| 289 | } |
| 290 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 291 | cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd)); |
| 292 | |
| 293 | if (unlikely(cmd == NULL)) { |
| 294 | DRM_ERROR("Out of FIFO space updating a Screen Target\n"); |
| 295 | return -ENOMEM; |
| 296 | } |
| 297 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 298 | vmw_stdu_populate_update(cmd, stdu->base.unit, 0, crtc->mode.hdisplay, |
| 299 | 0, crtc->mode.vdisplay); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 300 | |
| 301 | vmw_fifo_commit(dev_priv, sizeof(*cmd)); |
| 302 | |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | |
| 307 | |
| 308 | /** |
| 309 | * vmw_stdu_destroy_st - Destroy a Screen Target |
| 310 | * |
| 311 | * @dev_priv: VMW DRM device |
| 312 | * @stdu: display unit to destroy |
| 313 | */ |
| 314 | static int vmw_stdu_destroy_st(struct vmw_private *dev_priv, |
| 315 | struct vmw_screen_target_display_unit *stdu) |
| 316 | { |
| 317 | int ret; |
| 318 | |
| 319 | struct { |
| 320 | SVGA3dCmdHeader header; |
| 321 | SVGA3dCmdDestroyGBScreenTarget body; |
| 322 | } *cmd; |
| 323 | |
| 324 | |
| 325 | /* Nothing to do if not successfully defined */ |
| 326 | if (unlikely(!stdu->defined)) |
| 327 | return 0; |
| 328 | |
| 329 | cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd)); |
| 330 | |
| 331 | if (unlikely(cmd == NULL)) { |
| 332 | DRM_ERROR("Out of FIFO space, screen target not destroyed\n"); |
| 333 | return -ENOMEM; |
| 334 | } |
| 335 | |
| 336 | cmd->header.id = SVGA_3D_CMD_DESTROY_GB_SCREENTARGET; |
| 337 | cmd->header.size = sizeof(cmd->body); |
| 338 | |
| 339 | cmd->body.stid = stdu->base.unit; |
| 340 | |
| 341 | vmw_fifo_commit(dev_priv, sizeof(*cmd)); |
| 342 | |
| 343 | /* Force sync */ |
| 344 | ret = vmw_fallback_wait(dev_priv, false, true, 0, false, 3*HZ); |
| 345 | if (unlikely(ret != 0)) |
| 346 | DRM_ERROR("Failed to sync with HW"); |
| 347 | |
| 348 | stdu->defined = false; |
| 349 | |
| 350 | return ret; |
| 351 | } |
| 352 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 353 | |
| 354 | /** |
| 355 | * vmw_stdu_crtc_mode_set_nofb - Updates screen target size |
| 356 | * |
| 357 | * @crtc: CRTC associated with the screen target |
| 358 | * |
| 359 | * This function defines/destroys a screen target |
| 360 | * |
| 361 | */ |
| 362 | static void vmw_stdu_crtc_mode_set_nofb(struct drm_crtc *crtc) |
| 363 | { |
| 364 | struct vmw_private *dev_priv; |
| 365 | struct vmw_screen_target_display_unit *stdu; |
| 366 | int ret; |
| 367 | |
| 368 | |
| 369 | stdu = vmw_crtc_to_stdu(crtc); |
| 370 | dev_priv = vmw_priv(crtc->dev); |
| 371 | |
| 372 | if (stdu->defined) { |
| 373 | ret = vmw_stdu_bind_st(dev_priv, stdu, NULL); |
| 374 | if (ret) |
| 375 | DRM_ERROR("Failed to blank CRTC\n"); |
| 376 | |
| 377 | (void) vmw_stdu_update_st(dev_priv, stdu); |
| 378 | |
| 379 | ret = vmw_stdu_destroy_st(dev_priv, stdu); |
| 380 | if (ret) |
| 381 | DRM_ERROR("Failed to destroy Screen Target\n"); |
| 382 | |
| 383 | stdu->content_fb_type = SAME_AS_DISPLAY; |
| 384 | } |
| 385 | |
| 386 | if (!crtc->state->enable) |
| 387 | return; |
| 388 | |
| 389 | vmw_svga_enable(dev_priv); |
| 390 | ret = vmw_stdu_define_st(dev_priv, stdu, &crtc->mode, crtc->x, crtc->y); |
| 391 | |
| 392 | if (ret) |
| 393 | DRM_ERROR("Failed to define Screen Target of size %dx%d\n", |
| 394 | crtc->x, crtc->y); |
| 395 | } |
| 396 | |
| 397 | |
| 398 | static void vmw_stdu_crtc_helper_prepare(struct drm_crtc *crtc) |
| 399 | { |
| 400 | } |
| 401 | |
| 402 | |
| 403 | static void vmw_stdu_crtc_helper_commit(struct drm_crtc *crtc) |
| 404 | { |
| 405 | struct vmw_private *dev_priv; |
| 406 | struct vmw_screen_target_display_unit *stdu; |
| 407 | struct vmw_framebuffer *vfb; |
| 408 | struct drm_framebuffer *fb; |
| 409 | |
| 410 | |
| 411 | stdu = vmw_crtc_to_stdu(crtc); |
| 412 | dev_priv = vmw_priv(crtc->dev); |
| 413 | fb = crtc->primary->fb; |
| 414 | |
| 415 | vfb = (fb) ? vmw_framebuffer_to_vfb(fb) : NULL; |
| 416 | |
| 417 | if (vfb) |
| 418 | vmw_kms_add_active(dev_priv, &stdu->base, vfb); |
| 419 | else |
| 420 | vmw_kms_del_active(dev_priv, &stdu->base); |
| 421 | } |
| 422 | |
| 423 | static void vmw_stdu_crtc_helper_disable(struct drm_crtc *crtc) |
| 424 | { |
| 425 | struct vmw_private *dev_priv; |
| 426 | struct vmw_screen_target_display_unit *stdu; |
| 427 | int ret; |
| 428 | |
| 429 | |
| 430 | if (!crtc) { |
| 431 | DRM_ERROR("CRTC is NULL\n"); |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | stdu = vmw_crtc_to_stdu(crtc); |
| 436 | dev_priv = vmw_priv(crtc->dev); |
| 437 | |
| 438 | if (stdu->defined) { |
| 439 | ret = vmw_stdu_bind_st(dev_priv, stdu, NULL); |
| 440 | if (ret) |
| 441 | DRM_ERROR("Failed to blank CRTC\n"); |
| 442 | |
| 443 | (void) vmw_stdu_update_st(dev_priv, stdu); |
| 444 | |
| 445 | ret = vmw_stdu_destroy_st(dev_priv, stdu); |
| 446 | if (ret) |
| 447 | DRM_ERROR("Failed to destroy Screen Target\n"); |
| 448 | |
| 449 | stdu->content_fb_type = SAME_AS_DISPLAY; |
| 450 | } |
| 451 | } |
| 452 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 453 | /** |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 454 | * vmw_stdu_crtc_page_flip - Binds a buffer to a screen target |
| 455 | * |
| 456 | * @crtc: CRTC to attach FB to |
| 457 | * @fb: FB to attach |
| 458 | * @event: Event to be posted. This event should've been alloced |
| 459 | * using k[mz]alloc, and should've been completely initialized. |
| 460 | * @page_flip_flags: Input flags. |
| 461 | * |
| 462 | * If the STDU uses the same display and content buffers, i.e. a true flip, |
| 463 | * this function will replace the existing display buffer with the new content |
| 464 | * buffer. |
| 465 | * |
| 466 | * If the STDU uses different display and content buffers, i.e. a blit, then |
| 467 | * only the content buffer will be updated. |
| 468 | * |
| 469 | * RETURNS: |
| 470 | * 0 on success, error code on failure |
| 471 | */ |
| 472 | static int vmw_stdu_crtc_page_flip(struct drm_crtc *crtc, |
| 473 | struct drm_framebuffer *new_fb, |
| 474 | struct drm_pending_vblank_event *event, |
| 475 | uint32_t flags) |
| 476 | |
| 477 | { |
| 478 | struct vmw_private *dev_priv = vmw_priv(crtc->dev); |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 479 | struct vmw_screen_target_display_unit *stdu = vmw_crtc_to_stdu(crtc); |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 480 | struct vmw_framebuffer *vfb = vmw_framebuffer_to_vfb(new_fb); |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 481 | struct drm_vmw_rect vclips; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 482 | int ret; |
| 483 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 484 | dev_priv = vmw_priv(crtc->dev); |
| 485 | stdu = vmw_crtc_to_stdu(crtc); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 486 | |
Thomas Hellstrom | 4d492a0 | 2016-02-12 09:01:29 +0100 | [diff] [blame] | 487 | if (!stdu->defined || !vmw_kms_crtc_flippable(dev_priv, crtc)) |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 488 | return -EINVAL; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 489 | |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 490 | /* |
| 491 | * We're always async, but the helper doesn't know how to set async |
| 492 | * so lie to the helper. Also, the helper expects someone |
| 493 | * to pick the event up from the crtc state, and if nobody does, |
| 494 | * it will free it. Since we handle the event in this function, |
| 495 | * don't hand it to the helper. |
| 496 | */ |
| 497 | flags &= ~DRM_MODE_PAGE_FLIP_ASYNC; |
| 498 | ret = drm_atomic_helper_page_flip(crtc, new_fb, NULL, flags); |
| 499 | if (ret) { |
| 500 | DRM_ERROR("Page flip error %d.\n", ret); |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 501 | return ret; |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 502 | } |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 503 | |
Thomas Hellstrom | 4d492a0 | 2016-02-12 09:01:29 +0100 | [diff] [blame] | 504 | if (stdu->base.is_implicit) |
| 505 | vmw_kms_update_implicit_fb(dev_priv, crtc); |
| 506 | |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 507 | /* |
| 508 | * Now that we've bound a new surface to the screen target, |
| 509 | * update the contents. |
| 510 | */ |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 511 | vclips.x = crtc->x; |
| 512 | vclips.y = crtc->y; |
| 513 | vclips.w = crtc->mode.hdisplay; |
| 514 | vclips.h = crtc->mode.vdisplay; |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 515 | |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 516 | if (vfb->dmabuf) |
| 517 | ret = vmw_kms_stdu_dma(dev_priv, NULL, vfb, NULL, NULL, &vclips, |
| 518 | 1, 1, true, false); |
| 519 | else |
| 520 | ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, &vclips, |
| 521 | NULL, 0, 0, 1, 1, NULL); |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 522 | if (ret) { |
| 523 | DRM_ERROR("Page flip update error %d.\n", ret); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 524 | return ret; |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 525 | } |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 526 | |
| 527 | if (event) { |
| 528 | struct vmw_fence_obj *fence = NULL; |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 529 | struct drm_file *file_priv = event->base.file_priv; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 530 | |
| 531 | vmw_execbuf_fence_commands(NULL, dev_priv, &fence, NULL); |
| 532 | if (!fence) |
| 533 | return -ENOMEM; |
| 534 | |
| 535 | ret = vmw_event_fence_action_queue(file_priv, fence, |
| 536 | &event->base, |
| 537 | &event->event.tv_sec, |
| 538 | &event->event.tv_usec, |
| 539 | true); |
| 540 | vmw_fence_obj_unreference(&fence); |
Thomas Hellstrom | 4e0858a | 2015-11-05 02:18:55 -0800 | [diff] [blame] | 541 | } else { |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 542 | (void) vmw_fifo_flush(dev_priv, false); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Thomas Hellstrom | b1097ae | 2016-02-12 08:54:07 +0100 | [diff] [blame] | 545 | return 0; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 549 | /** |
| 550 | * vmw_stdu_dmabuf_clip - Callback to encode a suface DMA command cliprect |
| 551 | * |
| 552 | * @dirty: The closure structure. |
| 553 | * |
| 554 | * Encodes a surface DMA command cliprect and updates the bounding box |
| 555 | * for the DMA. |
| 556 | */ |
| 557 | static void vmw_stdu_dmabuf_clip(struct vmw_kms_dirty *dirty) |
| 558 | { |
| 559 | struct vmw_stdu_dirty *ddirty = |
| 560 | container_of(dirty, struct vmw_stdu_dirty, base); |
| 561 | struct vmw_stdu_dma *cmd = dirty->cmd; |
| 562 | struct SVGA3dCopyBox *blit = (struct SVGA3dCopyBox *) &cmd[1]; |
| 563 | |
| 564 | blit += dirty->num_hits; |
| 565 | blit->srcx = dirty->fb_x; |
| 566 | blit->srcy = dirty->fb_y; |
| 567 | blit->x = dirty->unit_x1; |
| 568 | blit->y = dirty->unit_y1; |
| 569 | blit->d = 1; |
| 570 | blit->w = dirty->unit_x2 - dirty->unit_x1; |
| 571 | blit->h = dirty->unit_y2 - dirty->unit_y1; |
| 572 | dirty->num_hits++; |
| 573 | |
| 574 | if (ddirty->transfer != SVGA3D_WRITE_HOST_VRAM) |
| 575 | return; |
| 576 | |
| 577 | /* Destination bounding box */ |
| 578 | ddirty->left = min_t(s32, ddirty->left, dirty->unit_x1); |
| 579 | ddirty->top = min_t(s32, ddirty->top, dirty->unit_y1); |
| 580 | ddirty->right = max_t(s32, ddirty->right, dirty->unit_x2); |
| 581 | ddirty->bottom = max_t(s32, ddirty->bottom, dirty->unit_y2); |
| 582 | } |
| 583 | |
| 584 | /** |
| 585 | * vmw_stdu_dmabuf_fifo_commit - Callback to fill in and submit a DMA command. |
| 586 | * |
| 587 | * @dirty: The closure structure. |
| 588 | * |
| 589 | * Fills in the missing fields in a DMA command, and optionally encodes |
| 590 | * a screen target update command, depending on transfer direction. |
| 591 | */ |
| 592 | static void vmw_stdu_dmabuf_fifo_commit(struct vmw_kms_dirty *dirty) |
| 593 | { |
| 594 | struct vmw_stdu_dirty *ddirty = |
| 595 | container_of(dirty, struct vmw_stdu_dirty, base); |
| 596 | struct vmw_screen_target_display_unit *stdu = |
| 597 | container_of(dirty->unit, typeof(*stdu), base); |
| 598 | struct vmw_stdu_dma *cmd = dirty->cmd; |
| 599 | struct SVGA3dCopyBox *blit = (struct SVGA3dCopyBox *) &cmd[1]; |
| 600 | SVGA3dCmdSurfaceDMASuffix *suffix = |
| 601 | (SVGA3dCmdSurfaceDMASuffix *) &blit[dirty->num_hits]; |
| 602 | size_t blit_size = sizeof(*blit) * dirty->num_hits + sizeof(*suffix); |
| 603 | |
| 604 | if (!dirty->num_hits) { |
| 605 | vmw_fifo_commit(dirty->dev_priv, 0); |
| 606 | return; |
| 607 | } |
| 608 | |
| 609 | cmd->header.id = SVGA_3D_CMD_SURFACE_DMA; |
| 610 | cmd->header.size = sizeof(cmd->body) + blit_size; |
| 611 | vmw_bo_get_guest_ptr(&ddirty->buf->base, &cmd->body.guest.ptr); |
| 612 | cmd->body.guest.pitch = ddirty->pitch; |
| 613 | cmd->body.host.sid = stdu->display_srf->res.id; |
| 614 | cmd->body.host.face = 0; |
| 615 | cmd->body.host.mipmap = 0; |
| 616 | cmd->body.transfer = ddirty->transfer; |
| 617 | suffix->suffixSize = sizeof(*suffix); |
| 618 | suffix->maximumOffset = ddirty->buf->base.num_pages * PAGE_SIZE; |
| 619 | |
| 620 | if (ddirty->transfer == SVGA3D_WRITE_HOST_VRAM) { |
| 621 | blit_size += sizeof(struct vmw_stdu_update); |
| 622 | |
| 623 | vmw_stdu_populate_update(&suffix[1], stdu->base.unit, |
| 624 | ddirty->left, ddirty->right, |
| 625 | ddirty->top, ddirty->bottom); |
| 626 | } |
| 627 | |
| 628 | vmw_fifo_commit(dirty->dev_priv, sizeof(*cmd) + blit_size); |
| 629 | |
| 630 | ddirty->left = ddirty->top = S32_MAX; |
| 631 | ddirty->right = ddirty->bottom = S32_MIN; |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * vmw_kms_stdu_dma - Perform a DMA transfer between a dma-buffer backed |
| 636 | * framebuffer and the screen target system. |
| 637 | * |
| 638 | * @dev_priv: Pointer to the device private structure. |
| 639 | * @file_priv: Pointer to a struct drm-file identifying the caller. May be |
| 640 | * set to NULL, but then @user_fence_rep must also be set to NULL. |
| 641 | * @vfb: Pointer to the dma-buffer backed framebuffer. |
| 642 | * @clips: Array of clip rects. Either @clips or @vclips must be NULL. |
| 643 | * @vclips: Alternate array of clip rects. Either @clips or @vclips must |
| 644 | * be NULL. |
| 645 | * @num_clips: Number of clip rects in @clips or @vclips. |
| 646 | * @increment: Increment to use when looping over @clips or @vclips. |
| 647 | * @to_surface: Whether to DMA to the screen target system as opposed to |
| 648 | * from the screen target system. |
| 649 | * @interruptible: Whether to perform waits interruptible if possible. |
| 650 | * |
| 651 | * If DMA-ing till the screen target system, the function will also notify |
| 652 | * the screen target system that a bounding box of the cliprects has been |
| 653 | * updated. |
| 654 | * Returns 0 on success, negative error code on failure. -ERESTARTSYS if |
| 655 | * interrupted. |
| 656 | */ |
| 657 | int vmw_kms_stdu_dma(struct vmw_private *dev_priv, |
| 658 | struct drm_file *file_priv, |
| 659 | struct vmw_framebuffer *vfb, |
| 660 | struct drm_vmw_fence_rep __user *user_fence_rep, |
| 661 | struct drm_clip_rect *clips, |
| 662 | struct drm_vmw_rect *vclips, |
| 663 | uint32_t num_clips, |
| 664 | int increment, |
| 665 | bool to_surface, |
| 666 | bool interruptible) |
| 667 | { |
| 668 | struct vmw_dma_buffer *buf = |
| 669 | container_of(vfb, struct vmw_framebuffer_dmabuf, base)->buffer; |
| 670 | struct vmw_stdu_dirty ddirty; |
| 671 | int ret; |
| 672 | |
| 673 | ret = vmw_kms_helper_buffer_prepare(dev_priv, buf, interruptible, |
| 674 | false); |
| 675 | if (ret) |
| 676 | return ret; |
| 677 | |
| 678 | ddirty.transfer = (to_surface) ? SVGA3D_WRITE_HOST_VRAM : |
| 679 | SVGA3D_READ_HOST_VRAM; |
| 680 | ddirty.left = ddirty.top = S32_MAX; |
| 681 | ddirty.right = ddirty.bottom = S32_MIN; |
| 682 | ddirty.pitch = vfb->base.pitches[0]; |
| 683 | ddirty.buf = buf; |
| 684 | ddirty.base.fifo_commit = vmw_stdu_dmabuf_fifo_commit; |
| 685 | ddirty.base.clip = vmw_stdu_dmabuf_clip; |
| 686 | ddirty.base.fifo_reserve_size = sizeof(struct vmw_stdu_dma) + |
| 687 | num_clips * sizeof(SVGA3dCopyBox) + |
| 688 | sizeof(SVGA3dCmdSurfaceDMASuffix); |
| 689 | if (to_surface) |
| 690 | ddirty.base.fifo_reserve_size += sizeof(struct vmw_stdu_update); |
| 691 | |
| 692 | ret = vmw_kms_helper_dirty(dev_priv, vfb, clips, vclips, |
| 693 | 0, 0, num_clips, increment, &ddirty.base); |
| 694 | vmw_kms_helper_buffer_finish(dev_priv, file_priv, buf, NULL, |
| 695 | user_fence_rep); |
| 696 | |
| 697 | return ret; |
| 698 | } |
| 699 | |
| 700 | /** |
| 701 | * vmw_stdu_surface_clip - Callback to encode a surface copy command cliprect |
| 702 | * |
| 703 | * @dirty: The closure structure. |
| 704 | * |
| 705 | * Encodes a surface copy command cliprect and updates the bounding box |
| 706 | * for the copy. |
| 707 | */ |
| 708 | static void vmw_kms_stdu_surface_clip(struct vmw_kms_dirty *dirty) |
| 709 | { |
| 710 | struct vmw_stdu_dirty *sdirty = |
| 711 | container_of(dirty, struct vmw_stdu_dirty, base); |
| 712 | struct vmw_stdu_surface_copy *cmd = dirty->cmd; |
| 713 | struct vmw_screen_target_display_unit *stdu = |
| 714 | container_of(dirty->unit, typeof(*stdu), base); |
| 715 | |
| 716 | if (sdirty->sid != stdu->display_srf->res.id) { |
| 717 | struct SVGA3dCopyBox *blit = (struct SVGA3dCopyBox *) &cmd[1]; |
| 718 | |
| 719 | blit += dirty->num_hits; |
| 720 | blit->srcx = dirty->fb_x; |
| 721 | blit->srcy = dirty->fb_y; |
| 722 | blit->x = dirty->unit_x1; |
| 723 | blit->y = dirty->unit_y1; |
| 724 | blit->d = 1; |
| 725 | blit->w = dirty->unit_x2 - dirty->unit_x1; |
| 726 | blit->h = dirty->unit_y2 - dirty->unit_y1; |
| 727 | } |
| 728 | |
| 729 | dirty->num_hits++; |
| 730 | |
| 731 | /* Destination bounding box */ |
| 732 | sdirty->left = min_t(s32, sdirty->left, dirty->unit_x1); |
| 733 | sdirty->top = min_t(s32, sdirty->top, dirty->unit_y1); |
| 734 | sdirty->right = max_t(s32, sdirty->right, dirty->unit_x2); |
| 735 | sdirty->bottom = max_t(s32, sdirty->bottom, dirty->unit_y2); |
| 736 | } |
| 737 | |
| 738 | /** |
| 739 | * vmw_stdu_surface_fifo_commit - Callback to fill in and submit a surface |
| 740 | * copy command. |
| 741 | * |
| 742 | * @dirty: The closure structure. |
| 743 | * |
| 744 | * Fills in the missing fields in a surface copy command, and encodes a screen |
| 745 | * target update command. |
| 746 | */ |
| 747 | static void vmw_kms_stdu_surface_fifo_commit(struct vmw_kms_dirty *dirty) |
| 748 | { |
| 749 | struct vmw_stdu_dirty *sdirty = |
| 750 | container_of(dirty, struct vmw_stdu_dirty, base); |
| 751 | struct vmw_screen_target_display_unit *stdu = |
| 752 | container_of(dirty->unit, typeof(*stdu), base); |
| 753 | struct vmw_stdu_surface_copy *cmd = dirty->cmd; |
| 754 | struct vmw_stdu_update *update; |
| 755 | size_t blit_size = sizeof(SVGA3dCopyBox) * dirty->num_hits; |
| 756 | size_t commit_size; |
| 757 | |
| 758 | if (!dirty->num_hits) { |
| 759 | vmw_fifo_commit(dirty->dev_priv, 0); |
| 760 | return; |
| 761 | } |
| 762 | |
| 763 | if (sdirty->sid != stdu->display_srf->res.id) { |
| 764 | struct SVGA3dCopyBox *blit = (struct SVGA3dCopyBox *) &cmd[1]; |
| 765 | |
| 766 | cmd->header.id = SVGA_3D_CMD_SURFACE_COPY; |
| 767 | cmd->header.size = sizeof(cmd->body) + blit_size; |
| 768 | cmd->body.src.sid = sdirty->sid; |
| 769 | cmd->body.dest.sid = stdu->display_srf->res.id; |
| 770 | update = (struct vmw_stdu_update *) &blit[dirty->num_hits]; |
| 771 | commit_size = sizeof(*cmd) + blit_size + sizeof(*update); |
| 772 | } else { |
| 773 | update = dirty->cmd; |
| 774 | commit_size = sizeof(*update); |
| 775 | } |
| 776 | |
| 777 | vmw_stdu_populate_update(update, stdu->base.unit, sdirty->left, |
| 778 | sdirty->right, sdirty->top, sdirty->bottom); |
| 779 | |
| 780 | vmw_fifo_commit(dirty->dev_priv, commit_size); |
| 781 | |
| 782 | sdirty->left = sdirty->top = S32_MAX; |
| 783 | sdirty->right = sdirty->bottom = S32_MIN; |
| 784 | } |
| 785 | |
| 786 | /** |
| 787 | * vmw_kms_stdu_surface_dirty - Dirty part of a surface backed framebuffer |
| 788 | * |
| 789 | * @dev_priv: Pointer to the device private structure. |
| 790 | * @framebuffer: Pointer to the surface-buffer backed framebuffer. |
| 791 | * @clips: Array of clip rects. Either @clips or @vclips must be NULL. |
| 792 | * @vclips: Alternate array of clip rects. Either @clips or @vclips must |
| 793 | * be NULL. |
| 794 | * @srf: Pointer to surface to blit from. If NULL, the surface attached |
| 795 | * to @framebuffer will be used. |
| 796 | * @dest_x: X coordinate offset to align @srf with framebuffer coordinates. |
| 797 | * @dest_y: Y coordinate offset to align @srf with framebuffer coordinates. |
| 798 | * @num_clips: Number of clip rects in @clips. |
| 799 | * @inc: Increment to use when looping over @clips. |
| 800 | * @out_fence: If non-NULL, will return a ref-counted pointer to a |
| 801 | * struct vmw_fence_obj. The returned fence pointer may be NULL in which |
| 802 | * case the device has already synchronized. |
| 803 | * |
| 804 | * Returns 0 on success, negative error code on failure. -ERESTARTSYS if |
| 805 | * interrupted. |
| 806 | */ |
| 807 | int vmw_kms_stdu_surface_dirty(struct vmw_private *dev_priv, |
| 808 | struct vmw_framebuffer *framebuffer, |
| 809 | struct drm_clip_rect *clips, |
| 810 | struct drm_vmw_rect *vclips, |
| 811 | struct vmw_resource *srf, |
| 812 | s32 dest_x, |
| 813 | s32 dest_y, |
| 814 | unsigned num_clips, int inc, |
| 815 | struct vmw_fence_obj **out_fence) |
| 816 | { |
| 817 | struct vmw_framebuffer_surface *vfbs = |
| 818 | container_of(framebuffer, typeof(*vfbs), base); |
| 819 | struct vmw_stdu_dirty sdirty; |
| 820 | int ret; |
| 821 | |
| 822 | if (!srf) |
| 823 | srf = &vfbs->surface->res; |
| 824 | |
| 825 | ret = vmw_kms_helper_resource_prepare(srf, true); |
| 826 | if (ret) |
| 827 | return ret; |
| 828 | |
| 829 | if (vfbs->is_dmabuf_proxy) { |
| 830 | ret = vmw_kms_update_proxy(srf, clips, num_clips, inc); |
| 831 | if (ret) |
| 832 | goto out_finish; |
| 833 | } |
| 834 | |
| 835 | sdirty.base.fifo_commit = vmw_kms_stdu_surface_fifo_commit; |
| 836 | sdirty.base.clip = vmw_kms_stdu_surface_clip; |
| 837 | sdirty.base.fifo_reserve_size = sizeof(struct vmw_stdu_surface_copy) + |
| 838 | sizeof(SVGA3dCopyBox) * num_clips + |
| 839 | sizeof(struct vmw_stdu_update); |
| 840 | sdirty.sid = srf->id; |
| 841 | sdirty.left = sdirty.top = S32_MAX; |
| 842 | sdirty.right = sdirty.bottom = S32_MIN; |
| 843 | |
| 844 | ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips, |
| 845 | dest_x, dest_y, num_clips, inc, |
| 846 | &sdirty.base); |
| 847 | out_finish: |
| 848 | vmw_kms_helper_resource_finish(srf, out_fence); |
| 849 | |
| 850 | return ret; |
| 851 | } |
| 852 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 853 | |
| 854 | /* |
| 855 | * Screen Target CRTC dispatch table |
| 856 | */ |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 857 | static const struct drm_crtc_funcs vmw_stdu_crtc_funcs = { |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 858 | .gamma_set = vmw_du_crtc_gamma_set, |
| 859 | .destroy = vmw_stdu_crtc_destroy, |
Sinclair Yeh | 9c2542a | 2017-03-23 11:33:39 -0700 | [diff] [blame] | 860 | .reset = vmw_du_crtc_reset, |
| 861 | .atomic_duplicate_state = vmw_du_crtc_duplicate_state, |
| 862 | .atomic_destroy_state = vmw_du_crtc_destroy_state, |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 863 | .set_config = vmw_kms_set_config, |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 864 | .page_flip = vmw_stdu_crtc_page_flip, |
| 865 | }; |
| 866 | |
| 867 | |
| 868 | |
| 869 | /****************************************************************************** |
| 870 | * Screen Target Display Unit Encoder Functions |
| 871 | *****************************************************************************/ |
| 872 | |
| 873 | /** |
| 874 | * vmw_stdu_encoder_destroy - cleans up the STDU |
| 875 | * |
| 876 | * @encoder: used the get the containing STDU |
| 877 | * |
| 878 | * vmwgfx cleans up crtc/encoder/connector all at the same time so technically |
| 879 | * this can be a no-op. Nevertheless, it doesn't hurt of have this in case |
| 880 | * the common KMS code changes and somehow vmw_stdu_crtc_destroy() doesn't |
| 881 | * get called. |
| 882 | */ |
| 883 | static void vmw_stdu_encoder_destroy(struct drm_encoder *encoder) |
| 884 | { |
| 885 | vmw_stdu_destroy(vmw_encoder_to_stdu(encoder)); |
| 886 | } |
| 887 | |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 888 | static const struct drm_encoder_funcs vmw_stdu_encoder_funcs = { |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 889 | .destroy = vmw_stdu_encoder_destroy, |
| 890 | }; |
| 891 | |
| 892 | |
| 893 | |
| 894 | /****************************************************************************** |
| 895 | * Screen Target Display Unit Connector Functions |
| 896 | *****************************************************************************/ |
| 897 | |
| 898 | /** |
| 899 | * vmw_stdu_connector_destroy - cleans up the STDU |
| 900 | * |
| 901 | * @connector: used to get the containing STDU |
| 902 | * |
| 903 | * vmwgfx cleans up crtc/encoder/connector all at the same time so technically |
| 904 | * this can be a no-op. Nevertheless, it doesn't hurt of have this in case |
| 905 | * the common KMS code changes and somehow vmw_stdu_crtc_destroy() doesn't |
| 906 | * get called. |
| 907 | */ |
| 908 | static void vmw_stdu_connector_destroy(struct drm_connector *connector) |
| 909 | { |
| 910 | vmw_stdu_destroy(vmw_connector_to_stdu(connector)); |
| 911 | } |
| 912 | |
| 913 | |
| 914 | |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 915 | static const struct drm_connector_funcs vmw_stdu_connector_funcs = { |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 916 | .dpms = vmw_du_connector_dpms, |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 917 | .detect = vmw_du_connector_detect, |
| 918 | .fill_modes = vmw_du_connector_fill_modes, |
| 919 | .set_property = vmw_du_connector_set_property, |
| 920 | .destroy = vmw_stdu_connector_destroy, |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 921 | .reset = vmw_du_connector_reset, |
| 922 | .atomic_duplicate_state = vmw_du_connector_duplicate_state, |
| 923 | .atomic_destroy_state = vmw_du_connector_destroy_state, |
| 924 | .atomic_set_property = vmw_du_connector_atomic_set_property, |
| 925 | .atomic_get_property = vmw_du_connector_atomic_get_property, |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 926 | }; |
| 927 | |
| 928 | |
Sinclair Yeh | d947d1b | 2017-03-23 14:23:20 -0700 | [diff] [blame] | 929 | static const struct |
| 930 | drm_connector_helper_funcs vmw_stdu_connector_helper_funcs = { |
| 931 | .best_encoder = drm_atomic_helper_best_encoder, |
| 932 | }; |
| 933 | |
| 934 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 935 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 936 | /****************************************************************************** |
| 937 | * Screen Target Display Plane Functions |
| 938 | *****************************************************************************/ |
| 939 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 940 | |
| 941 | |
| 942 | /** |
| 943 | * vmw_stdu_primary_plane_cleanup_fb - Unpins the display surface |
| 944 | * |
| 945 | * @plane: display plane |
| 946 | * @old_state: Contains the FB to clean up |
| 947 | * |
| 948 | * Unpins the display surface |
| 949 | * |
| 950 | * Returns 0 on success |
| 951 | */ |
| 952 | static void |
| 953 | vmw_stdu_primary_plane_cleanup_fb(struct drm_plane *plane, |
| 954 | struct drm_plane_state *old_state) |
| 955 | { |
| 956 | struct vmw_plane_state *vps = vmw_plane_state_to_vps(old_state); |
| 957 | |
| 958 | if (vps->surf) |
| 959 | WARN_ON(!vps->pinned); |
| 960 | |
| 961 | vmw_du_plane_cleanup_fb(plane, old_state); |
| 962 | |
| 963 | vps->content_fb_type = SAME_AS_DISPLAY; |
| 964 | } |
| 965 | |
| 966 | |
| 967 | |
| 968 | /** |
| 969 | * vmw_stdu_primary_plane_prepare_fb - Readies the display surface |
| 970 | * |
| 971 | * @plane: display plane |
| 972 | * @new_state: info on the new plane state, including the FB |
| 973 | * |
| 974 | * This function allocates a new display surface if the content is |
| 975 | * backed by a DMA. The display surface is pinned here, and it'll |
| 976 | * be unpinned in .cleanup_fb() |
| 977 | * |
| 978 | * Returns 0 on success |
| 979 | */ |
| 980 | static int |
| 981 | vmw_stdu_primary_plane_prepare_fb(struct drm_plane *plane, |
| 982 | struct drm_plane_state *new_state) |
| 983 | { |
| 984 | struct drm_framebuffer *new_fb = new_state->fb; |
| 985 | struct vmw_framebuffer *vfb; |
| 986 | struct vmw_plane_state *vps = vmw_plane_state_to_vps(new_state); |
| 987 | enum stdu_content_type new_content_type; |
| 988 | struct vmw_framebuffer_surface *new_vfbs; |
| 989 | struct drm_crtc *crtc = new_state->crtc; |
| 990 | uint32_t hdisplay = new_state->crtc_w, vdisplay = new_state->crtc_h; |
| 991 | int ret; |
| 992 | |
| 993 | /* No FB to prepare */ |
| 994 | if (!new_fb) { |
| 995 | if (vps->surf) { |
| 996 | WARN_ON(vps->pinned != 0); |
| 997 | vmw_surface_unreference(&vps->surf); |
| 998 | } |
| 999 | |
| 1000 | return 0; |
| 1001 | } |
| 1002 | |
| 1003 | vfb = vmw_framebuffer_to_vfb(new_fb); |
| 1004 | new_vfbs = (vfb->dmabuf) ? NULL : vmw_framebuffer_to_vfbs(new_fb); |
| 1005 | |
| 1006 | if (new_vfbs && new_vfbs->surface->base_size.width == hdisplay && |
| 1007 | new_vfbs->surface->base_size.height == vdisplay) |
| 1008 | new_content_type = SAME_AS_DISPLAY; |
| 1009 | else if (vfb->dmabuf) |
| 1010 | new_content_type = SEPARATE_DMA; |
| 1011 | else |
| 1012 | new_content_type = SEPARATE_SURFACE; |
| 1013 | |
| 1014 | if (new_content_type != SAME_AS_DISPLAY) { |
| 1015 | struct vmw_surface content_srf; |
| 1016 | struct drm_vmw_size display_base_size = {0}; |
| 1017 | |
| 1018 | display_base_size.width = hdisplay; |
| 1019 | display_base_size.height = vdisplay; |
| 1020 | display_base_size.depth = 1; |
| 1021 | |
| 1022 | /* |
| 1023 | * If content buffer is a DMA buf, then we have to construct |
| 1024 | * surface info |
| 1025 | */ |
| 1026 | if (new_content_type == SEPARATE_DMA) { |
| 1027 | |
| 1028 | switch (new_fb->format->cpp[0]*8) { |
| 1029 | case 32: |
| 1030 | content_srf.format = SVGA3D_X8R8G8B8; |
| 1031 | break; |
| 1032 | |
| 1033 | case 16: |
| 1034 | content_srf.format = SVGA3D_R5G6B5; |
| 1035 | break; |
| 1036 | |
| 1037 | case 8: |
| 1038 | content_srf.format = SVGA3D_P8; |
| 1039 | break; |
| 1040 | |
| 1041 | default: |
| 1042 | DRM_ERROR("Invalid format\n"); |
| 1043 | return -EINVAL; |
| 1044 | } |
| 1045 | |
| 1046 | content_srf.flags = 0; |
| 1047 | content_srf.mip_levels[0] = 1; |
| 1048 | content_srf.multisample_count = 0; |
| 1049 | } else { |
| 1050 | content_srf = *new_vfbs->surface; |
| 1051 | } |
| 1052 | |
| 1053 | if (vps->surf) { |
| 1054 | struct drm_vmw_size cur_base_size = vps->surf->base_size; |
| 1055 | |
| 1056 | if (cur_base_size.width != display_base_size.width || |
| 1057 | cur_base_size.height != display_base_size.height || |
| 1058 | vps->surf->format != content_srf.format) { |
| 1059 | WARN_ON(vps->pinned != 0); |
| 1060 | vmw_surface_unreference(&vps->surf); |
| 1061 | } |
| 1062 | |
| 1063 | } |
| 1064 | |
| 1065 | if (!vps->surf) { |
| 1066 | ret = vmw_surface_gb_priv_define |
| 1067 | (crtc->dev, |
| 1068 | /* Kernel visible only */ |
| 1069 | 0, |
| 1070 | content_srf.flags, |
| 1071 | content_srf.format, |
| 1072 | true, /* a scanout buffer */ |
| 1073 | content_srf.mip_levels[0], |
| 1074 | content_srf.multisample_count, |
| 1075 | 0, |
| 1076 | display_base_size, |
| 1077 | &vps->surf); |
| 1078 | if (ret != 0) { |
| 1079 | DRM_ERROR("Couldn't allocate STDU surface.\n"); |
| 1080 | return ret; |
| 1081 | } |
| 1082 | } |
| 1083 | } else { |
| 1084 | /* |
| 1085 | * prepare_fb and clean_fb should only take care of pinning |
| 1086 | * and unpinning. References are tracked by state objects. |
| 1087 | * The only time we add a reference in prepare_fb is if the |
| 1088 | * state object doesn't have a reference to begin with |
| 1089 | */ |
| 1090 | if (vps->surf) { |
| 1091 | WARN_ON(vps->pinned != 0); |
| 1092 | vmw_surface_unreference(&vps->surf); |
| 1093 | } |
| 1094 | |
| 1095 | vps->surf = vmw_surface_reference(new_vfbs->surface); |
| 1096 | } |
| 1097 | |
| 1098 | if (vps->surf) { |
| 1099 | |
| 1100 | /* Pin new surface before flipping */ |
| 1101 | ret = vmw_resource_pin(&vps->surf->res, false); |
| 1102 | if (ret) |
| 1103 | goto out_srf_unref; |
| 1104 | |
| 1105 | vps->pinned++; |
| 1106 | } |
| 1107 | |
| 1108 | vps->content_fb_type = new_content_type; |
| 1109 | return 0; |
| 1110 | |
| 1111 | out_srf_unref: |
| 1112 | vmw_surface_unreference(&vps->surf); |
| 1113 | return ret; |
| 1114 | } |
| 1115 | |
| 1116 | |
| 1117 | |
| 1118 | /** |
| 1119 | * vmw_stdu_primary_plane_atomic_update - formally switches STDU to new plane |
| 1120 | * |
| 1121 | * @plane: display plane |
| 1122 | * @old_state: Only used to get crtc info |
| 1123 | * |
| 1124 | * Formally update stdu->display_srf to the new plane, and bind the new |
| 1125 | * plane STDU. This function is called during the commit phase when |
| 1126 | * all the preparation have been done and all the configurations have |
| 1127 | * been checked. |
| 1128 | */ |
| 1129 | static void |
| 1130 | vmw_stdu_primary_plane_atomic_update(struct drm_plane *plane, |
| 1131 | struct drm_plane_state *old_state) |
| 1132 | { |
| 1133 | struct vmw_private *dev_priv; |
| 1134 | struct vmw_screen_target_display_unit *stdu; |
| 1135 | struct vmw_plane_state *vps = vmw_plane_state_to_vps(plane->state); |
| 1136 | struct drm_crtc *crtc = plane->state->crtc ?: old_state->crtc; |
| 1137 | int ret; |
| 1138 | |
| 1139 | stdu = vmw_crtc_to_stdu(crtc); |
| 1140 | dev_priv = vmw_priv(crtc->dev); |
| 1141 | |
| 1142 | stdu->display_srf = vps->surf; |
| 1143 | stdu->content_fb_type = vps->content_fb_type; |
| 1144 | |
| 1145 | if (!stdu->defined) |
| 1146 | return; |
| 1147 | |
| 1148 | if (plane->state->fb) |
| 1149 | ret = vmw_stdu_bind_st(dev_priv, stdu, &stdu->display_srf->res); |
| 1150 | else |
| 1151 | ret = vmw_stdu_bind_st(dev_priv, stdu, NULL); |
| 1152 | |
| 1153 | /* |
| 1154 | * We cannot really fail this function, so if we do, then output an |
| 1155 | * error and quit |
| 1156 | */ |
| 1157 | if (ret) |
| 1158 | DRM_ERROR("Failed to bind surface to STDU.\n"); |
| 1159 | else |
| 1160 | crtc->primary->fb = plane->state->fb; |
| 1161 | } |
| 1162 | |
| 1163 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1164 | static const struct drm_plane_funcs vmw_stdu_plane_funcs = { |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 1165 | .update_plane = drm_atomic_helper_update_plane, |
| 1166 | .disable_plane = drm_atomic_helper_disable_plane, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1167 | .destroy = vmw_du_primary_plane_destroy, |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 1168 | .reset = vmw_du_plane_reset, |
| 1169 | .atomic_duplicate_state = vmw_du_plane_duplicate_state, |
| 1170 | .atomic_destroy_state = vmw_du_plane_destroy_state, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1171 | }; |
| 1172 | |
| 1173 | static const struct drm_plane_funcs vmw_stdu_cursor_funcs = { |
Sinclair Yeh | 904bb5e | 2017-03-23 14:29:22 -0700 | [diff] [blame] | 1174 | .update_plane = drm_atomic_helper_update_plane, |
| 1175 | .disable_plane = drm_atomic_helper_disable_plane, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1176 | .destroy = vmw_du_cursor_plane_destroy, |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 1177 | .reset = vmw_du_plane_reset, |
| 1178 | .atomic_duplicate_state = vmw_du_plane_duplicate_state, |
| 1179 | .atomic_destroy_state = vmw_du_plane_destroy_state, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1180 | }; |
| 1181 | |
| 1182 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 1183 | /* |
| 1184 | * Atomic Helpers |
| 1185 | */ |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 1186 | static const struct |
| 1187 | drm_plane_helper_funcs vmw_stdu_cursor_plane_helper_funcs = { |
| 1188 | .atomic_check = vmw_du_cursor_plane_atomic_check, |
| 1189 | .atomic_update = vmw_du_cursor_plane_atomic_update, |
| 1190 | .prepare_fb = vmw_du_cursor_plane_prepare_fb, |
| 1191 | .cleanup_fb = vmw_du_plane_cleanup_fb, |
| 1192 | }; |
| 1193 | |
| 1194 | static const struct |
| 1195 | drm_plane_helper_funcs vmw_stdu_primary_plane_helper_funcs = { |
| 1196 | .atomic_check = vmw_du_primary_plane_atomic_check, |
| 1197 | .atomic_update = vmw_stdu_primary_plane_atomic_update, |
| 1198 | .prepare_fb = vmw_stdu_primary_plane_prepare_fb, |
| 1199 | .cleanup_fb = vmw_stdu_primary_plane_cleanup_fb, |
| 1200 | }; |
| 1201 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 1202 | static const struct drm_crtc_helper_funcs vmw_stdu_crtc_helper_funcs = { |
| 1203 | .prepare = vmw_stdu_crtc_helper_prepare, |
| 1204 | .commit = vmw_stdu_crtc_helper_commit, |
| 1205 | .disable = vmw_stdu_crtc_helper_disable, |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 1206 | .mode_set_nofb = vmw_stdu_crtc_mode_set_nofb, |
| 1207 | .atomic_check = vmw_du_crtc_atomic_check, |
| 1208 | .atomic_begin = vmw_du_crtc_atomic_begin, |
| 1209 | .atomic_flush = vmw_du_crtc_atomic_flush, |
| 1210 | }; |
| 1211 | |
| 1212 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1213 | /** |
| 1214 | * vmw_stdu_init - Sets up a Screen Target Display Unit |
| 1215 | * |
| 1216 | * @dev_priv: VMW DRM device |
| 1217 | * @unit: unit number range from 0 to VMWGFX_NUM_DISPLAY_UNITS |
| 1218 | * |
| 1219 | * This function is called once per CRTC, and allocates one Screen Target |
| 1220 | * display unit to represent that CRTC. Since the SVGA device does not separate |
| 1221 | * out encoder and connector, they are represented as part of the STDU as well. |
| 1222 | */ |
| 1223 | static int vmw_stdu_init(struct vmw_private *dev_priv, unsigned unit) |
| 1224 | { |
| 1225 | struct vmw_screen_target_display_unit *stdu; |
| 1226 | struct drm_device *dev = dev_priv->dev; |
| 1227 | struct drm_connector *connector; |
| 1228 | struct drm_encoder *encoder; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1229 | struct drm_plane *primary, *cursor; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1230 | struct drm_crtc *crtc; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1231 | int ret; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1232 | |
| 1233 | |
| 1234 | stdu = kzalloc(sizeof(*stdu), GFP_KERNEL); |
| 1235 | if (!stdu) |
| 1236 | return -ENOMEM; |
| 1237 | |
| 1238 | stdu->base.unit = unit; |
| 1239 | crtc = &stdu->base.crtc; |
| 1240 | encoder = &stdu->base.encoder; |
| 1241 | connector = &stdu->base.connector; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1242 | primary = &stdu->base.primary; |
| 1243 | cursor = &stdu->base.cursor; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1244 | |
| 1245 | stdu->base.pref_active = (unit == 0); |
| 1246 | stdu->base.pref_width = dev_priv->initial_width; |
| 1247 | stdu->base.pref_height = dev_priv->initial_height; |
Sinclair Yeh | 9c2542a | 2017-03-23 11:33:39 -0700 | [diff] [blame] | 1248 | |
| 1249 | /* |
| 1250 | * Remove this after enabling atomic because property values can |
| 1251 | * only exist in a state object |
| 1252 | */ |
Thomas Hellstrom | 2e69b25 | 2016-02-12 09:59:50 +0100 | [diff] [blame] | 1253 | stdu->base.is_implicit = false; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1254 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1255 | /* Initialize primary plane */ |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 1256 | vmw_du_plane_reset(primary); |
| 1257 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1258 | ret = drm_universal_plane_init(dev, primary, |
| 1259 | 0, &vmw_stdu_plane_funcs, |
| 1260 | vmw_primary_plane_formats, |
| 1261 | ARRAY_SIZE(vmw_primary_plane_formats), |
| 1262 | DRM_PLANE_TYPE_PRIMARY, NULL); |
| 1263 | if (ret) { |
| 1264 | DRM_ERROR("Failed to initialize primary plane"); |
| 1265 | goto err_free; |
| 1266 | } |
| 1267 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 1268 | drm_plane_helper_add(primary, &vmw_stdu_primary_plane_helper_funcs); |
| 1269 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1270 | /* Initialize cursor plane */ |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 1271 | vmw_du_plane_reset(cursor); |
| 1272 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1273 | ret = drm_universal_plane_init(dev, cursor, |
| 1274 | 0, &vmw_stdu_cursor_funcs, |
| 1275 | vmw_cursor_plane_formats, |
| 1276 | ARRAY_SIZE(vmw_cursor_plane_formats), |
| 1277 | DRM_PLANE_TYPE_CURSOR, NULL); |
| 1278 | if (ret) { |
| 1279 | DRM_ERROR("Failed to initialize cursor plane"); |
| 1280 | drm_plane_cleanup(&stdu->base.primary); |
| 1281 | goto err_free; |
| 1282 | } |
| 1283 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 1284 | drm_plane_helper_add(cursor, &vmw_stdu_cursor_plane_helper_funcs); |
| 1285 | |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 1286 | vmw_du_connector_reset(connector); |
| 1287 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1288 | ret = drm_connector_init(dev, connector, &vmw_stdu_connector_funcs, |
| 1289 | DRM_MODE_CONNECTOR_VIRTUAL); |
| 1290 | if (ret) { |
| 1291 | DRM_ERROR("Failed to initialize connector\n"); |
| 1292 | goto err_free; |
| 1293 | } |
Sinclair Yeh | d947d1b | 2017-03-23 14:23:20 -0700 | [diff] [blame] | 1294 | |
| 1295 | drm_connector_helper_add(connector, &vmw_stdu_connector_helper_funcs); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1296 | connector->status = vmw_du_connector_detect(connector, false); |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 1297 | vmw_connector_state_to_vcs(connector->state)->is_implicit = false; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1298 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1299 | ret = drm_encoder_init(dev, encoder, &vmw_stdu_encoder_funcs, |
| 1300 | DRM_MODE_ENCODER_VIRTUAL, NULL); |
| 1301 | if (ret) { |
| 1302 | DRM_ERROR("Failed to initialize encoder\n"); |
| 1303 | goto err_free_connector; |
| 1304 | } |
| 1305 | |
| 1306 | (void) drm_mode_connector_attach_encoder(connector, encoder); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1307 | encoder->possible_crtcs = (1 << unit); |
| 1308 | encoder->possible_clones = 0; |
| 1309 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1310 | ret = drm_connector_register(connector); |
| 1311 | if (ret) { |
| 1312 | DRM_ERROR("Failed to register connector\n"); |
| 1313 | goto err_free_encoder; |
| 1314 | } |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1315 | |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 1316 | vmw_du_crtc_reset(crtc); |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1317 | ret = drm_crtc_init_with_planes(dev, crtc, &stdu->base.primary, |
| 1318 | &stdu->base.cursor, |
| 1319 | &vmw_stdu_crtc_funcs, NULL); |
| 1320 | if (ret) { |
| 1321 | DRM_ERROR("Failed to initialize CRTC\n"); |
| 1322 | goto err_free_unregister; |
| 1323 | } |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1324 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 1325 | drm_crtc_helper_add(crtc, &vmw_stdu_crtc_helper_funcs); |
| 1326 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1327 | drm_mode_crtc_set_gamma_size(crtc, 256); |
| 1328 | |
| 1329 | drm_object_attach_property(&connector->base, |
Thomas Hellstrom | 578e609 | 2016-02-12 09:45:42 +0100 | [diff] [blame] | 1330 | dev_priv->hotplug_mode_update_property, 1); |
| 1331 | drm_object_attach_property(&connector->base, |
| 1332 | dev->mode_config.suggested_x_property, 0); |
| 1333 | drm_object_attach_property(&connector->base, |
| 1334 | dev->mode_config.suggested_y_property, 0); |
Thomas Hellstrom | 76404ac | 2016-02-12 09:55:45 +0100 | [diff] [blame] | 1335 | if (dev_priv->implicit_placement_property) |
| 1336 | drm_object_attach_property |
| 1337 | (&connector->base, |
| 1338 | dev_priv->implicit_placement_property, |
| 1339 | stdu->base.is_implicit); |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1340 | return 0; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 1341 | |
| 1342 | err_free_unregister: |
| 1343 | drm_connector_unregister(connector); |
| 1344 | err_free_encoder: |
| 1345 | drm_encoder_cleanup(encoder); |
| 1346 | err_free_connector: |
| 1347 | drm_connector_cleanup(connector); |
| 1348 | err_free: |
| 1349 | kfree(stdu); |
| 1350 | return ret; |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | |
| 1354 | |
| 1355 | /** |
| 1356 | * vmw_stdu_destroy - Cleans up a vmw_screen_target_display_unit |
| 1357 | * |
| 1358 | * @stdu: Screen Target Display Unit to be destroyed |
| 1359 | * |
| 1360 | * Clean up after vmw_stdu_init |
| 1361 | */ |
| 1362 | static void vmw_stdu_destroy(struct vmw_screen_target_display_unit *stdu) |
| 1363 | { |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1364 | vmw_du_cleanup(&stdu->base); |
| 1365 | kfree(stdu); |
| 1366 | } |
| 1367 | |
| 1368 | |
| 1369 | |
| 1370 | /****************************************************************************** |
| 1371 | * Screen Target Display KMS Functions |
| 1372 | * |
| 1373 | * These functions are called by the common KMS code in vmwgfx_kms.c |
| 1374 | *****************************************************************************/ |
| 1375 | |
| 1376 | /** |
| 1377 | * vmw_kms_stdu_init_display - Initializes a Screen Target based display |
| 1378 | * |
| 1379 | * @dev_priv: VMW DRM device |
| 1380 | * |
| 1381 | * This function initialize a Screen Target based display device. It checks |
| 1382 | * the capability bits to make sure the underlying hardware can support |
| 1383 | * screen targets, and then creates the maximum number of CRTCs, a.k.a Display |
| 1384 | * Units, as supported by the display hardware. |
| 1385 | * |
| 1386 | * RETURNS: |
| 1387 | * 0 on success, error code otherwise |
| 1388 | */ |
| 1389 | int vmw_kms_stdu_init_display(struct vmw_private *dev_priv) |
| 1390 | { |
| 1391 | struct drm_device *dev = dev_priv->dev; |
| 1392 | int i, ret; |
| 1393 | |
| 1394 | |
| 1395 | /* Do nothing if Screen Target support is turned off */ |
| 1396 | if (!VMWGFX_ENABLE_SCREEN_TARGET_OTABLE) |
| 1397 | return -ENOSYS; |
| 1398 | |
Sinclair Yeh | f89c6c3 | 2015-06-26 01:54:28 -0700 | [diff] [blame] | 1399 | if (!(dev_priv->capabilities & SVGA_CAP_GBOBJECTS)) |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1400 | return -ENOSYS; |
| 1401 | |
| 1402 | ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS); |
| 1403 | if (unlikely(ret != 0)) |
| 1404 | return ret; |
| 1405 | |
Thomas Hellstrom | 6bf6bf0 | 2015-06-26 02:22:40 -0700 | [diff] [blame] | 1406 | dev_priv->active_display_unit = vmw_du_screen_target; |
| 1407 | |
Thomas Hellstrom | 76404ac | 2016-02-12 09:55:45 +0100 | [diff] [blame] | 1408 | vmw_kms_create_implicit_placement_property(dev_priv, false); |
| 1409 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1410 | for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i) { |
| 1411 | ret = vmw_stdu_init(dev_priv, i); |
| 1412 | |
| 1413 | if (unlikely(ret != 0)) { |
| 1414 | DRM_ERROR("Failed to initialize STDU %d", i); |
| 1415 | goto err_vblank_cleanup; |
| 1416 | } |
| 1417 | } |
| 1418 | |
Sinclair Yeh | 35c0512 | 2015-06-26 01:42:06 -0700 | [diff] [blame] | 1419 | DRM_INFO("Screen Target Display device initialized\n"); |
| 1420 | |
| 1421 | return 0; |
| 1422 | |
| 1423 | err_vblank_cleanup: |
| 1424 | drm_vblank_cleanup(dev); |
| 1425 | return ret; |
| 1426 | } |
| 1427 | |
| 1428 | |
| 1429 | |
| 1430 | /** |
| 1431 | * vmw_kms_stdu_close_display - Cleans up after vmw_kms_stdu_init_display |
| 1432 | * |
| 1433 | * @dev_priv: VMW DRM device |
| 1434 | * |
| 1435 | * Frees up any resources allocated by vmw_kms_stdu_init_display |
| 1436 | * |
| 1437 | * RETURNS: |
| 1438 | * 0 on success |
| 1439 | */ |
| 1440 | int vmw_kms_stdu_close_display(struct vmw_private *dev_priv) |
| 1441 | { |
| 1442 | struct drm_device *dev = dev_priv->dev; |
| 1443 | |
| 1444 | drm_vblank_cleanup(dev); |
| 1445 | |
| 1446 | return 0; |
| 1447 | } |