linux/drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c
<<
>>
Prefs
   1/**************************************************************************
   2 *
   3 * Copyright © 2011-2015 VMware, Inc., Palo Alto, CA., USA
   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"
  29#include <drm/drm_plane_helper.h>
  30
  31
  32#define vmw_crtc_to_sou(x) \
  33        container_of(x, struct vmw_screen_object_unit, base.crtc)
  34#define vmw_encoder_to_sou(x) \
  35        container_of(x, struct vmw_screen_object_unit, base.encoder)
  36#define vmw_connector_to_sou(x) \
  37        container_of(x, struct vmw_screen_object_unit, base.connector)
  38
  39/**
  40 * struct vmw_kms_sou_surface_dirty - Closure structure for
  41 * blit surface to screen command.
  42 * @base: The base type we derive from. Used by vmw_kms_helper_dirty().
  43 * @left: Left side of bounding box.
  44 * @right: Right side of bounding box.
  45 * @top: Top side of bounding box.
  46 * @bottom: Bottom side of bounding box.
  47 * @dst_x: Difference between source clip rects and framebuffer coordinates.
  48 * @dst_y: Difference between source clip rects and framebuffer coordinates.
  49 * @sid: Surface id of surface to copy from.
  50 */
  51struct vmw_kms_sou_surface_dirty {
  52        struct vmw_kms_dirty base;
  53        s32 left, right, top, bottom;
  54        s32 dst_x, dst_y;
  55        u32 sid;
  56};
  57
  58/*
  59 * SVGA commands that are used by this code. Please see the device headers
  60 * for explanation.
  61 */
  62struct vmw_kms_sou_readback_blit {
  63        uint32 header;
  64        SVGAFifoCmdBlitScreenToGMRFB body;
  65};
  66
  67struct vmw_kms_sou_dmabuf_blit {
  68        uint32 header;
  69        SVGAFifoCmdBlitGMRFBToScreen body;
  70};
  71
  72struct vmw_kms_sou_dirty_cmd {
  73        SVGA3dCmdHeader header;
  74        SVGA3dCmdBlitSurfaceToScreen body;
  75};
  76
  77/**
  78 * Display unit using screen objects.
  79 */
  80struct vmw_screen_object_unit {
  81        struct vmw_display_unit base;
  82
  83        unsigned long buffer_size; /**< Size of allocated buffer */
  84        struct vmw_dma_buffer *buffer; /**< Backing store buffer */
  85
  86        bool defined;
  87};
  88
  89static void vmw_sou_destroy(struct vmw_screen_object_unit *sou)
  90{
  91        vmw_du_cleanup(&sou->base);
  92        kfree(sou);
  93}
  94
  95
  96/*
  97 * Screen Object Display Unit CRTC functions
  98 */
  99
 100static void vmw_sou_crtc_destroy(struct drm_crtc *crtc)
 101{
 102        vmw_sou_destroy(vmw_crtc_to_sou(crtc));
 103}
 104
 105/**
 106 * Send the fifo command to create a screen.
 107 */
 108static int vmw_sou_fifo_create(struct vmw_private *dev_priv,
 109                               struct vmw_screen_object_unit *sou,
 110                               uint32_t x, uint32_t y,
 111                               struct drm_display_mode *mode)
 112{
 113        size_t fifo_size;
 114
 115        struct {
 116                struct {
 117                        uint32_t cmdType;
 118                } header;
 119                SVGAScreenObject obj;
 120        } *cmd;
 121
 122        BUG_ON(!sou->buffer);
 123
 124        fifo_size = sizeof(*cmd);
 125        cmd = vmw_fifo_reserve(dev_priv, fifo_size);
 126        /* The hardware has hung, nothing we can do about it here. */
 127        if (unlikely(cmd == NULL)) {
 128                DRM_ERROR("Fifo reserve failed.\n");
 129                return -ENOMEM;
 130        }
 131
 132        memset(cmd, 0, fifo_size);
 133        cmd->header.cmdType = SVGA_CMD_DEFINE_SCREEN;
 134        cmd->obj.structSize = sizeof(SVGAScreenObject);
 135        cmd->obj.id = sou->base.unit;
 136        cmd->obj.flags = SVGA_SCREEN_HAS_ROOT |
 137                (sou->base.unit == 0 ? SVGA_SCREEN_IS_PRIMARY : 0);
 138        cmd->obj.size.width = mode->hdisplay;
 139        cmd->obj.size.height = mode->vdisplay;
 140        if (sou->base.is_implicit) {
 141                cmd->obj.root.x = x;
 142                cmd->obj.root.y = y;
 143        } else {
 144                cmd->obj.root.x = sou->base.gui_x;
 145                cmd->obj.root.y = sou->base.gui_y;
 146        }
 147        sou->base.set_gui_x = cmd->obj.root.x;
 148        sou->base.set_gui_y = cmd->obj.root.y;
 149
 150        /* Ok to assume that buffer is pinned in vram */
 151        vmw_bo_get_guest_ptr(&sou->buffer->base, &cmd->obj.backingStore.ptr);
 152        cmd->obj.backingStore.pitch = mode->hdisplay * 4;
 153
 154        vmw_fifo_commit(dev_priv, fifo_size);
 155
 156        sou->defined = true;
 157
 158        return 0;
 159}
 160
 161/**
 162 * Send the fifo command to destroy a screen.
 163 */
 164static int vmw_sou_fifo_destroy(struct vmw_private *dev_priv,
 165                                struct vmw_screen_object_unit *sou)
 166{
 167        size_t fifo_size;
 168        int ret;
 169
 170        struct {
 171                struct {
 172                        uint32_t cmdType;
 173                } header;
 174                SVGAFifoCmdDestroyScreen body;
 175        } *cmd;
 176
 177        /* no need to do anything */
 178        if (unlikely(!sou->defined))
 179                return 0;
 180
 181        fifo_size = sizeof(*cmd);
 182        cmd = vmw_fifo_reserve(dev_priv, fifo_size);
 183        /* the hardware has hung, nothing we can do about it here */
 184        if (unlikely(cmd == NULL)) {
 185                DRM_ERROR("Fifo reserve failed.\n");
 186                return -ENOMEM;
 187        }
 188
 189        memset(cmd, 0, fifo_size);
 190        cmd->header.cmdType = SVGA_CMD_DESTROY_SCREEN;
 191        cmd->body.screenId = sou->base.unit;
 192
 193        vmw_fifo_commit(dev_priv, fifo_size);
 194
 195        /* Force sync */
 196        ret = vmw_fallback_wait(dev_priv, false, true, 0, false, 3*HZ);
 197        if (unlikely(ret != 0))
 198                DRM_ERROR("Failed to sync with HW");
 199        else
 200                sou->defined = false;
 201
 202        return ret;
 203}
 204
 205/**
 206 * Free the backing store.
 207 */
 208static void vmw_sou_backing_free(struct vmw_private *dev_priv,
 209                                 struct vmw_screen_object_unit *sou)
 210{
 211        vmw_dmabuf_unreference(&sou->buffer);
 212        sou->buffer_size = 0;
 213}
 214
 215/**
 216 * Allocate the backing store for the buffer.
 217 */
 218static int vmw_sou_backing_alloc(struct vmw_private *dev_priv,
 219                                 struct vmw_screen_object_unit *sou,
 220                                 unsigned long size)
 221{
 222        int ret;
 223
 224        if (sou->buffer_size == size)
 225                return 0;
 226
 227        if (sou->buffer)
 228                vmw_sou_backing_free(dev_priv, sou);
 229
 230        sou->buffer = kzalloc(sizeof(*sou->buffer), GFP_KERNEL);
 231        if (unlikely(sou->buffer == NULL))
 232                return -ENOMEM;
 233
 234        /* After we have alloced the backing store might not be able to
 235         * resume the overlays, this is preferred to failing to alloc.
 236         */
 237        vmw_overlay_pause_all(dev_priv);
 238        ret = vmw_dmabuf_init(dev_priv, sou->buffer, size,
 239                              &vmw_vram_ne_placement,
 240                              false, &vmw_dmabuf_bo_free);
 241        vmw_overlay_resume_all(dev_priv);
 242
 243        if (unlikely(ret != 0))
 244                sou->buffer = NULL; /* vmw_dmabuf_init frees on error */
 245        else
 246                sou->buffer_size = size;
 247
 248        return ret;
 249}
 250
 251static int vmw_sou_crtc_set_config(struct drm_mode_set *set)
 252{
 253        struct vmw_private *dev_priv;
 254        struct vmw_screen_object_unit *sou;
 255        struct drm_connector *connector;
 256        struct drm_display_mode *mode;
 257        struct drm_encoder *encoder;
 258        struct vmw_framebuffer *vfb;
 259        struct drm_framebuffer *fb;
 260        struct drm_crtc *crtc;
 261        int ret = 0;
 262
 263        if (!set)
 264                return -EINVAL;
 265
 266        if (!set->crtc)
 267                return -EINVAL;
 268
 269        /* get the sou */
 270        crtc = set->crtc;
 271        sou = vmw_crtc_to_sou(crtc);
 272        vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL;
 273        dev_priv = vmw_priv(crtc->dev);
 274
 275        if (set->num_connectors > 1) {
 276                DRM_ERROR("Too many connectors\n");
 277                return -EINVAL;
 278        }
 279
 280        if (set->num_connectors == 1 &&
 281            set->connectors[0] != &sou->base.connector) {
 282                DRM_ERROR("Connector doesn't match %p %p\n",
 283                        set->connectors[0], &sou->base.connector);
 284                return -EINVAL;
 285        }
 286
 287        /* Only one active implicit frame-buffer at a time. */
 288        mutex_lock(&dev_priv->global_kms_state_mutex);
 289        if (sou->base.is_implicit &&
 290            dev_priv->implicit_fb && vfb &&
 291            !(dev_priv->num_implicit == 1 &&
 292              sou->base.active_implicit) &&
 293            dev_priv->implicit_fb != vfb) {
 294                mutex_unlock(&dev_priv->global_kms_state_mutex);
 295                DRM_ERROR("Multiple implicit framebuffers not supported.\n");
 296                return -EINVAL;
 297        }
 298        mutex_unlock(&dev_priv->global_kms_state_mutex);
 299
 300        /* since they always map one to one these are safe */
 301        connector = &sou->base.connector;
 302        encoder = &sou->base.encoder;
 303
 304        /* should we turn the crtc off */
 305        if (set->num_connectors == 0 || !set->mode || !set->fb) {
 306                ret = vmw_sou_fifo_destroy(dev_priv, sou);
 307                /* the hardware has hung don't do anything more */
 308                if (unlikely(ret != 0))
 309                        return ret;
 310
 311                connector->encoder = NULL;
 312                encoder->crtc = NULL;
 313                crtc->primary->fb = NULL;
 314                crtc->x = 0;
 315                crtc->y = 0;
 316                crtc->enabled = false;
 317
 318                vmw_kms_del_active(dev_priv, &sou->base);
 319
 320                vmw_sou_backing_free(dev_priv, sou);
 321
 322                return 0;
 323        }
 324
 325
 326        /* we now know we want to set a mode */
 327        mode = set->mode;
 328        fb = set->fb;
 329
 330        if (set->x + mode->hdisplay > fb->width ||
 331            set->y + mode->vdisplay > fb->height) {
 332                DRM_ERROR("set outside of framebuffer\n");
 333                return -EINVAL;
 334        }
 335
 336        vmw_svga_enable(dev_priv);
 337
 338        if (mode->hdisplay != crtc->mode.hdisplay ||
 339            mode->vdisplay != crtc->mode.vdisplay) {
 340                /* no need to check if depth is different, because backing
 341                 * store depth is forced to 4 by the device.
 342                 */
 343
 344                ret = vmw_sou_fifo_destroy(dev_priv, sou);
 345                /* the hardware has hung don't do anything more */
 346                if (unlikely(ret != 0))
 347                        return ret;
 348
 349                vmw_sou_backing_free(dev_priv, sou);
 350        }
 351
 352        if (!sou->buffer) {
 353                /* forced to depth 4 by the device */
 354                size_t size = mode->hdisplay * mode->vdisplay * 4;
 355                ret = vmw_sou_backing_alloc(dev_priv, sou, size);
 356                if (unlikely(ret != 0))
 357                        return ret;
 358        }
 359
 360        ret = vmw_sou_fifo_create(dev_priv, sou, set->x, set->y, mode);
 361        if (unlikely(ret != 0)) {
 362                /*
 363                 * We are in a bit of a situation here, the hardware has
 364                 * hung and we may or may not have a buffer hanging of
 365                 * the screen object, best thing to do is not do anything
 366                 * if we where defined, if not just turn the crtc of.
 367                 * Not what userspace wants but it needs to htfu.
 368                 */
 369                if (sou->defined)
 370                        return ret;
 371
 372                connector->encoder = NULL;
 373                encoder->crtc = NULL;
 374                crtc->primary->fb = NULL;
 375                crtc->x = 0;
 376                crtc->y = 0;
 377                crtc->enabled = false;
 378
 379                return ret;
 380        }
 381
 382        vmw_kms_add_active(dev_priv, &sou->base, vfb);
 383
 384        connector->encoder = encoder;
 385        encoder->crtc = crtc;
 386        crtc->mode = *mode;
 387        crtc->primary->fb = fb;
 388        crtc->x = set->x;
 389        crtc->y = set->y;
 390        crtc->enabled = true;
 391
 392        return 0;
 393}
 394
 395static int vmw_sou_crtc_page_flip(struct drm_crtc *crtc,
 396                                  struct drm_framebuffer *fb,
 397                                  struct drm_pending_vblank_event *event,
 398                                  uint32_t flags)
 399{
 400        struct vmw_private *dev_priv = vmw_priv(crtc->dev);
 401        struct drm_framebuffer *old_fb = crtc->primary->fb;
 402        struct vmw_framebuffer *vfb = vmw_framebuffer_to_vfb(fb);
 403        struct vmw_fence_obj *fence = NULL;
 404        struct drm_vmw_rect vclips;
 405        int ret;
 406
 407        if (!vmw_kms_crtc_flippable(dev_priv, crtc))
 408                return -EINVAL;
 409
 410        crtc->primary->fb = fb;
 411
 412        /* do a full screen dirty update */
 413        vclips.x = crtc->x;
 414        vclips.y = crtc->y;
 415        vclips.w = crtc->mode.hdisplay;
 416        vclips.h = crtc->mode.vdisplay;
 417
 418        if (vfb->dmabuf)
 419                ret = vmw_kms_sou_do_dmabuf_dirty(dev_priv, vfb,
 420                                                  NULL, &vclips, 1, 1,
 421                                                  true, &fence);
 422        else
 423                ret = vmw_kms_sou_do_surface_dirty(dev_priv, vfb,
 424                                                   NULL, &vclips, NULL,
 425                                                   0, 0, 1, 1, &fence);
 426
 427
 428        if (ret != 0)
 429                goto out_no_fence;
 430        if (!fence) {
 431                ret = -EINVAL;
 432                goto out_no_fence;
 433        }
 434
 435        if (event) {
 436                struct drm_file *file_priv = event->base.file_priv;
 437
 438                ret = vmw_event_fence_action_queue(file_priv, fence,
 439                                                   &event->base,
 440                                                   &event->event.tv_sec,
 441                                                   &event->event.tv_usec,
 442                                                   true);
 443        }
 444
 445        /*
 446         * No need to hold on to this now. The only cleanup
 447         * we need to do if we fail is unref the fence.
 448         */
 449        vmw_fence_obj_unreference(&fence);
 450
 451        if (vmw_crtc_to_du(crtc)->is_implicit)
 452                vmw_kms_update_implicit_fb(dev_priv, crtc);
 453
 454        return ret;
 455
 456out_no_fence:
 457        crtc->primary->fb = old_fb;
 458        return ret;
 459}
 460
 461static const struct drm_crtc_funcs vmw_screen_object_crtc_funcs = {
 462        .cursor_set2 = vmw_du_crtc_cursor_set2,
 463        .cursor_move = vmw_du_crtc_cursor_move,
 464        .gamma_set = vmw_du_crtc_gamma_set,
 465        .destroy = vmw_sou_crtc_destroy,
 466        .set_config = vmw_sou_crtc_set_config,
 467        .page_flip = vmw_sou_crtc_page_flip,
 468};
 469
 470/*
 471 * Screen Object Display Unit encoder functions
 472 */
 473
 474static void vmw_sou_encoder_destroy(struct drm_encoder *encoder)
 475{
 476        vmw_sou_destroy(vmw_encoder_to_sou(encoder));
 477}
 478
 479static const struct drm_encoder_funcs vmw_screen_object_encoder_funcs = {
 480        .destroy = vmw_sou_encoder_destroy,
 481};
 482
 483/*
 484 * Screen Object Display Unit connector functions
 485 */
 486
 487static void vmw_sou_connector_destroy(struct drm_connector *connector)
 488{
 489        vmw_sou_destroy(vmw_connector_to_sou(connector));
 490}
 491
 492static const struct drm_connector_funcs vmw_sou_connector_funcs = {
 493        .dpms = vmw_du_connector_dpms,
 494        .detect = vmw_du_connector_detect,
 495        .fill_modes = vmw_du_connector_fill_modes,
 496        .set_property = vmw_du_connector_set_property,
 497        .destroy = vmw_sou_connector_destroy,
 498};
 499
 500static int vmw_sou_init(struct vmw_private *dev_priv, unsigned unit)
 501{
 502        struct vmw_screen_object_unit *sou;
 503        struct drm_device *dev = dev_priv->dev;
 504        struct drm_connector *connector;
 505        struct drm_encoder *encoder;
 506        struct drm_crtc *crtc;
 507
 508        sou = kzalloc(sizeof(*sou), GFP_KERNEL);
 509        if (!sou)
 510                return -ENOMEM;
 511
 512        sou->base.unit = unit;
 513        crtc = &sou->base.crtc;
 514        encoder = &sou->base.encoder;
 515        connector = &sou->base.connector;
 516
 517        sou->base.active_implicit = false;
 518        sou->base.pref_active = (unit == 0);
 519        sou->base.pref_width = dev_priv->initial_width;
 520        sou->base.pref_height = dev_priv->initial_height;
 521        sou->base.pref_mode = NULL;
 522        sou->base.is_implicit = false;
 523
 524        drm_connector_init(dev, connector, &vmw_sou_connector_funcs,
 525                           DRM_MODE_CONNECTOR_VIRTUAL);
 526        connector->status = vmw_du_connector_detect(connector, true);
 527
 528        drm_encoder_init(dev, encoder, &vmw_screen_object_encoder_funcs,
 529                         DRM_MODE_ENCODER_VIRTUAL, NULL);
 530        drm_mode_connector_attach_encoder(connector, encoder);
 531        encoder->possible_crtcs = (1 << unit);
 532        encoder->possible_clones = 0;
 533
 534        (void) drm_connector_register(connector);
 535
 536        drm_crtc_init(dev, crtc, &vmw_screen_object_crtc_funcs);
 537
 538        drm_mode_crtc_set_gamma_size(crtc, 256);
 539
 540        drm_object_attach_property(&connector->base,
 541                                   dev_priv->hotplug_mode_update_property, 1);
 542        drm_object_attach_property(&connector->base,
 543                                   dev->mode_config.suggested_x_property, 0);
 544        drm_object_attach_property(&connector->base,
 545                                   dev->mode_config.suggested_y_property, 0);
 546        if (dev_priv->implicit_placement_property)
 547                drm_object_attach_property
 548                        (&connector->base,
 549                         dev_priv->implicit_placement_property,
 550                         sou->base.is_implicit);
 551
 552        return 0;
 553}
 554
 555int vmw_kms_sou_init_display(struct vmw_private *dev_priv)
 556{
 557        struct drm_device *dev = dev_priv->dev;
 558        int i, ret;
 559
 560        if (!(dev_priv->capabilities & SVGA_CAP_SCREEN_OBJECT_2)) {
 561                DRM_INFO("Not using screen objects,"
 562                         " missing cap SCREEN_OBJECT_2\n");
 563                return -ENOSYS;
 564        }
 565
 566        ret = -ENOMEM;
 567        dev_priv->num_implicit = 0;
 568        dev_priv->implicit_fb = NULL;
 569
 570        ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS);
 571        if (unlikely(ret != 0))
 572                return ret;
 573
 574        vmw_kms_create_implicit_placement_property(dev_priv, false);
 575
 576        for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i)
 577                vmw_sou_init(dev_priv, i);
 578
 579        dev_priv->active_display_unit = vmw_du_screen_object;
 580
 581        DRM_INFO("Screen Objects Display Unit initialized\n");
 582
 583        return 0;
 584}
 585
 586int vmw_kms_sou_close_display(struct vmw_private *dev_priv)
 587{
 588        struct drm_device *dev = dev_priv->dev;
 589
 590        drm_vblank_cleanup(dev);
 591
 592        return 0;
 593}
 594
 595static int do_dmabuf_define_gmrfb(struct vmw_private *dev_priv,
 596                                  struct vmw_framebuffer *framebuffer)
 597{
 598        struct vmw_dma_buffer *buf =
 599                container_of(framebuffer, struct vmw_framebuffer_dmabuf,
 600                             base)->buffer;
 601        int depth = framebuffer->base.depth;
 602        struct {
 603                uint32_t header;
 604                SVGAFifoCmdDefineGMRFB body;
 605        } *cmd;
 606
 607        /* Emulate RGBA support, contrary to svga_reg.h this is not
 608         * supported by hosts. This is only a problem if we are reading
 609         * this value later and expecting what we uploaded back.
 610         */
 611        if (depth == 32)
 612                depth = 24;
 613
 614        cmd = vmw_fifo_reserve(dev_priv, sizeof(*cmd));
 615        if (!cmd) {
 616                DRM_ERROR("Out of fifo space for dirty framebuffer command.\n");
 617                return -ENOMEM;
 618        }
 619
 620        cmd->header = SVGA_CMD_DEFINE_GMRFB;
 621        cmd->body.format.bitsPerPixel = framebuffer->base.bits_per_pixel;
 622        cmd->body.format.colorDepth = depth;
 623        cmd->body.format.reserved = 0;
 624        cmd->body.bytesPerLine = framebuffer->base.pitches[0];
 625        /* Buffer is reserved in vram or GMR */
 626        vmw_bo_get_guest_ptr(&buf->base, &cmd->body.ptr);
 627        vmw_fifo_commit(dev_priv, sizeof(*cmd));
 628
 629        return 0;
 630}
 631
 632/**
 633 * vmw_sou_surface_fifo_commit - Callback to fill in and submit a
 634 * blit surface to screen command.
 635 *
 636 * @dirty: The closure structure.
 637 *
 638 * Fills in the missing fields in the command, and translates the cliprects
 639 * to match the destination bounding box encoded.
 640 */
 641static void vmw_sou_surface_fifo_commit(struct vmw_kms_dirty *dirty)
 642{
 643        struct vmw_kms_sou_surface_dirty *sdirty =
 644                container_of(dirty, typeof(*sdirty), base);
 645        struct vmw_kms_sou_dirty_cmd *cmd = dirty->cmd;
 646        s32 trans_x = dirty->unit->crtc.x - sdirty->dst_x;
 647        s32 trans_y = dirty->unit->crtc.y - sdirty->dst_y;
 648        size_t region_size = dirty->num_hits * sizeof(SVGASignedRect);
 649        SVGASignedRect *blit = (SVGASignedRect *) &cmd[1];
 650        int i;
 651
 652        if (!dirty->num_hits) {
 653                vmw_fifo_commit(dirty->dev_priv, 0);
 654                return;
 655        }
 656
 657        cmd->header.id = SVGA_3D_CMD_BLIT_SURFACE_TO_SCREEN;
 658        cmd->header.size = sizeof(cmd->body) + region_size;
 659
 660        /*
 661         * Use the destination bounding box to specify destination - and
 662         * source bounding regions.
 663         */
 664        cmd->body.destRect.left = sdirty->left;
 665        cmd->body.destRect.right = sdirty->right;
 666        cmd->body.destRect.top = sdirty->top;
 667        cmd->body.destRect.bottom = sdirty->bottom;
 668
 669        cmd->body.srcRect.left = sdirty->left + trans_x;
 670        cmd->body.srcRect.right = sdirty->right + trans_x;
 671        cmd->body.srcRect.top = sdirty->top + trans_y;
 672        cmd->body.srcRect.bottom = sdirty->bottom + trans_y;
 673
 674        cmd->body.srcImage.sid = sdirty->sid;
 675        cmd->body.destScreenId = dirty->unit->unit;
 676
 677        /* Blits are relative to the destination rect. Translate. */
 678        for (i = 0; i < dirty->num_hits; ++i, ++blit) {
 679                blit->left -= sdirty->left;
 680                blit->right -= sdirty->left;
 681                blit->top -= sdirty->top;
 682                blit->bottom -= sdirty->top;
 683        }
 684
 685        vmw_fifo_commit(dirty->dev_priv, region_size + sizeof(*cmd));
 686
 687        sdirty->left = sdirty->top = S32_MAX;
 688        sdirty->right = sdirty->bottom = S32_MIN;
 689}
 690
 691/**
 692 * vmw_sou_surface_clip - Callback to encode a blit surface to screen cliprect.
 693 *
 694 * @dirty: The closure structure
 695 *
 696 * Encodes a SVGASignedRect cliprect and updates the bounding box of the
 697 * BLIT_SURFACE_TO_SCREEN command.
 698 */
 699static void vmw_sou_surface_clip(struct vmw_kms_dirty *dirty)
 700{
 701        struct vmw_kms_sou_surface_dirty *sdirty =
 702                container_of(dirty, typeof(*sdirty), base);
 703        struct vmw_kms_sou_dirty_cmd *cmd = dirty->cmd;
 704        SVGASignedRect *blit = (SVGASignedRect *) &cmd[1];
 705
 706        /* Destination rect. */
 707        blit += dirty->num_hits;
 708        blit->left = dirty->unit_x1;
 709        blit->top = dirty->unit_y1;
 710        blit->right = dirty->unit_x2;
 711        blit->bottom = dirty->unit_y2;
 712
 713        /* Destination bounding box */
 714        sdirty->left = min_t(s32, sdirty->left, dirty->unit_x1);
 715        sdirty->top = min_t(s32, sdirty->top, dirty->unit_y1);
 716        sdirty->right = max_t(s32, sdirty->right, dirty->unit_x2);
 717        sdirty->bottom = max_t(s32, sdirty->bottom, dirty->unit_y2);
 718
 719        dirty->num_hits++;
 720}
 721
 722/**
 723 * vmw_kms_sou_do_surface_dirty - Dirty part of a surface backed framebuffer
 724 *
 725 * @dev_priv: Pointer to the device private structure.
 726 * @framebuffer: Pointer to the surface-buffer backed framebuffer.
 727 * @clips: Array of clip rects. Either @clips or @vclips must be NULL.
 728 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
 729 * be NULL.
 730 * @srf: Pointer to surface to blit from. If NULL, the surface attached
 731 * to @framebuffer will be used.
 732 * @dest_x: X coordinate offset to align @srf with framebuffer coordinates.
 733 * @dest_y: Y coordinate offset to align @srf with framebuffer coordinates.
 734 * @num_clips: Number of clip rects in @clips.
 735 * @inc: Increment to use when looping over @clips.
 736 * @out_fence: If non-NULL, will return a ref-counted pointer to a
 737 * struct vmw_fence_obj. The returned fence pointer may be NULL in which
 738 * case the device has already synchronized.
 739 *
 740 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
 741 * interrupted.
 742 */
 743int vmw_kms_sou_do_surface_dirty(struct vmw_private *dev_priv,
 744                                 struct vmw_framebuffer *framebuffer,
 745                                 struct drm_clip_rect *clips,
 746                                 struct drm_vmw_rect *vclips,
 747                                 struct vmw_resource *srf,
 748                                 s32 dest_x,
 749                                 s32 dest_y,
 750                                 unsigned num_clips, int inc,
 751                                 struct vmw_fence_obj **out_fence)
 752{
 753        struct vmw_framebuffer_surface *vfbs =
 754                container_of(framebuffer, typeof(*vfbs), base);
 755        struct vmw_kms_sou_surface_dirty sdirty;
 756        int ret;
 757
 758        if (!srf)
 759                srf = &vfbs->surface->res;
 760
 761        ret = vmw_kms_helper_resource_prepare(srf, true);
 762        if (ret)
 763                return ret;
 764
 765        sdirty.base.fifo_commit = vmw_sou_surface_fifo_commit;
 766        sdirty.base.clip = vmw_sou_surface_clip;
 767        sdirty.base.dev_priv = dev_priv;
 768        sdirty.base.fifo_reserve_size = sizeof(struct vmw_kms_sou_dirty_cmd) +
 769          sizeof(SVGASignedRect) * num_clips;
 770
 771        sdirty.sid = srf->id;
 772        sdirty.left = sdirty.top = S32_MAX;
 773        sdirty.right = sdirty.bottom = S32_MIN;
 774        sdirty.dst_x = dest_x;
 775        sdirty.dst_y = dest_y;
 776
 777        ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips,
 778                                   dest_x, dest_y, num_clips, inc,
 779                                   &sdirty.base);
 780        vmw_kms_helper_resource_finish(srf, out_fence);
 781
 782        return ret;
 783}
 784
 785/**
 786 * vmw_sou_dmabuf_fifo_commit - Callback to submit a set of readback clips.
 787 *
 788 * @dirty: The closure structure.
 789 *
 790 * Commits a previously built command buffer of readback clips.
 791 */
 792static void vmw_sou_dmabuf_fifo_commit(struct vmw_kms_dirty *dirty)
 793{
 794        if (!dirty->num_hits) {
 795                vmw_fifo_commit(dirty->dev_priv, 0);
 796                return;
 797        }
 798
 799        vmw_fifo_commit(dirty->dev_priv,
 800                        sizeof(struct vmw_kms_sou_dmabuf_blit) *
 801                        dirty->num_hits);
 802}
 803
 804/**
 805 * vmw_sou_dmabuf_clip - Callback to encode a readback cliprect.
 806 *
 807 * @dirty: The closure structure
 808 *
 809 * Encodes a BLIT_GMRFB_TO_SCREEN cliprect.
 810 */
 811static void vmw_sou_dmabuf_clip(struct vmw_kms_dirty *dirty)
 812{
 813        struct vmw_kms_sou_dmabuf_blit *blit = dirty->cmd;
 814
 815        blit += dirty->num_hits;
 816        blit->header = SVGA_CMD_BLIT_GMRFB_TO_SCREEN;
 817        blit->body.destScreenId = dirty->unit->unit;
 818        blit->body.srcOrigin.x = dirty->fb_x;
 819        blit->body.srcOrigin.y = dirty->fb_y;
 820        blit->body.destRect.left = dirty->unit_x1;
 821        blit->body.destRect.top = dirty->unit_y1;
 822        blit->body.destRect.right = dirty->unit_x2;
 823        blit->body.destRect.bottom = dirty->unit_y2;
 824        dirty->num_hits++;
 825}
 826
 827/**
 828 * vmw_kms_do_dmabuf_dirty - Dirty part of a dma-buffer backed framebuffer
 829 *
 830 * @dev_priv: Pointer to the device private structure.
 831 * @framebuffer: Pointer to the dma-buffer backed framebuffer.
 832 * @clips: Array of clip rects.
 833 * @vclips: Alternate array of clip rects. Either @clips or @vclips must
 834 * be NULL.
 835 * @num_clips: Number of clip rects in @clips.
 836 * @increment: Increment to use when looping over @clips.
 837 * @interruptible: Whether to perform waits interruptible if possible.
 838 * @out_fence: If non-NULL, will return a ref-counted pointer to a
 839 * struct vmw_fence_obj. The returned fence pointer may be NULL in which
 840 * case the device has already synchronized.
 841 *
 842 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
 843 * interrupted.
 844 */
 845int vmw_kms_sou_do_dmabuf_dirty(struct vmw_private *dev_priv,
 846                                struct vmw_framebuffer *framebuffer,
 847                                struct drm_clip_rect *clips,
 848                                struct drm_vmw_rect *vclips,
 849                                unsigned num_clips, int increment,
 850                                bool interruptible,
 851                                struct vmw_fence_obj **out_fence)
 852{
 853        struct vmw_dma_buffer *buf =
 854                container_of(framebuffer, struct vmw_framebuffer_dmabuf,
 855                             base)->buffer;
 856        struct vmw_kms_dirty dirty;
 857        int ret;
 858
 859        ret = vmw_kms_helper_buffer_prepare(dev_priv, buf, interruptible,
 860                                            false);
 861        if (ret)
 862                return ret;
 863
 864        ret = do_dmabuf_define_gmrfb(dev_priv, framebuffer);
 865        if (unlikely(ret != 0))
 866                goto out_revert;
 867
 868        dirty.fifo_commit = vmw_sou_dmabuf_fifo_commit;
 869        dirty.clip = vmw_sou_dmabuf_clip;
 870        dirty.fifo_reserve_size = sizeof(struct vmw_kms_sou_dmabuf_blit) *
 871                num_clips;
 872        ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips,
 873                                   0, 0, num_clips, increment, &dirty);
 874        vmw_kms_helper_buffer_finish(dev_priv, NULL, buf, out_fence, NULL);
 875
 876        return ret;
 877
 878out_revert:
 879        vmw_kms_helper_buffer_revert(buf);
 880
 881        return ret;
 882}
 883
 884
 885/**
 886 * vmw_sou_readback_fifo_commit - Callback to submit a set of readback clips.
 887 *
 888 * @dirty: The closure structure.
 889 *
 890 * Commits a previously built command buffer of readback clips.
 891 */
 892static void vmw_sou_readback_fifo_commit(struct vmw_kms_dirty *dirty)
 893{
 894        if (!dirty->num_hits) {
 895                vmw_fifo_commit(dirty->dev_priv, 0);
 896                return;
 897        }
 898
 899        vmw_fifo_commit(dirty->dev_priv,
 900                        sizeof(struct vmw_kms_sou_readback_blit) *
 901                        dirty->num_hits);
 902}
 903
 904/**
 905 * vmw_sou_readback_clip - Callback to encode a readback cliprect.
 906 *
 907 * @dirty: The closure structure
 908 *
 909 * Encodes a BLIT_SCREEN_TO_GMRFB cliprect.
 910 */
 911static void vmw_sou_readback_clip(struct vmw_kms_dirty *dirty)
 912{
 913        struct vmw_kms_sou_readback_blit *blit = dirty->cmd;
 914
 915        blit += dirty->num_hits;
 916        blit->header = SVGA_CMD_BLIT_SCREEN_TO_GMRFB;
 917        blit->body.srcScreenId = dirty->unit->unit;
 918        blit->body.destOrigin.x = dirty->fb_x;
 919        blit->body.destOrigin.y = dirty->fb_y;
 920        blit->body.srcRect.left = dirty->unit_x1;
 921        blit->body.srcRect.top = dirty->unit_y1;
 922        blit->body.srcRect.right = dirty->unit_x2;
 923        blit->body.srcRect.bottom = dirty->unit_y2;
 924        dirty->num_hits++;
 925}
 926
 927/**
 928 * vmw_kms_sou_readback - Perform a readback from the screen object system to
 929 * a dma-buffer backed framebuffer.
 930 *
 931 * @dev_priv: Pointer to the device private structure.
 932 * @file_priv: Pointer to a struct drm_file identifying the caller.
 933 * Must be set to NULL if @user_fence_rep is NULL.
 934 * @vfb: Pointer to the dma-buffer backed framebuffer.
 935 * @user_fence_rep: User-space provided structure for fence information.
 936 * Must be set to non-NULL if @file_priv is non-NULL.
 937 * @vclips: Array of clip rects.
 938 * @num_clips: Number of clip rects in @vclips.
 939 *
 940 * Returns 0 on success, negative error code on failure. -ERESTARTSYS if
 941 * interrupted.
 942 */
 943int vmw_kms_sou_readback(struct vmw_private *dev_priv,
 944                         struct drm_file *file_priv,
 945                         struct vmw_framebuffer *vfb,
 946                         struct drm_vmw_fence_rep __user *user_fence_rep,
 947                         struct drm_vmw_rect *vclips,
 948                         uint32_t num_clips)
 949{
 950        struct vmw_dma_buffer *buf =
 951                container_of(vfb, struct vmw_framebuffer_dmabuf, base)->buffer;
 952        struct vmw_kms_dirty dirty;
 953        int ret;
 954
 955        ret = vmw_kms_helper_buffer_prepare(dev_priv, buf, true, false);
 956        if (ret)
 957                return ret;
 958
 959        ret = do_dmabuf_define_gmrfb(dev_priv, vfb);
 960        if (unlikely(ret != 0))
 961                goto out_revert;
 962
 963        dirty.fifo_commit = vmw_sou_readback_fifo_commit;
 964        dirty.clip = vmw_sou_readback_clip;
 965        dirty.fifo_reserve_size = sizeof(struct vmw_kms_sou_readback_blit) *
 966                num_clips;
 967        ret = vmw_kms_helper_dirty(dev_priv, vfb, NULL, vclips,
 968                                   0, 0, num_clips, 1, &dirty);
 969        vmw_kms_helper_buffer_finish(dev_priv, file_priv, buf, NULL,
 970                                     user_fence_rep);
 971
 972        return ret;
 973
 974out_revert:
 975        vmw_kms_helper_buffer_revert(buf);
 976
 977        return ret;
 978}
 979