linux/drivers/gpu/drm/i915/intel_sprite.c
<<
>>
Prefs
   1/*
   2 * Copyright © 2011 Intel Corporation
   3 *
   4 * Permission is hereby granted, free of charge, to any person obtaining a
   5 * copy of this software and associated documentation files (the "Software"),
   6 * to deal in the Software without restriction, including without limitation
   7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
   8 * and/or sell copies of the Software, and to permit persons to whom the
   9 * Software is furnished to do so, subject to the following conditions:
  10 *
  11 * The above copyright notice and this permission notice (including the next
  12 * paragraph) shall be included in all copies or substantial portions of the
  13 * Software.
  14 *
  15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21 * SOFTWARE.
  22 *
  23 * Authors:
  24 *   Jesse Barnes <jbarnes@virtuousgeek.org>
  25 *
  26 * New plane/sprite handling.
  27 *
  28 * The older chips had a separate interface for programming plane related
  29 * registers; newer ones are much simpler and we can use the new DRM plane
  30 * support.
  31 */
  32#include <drm/drmP.h>
  33#include <drm/drm_crtc.h>
  34#include <drm/drm_fourcc.h>
  35#include <drm/drm_rect.h>
  36#include <drm/drm_atomic.h>
  37#include <drm/drm_plane_helper.h>
  38#include "intel_drv.h"
  39#include "intel_frontbuffer.h"
  40#include <drm/i915_drm.h>
  41#include "i915_drv.h"
  42
  43static bool
  44format_is_yuv(uint32_t format)
  45{
  46        switch (format) {
  47        case DRM_FORMAT_YUYV:
  48        case DRM_FORMAT_UYVY:
  49        case DRM_FORMAT_VYUY:
  50        case DRM_FORMAT_YVYU:
  51                return true;
  52        default:
  53                return false;
  54        }
  55}
  56
  57int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
  58                             int usecs)
  59{
  60        /* paranoia */
  61        if (!adjusted_mode->crtc_htotal)
  62                return 1;
  63
  64        return DIV_ROUND_UP(usecs * adjusted_mode->crtc_clock,
  65                            1000 * adjusted_mode->crtc_htotal);
  66}
  67
  68#define VBLANK_EVASION_TIME_US 100
  69
  70/**
  71 * intel_pipe_update_start() - start update of a set of display registers
  72 * @crtc: the crtc of which the registers are going to be updated
  73 * @start_vbl_count: vblank counter return pointer used for error checking
  74 *
  75 * Mark the start of an update to pipe registers that should be updated
  76 * atomically regarding vblank. If the next vblank will happens within
  77 * the next 100 us, this function waits until the vblank passes.
  78 *
  79 * After a successful call to this function, interrupts will be disabled
  80 * until a subsequent call to intel_pipe_update_end(). That is done to
  81 * avoid random delays. The value written to @start_vbl_count should be
  82 * supplied to intel_pipe_update_end() for error checking.
  83 */
  84void intel_pipe_update_start(struct intel_crtc *crtc)
  85{
  86        struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
  87        const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
  88        long timeout = msecs_to_jiffies_timeout(1);
  89        int scanline, min, max, vblank_start;
  90        wait_queue_head_t *wq = drm_crtc_vblank_waitqueue(&crtc->base);
  91        bool need_vlv_dsi_wa = (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
  92                intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DSI);
  93        DEFINE_WAIT(wait);
  94
  95        vblank_start = adjusted_mode->crtc_vblank_start;
  96        if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
  97                vblank_start = DIV_ROUND_UP(vblank_start, 2);
  98
  99        /* FIXME needs to be calibrated sensibly */
 100        min = vblank_start - intel_usecs_to_scanlines(adjusted_mode,
 101                                                      VBLANK_EVASION_TIME_US);
 102        max = vblank_start - 1;
 103
 104        local_irq_disable();
 105
 106        if (min <= 0 || max <= 0)
 107                return;
 108
 109        if (WARN_ON(drm_crtc_vblank_get(&crtc->base)))
 110                return;
 111
 112        crtc->debug.min_vbl = min;
 113        crtc->debug.max_vbl = max;
 114        trace_i915_pipe_update_start(crtc);
 115
 116        for (;;) {
 117                /*
 118                 * prepare_to_wait() has a memory barrier, which guarantees
 119                 * other CPUs can see the task state update by the time we
 120                 * read the scanline.
 121                 */
 122                prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
 123
 124                scanline = intel_get_crtc_scanline(crtc);
 125                if (scanline < min || scanline > max)
 126                        break;
 127
 128                if (timeout <= 0) {
 129                        DRM_ERROR("Potential atomic update failure on pipe %c\n",
 130                                  pipe_name(crtc->pipe));
 131                        break;
 132                }
 133
 134                local_irq_enable();
 135
 136                timeout = schedule_timeout(timeout);
 137
 138                local_irq_disable();
 139        }
 140
 141        finish_wait(wq, &wait);
 142
 143        drm_crtc_vblank_put(&crtc->base);
 144
 145        /*
 146         * On VLV/CHV DSI the scanline counter would appear to
 147         * increment approx. 1/3 of a scanline before start of vblank.
 148         * The registers still get latched at start of vblank however.
 149         * This means we must not write any registers on the first
 150         * line of vblank (since not the whole line is actually in
 151         * vblank). And unfortunately we can't use the interrupt to
 152         * wait here since it will fire too soon. We could use the
 153         * frame start interrupt instead since it will fire after the
 154         * critical scanline, but that would require more changes
 155         * in the interrupt code. So for now we'll just do the nasty
 156         * thing and poll for the bad scanline to pass us by.
 157         *
 158         * FIXME figure out if BXT+ DSI suffers from this as well
 159         */
 160        while (need_vlv_dsi_wa && scanline == vblank_start)
 161                scanline = intel_get_crtc_scanline(crtc);
 162
 163        crtc->debug.scanline_start = scanline;
 164        crtc->debug.start_vbl_time = ktime_get();
 165        crtc->debug.start_vbl_count = intel_crtc_get_vblank_counter(crtc);
 166
 167        trace_i915_pipe_update_vblank_evaded(crtc);
 168}
 169
 170/**
 171 * intel_pipe_update_end() - end update of a set of display registers
 172 * @crtc: the crtc of which the registers were updated
 173 * @start_vbl_count: start vblank counter (used for error checking)
 174 *
 175 * Mark the end of an update started with intel_pipe_update_start(). This
 176 * re-enables interrupts and verifies the update was actually completed
 177 * before a vblank using the value of @start_vbl_count.
 178 */
 179void intel_pipe_update_end(struct intel_crtc *crtc, struct intel_flip_work *work)
 180{
 181        enum pipe pipe = crtc->pipe;
 182        int scanline_end = intel_get_crtc_scanline(crtc);
 183        u32 end_vbl_count = intel_crtc_get_vblank_counter(crtc);
 184        ktime_t end_vbl_time = ktime_get();
 185        struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
 186
 187        if (work) {
 188                work->flip_queued_vblank = end_vbl_count;
 189                smp_mb__before_atomic();
 190                atomic_set(&work->pending, 1);
 191        }
 192
 193        trace_i915_pipe_update_end(crtc, end_vbl_count, scanline_end);
 194
 195        /* We're still in the vblank-evade critical section, this can't race.
 196         * Would be slightly nice to just grab the vblank count and arm the
 197         * event outside of the critical section - the spinlock might spin for a
 198         * while ... */
 199        if (crtc->base.state->event) {
 200                WARN_ON(drm_crtc_vblank_get(&crtc->base) != 0);
 201
 202                spin_lock(&crtc->base.dev->event_lock);
 203                drm_crtc_arm_vblank_event(&crtc->base, crtc->base.state->event);
 204                spin_unlock(&crtc->base.dev->event_lock);
 205
 206                crtc->base.state->event = NULL;
 207        }
 208
 209        local_irq_enable();
 210
 211        if (intel_vgpu_active(dev_priv))
 212                return;
 213
 214        if (crtc->debug.start_vbl_count &&
 215            crtc->debug.start_vbl_count != end_vbl_count) {
 216                DRM_ERROR("Atomic update failure on pipe %c (start=%u end=%u) time %lld us, min %d, max %d, scanline start %d, end %d\n",
 217                          pipe_name(pipe), crtc->debug.start_vbl_count,
 218                          end_vbl_count,
 219                          ktime_us_delta(end_vbl_time, crtc->debug.start_vbl_time),
 220                          crtc->debug.min_vbl, crtc->debug.max_vbl,
 221                          crtc->debug.scanline_start, scanline_end);
 222        }
 223#ifdef CONFIG_DRM_I915_DEBUG_VBLANK_EVADE
 224        else if (ktime_us_delta(end_vbl_time, crtc->debug.start_vbl_time) >
 225                 VBLANK_EVASION_TIME_US)
 226                DRM_WARN("Atomic update on pipe (%c) took %lld us, max time under evasion is %u us\n",
 227                         pipe_name(pipe),
 228                         ktime_us_delta(end_vbl_time, crtc->debug.start_vbl_time),
 229                         VBLANK_EVASION_TIME_US);
 230#endif
 231}
 232
 233static void
 234skl_update_plane(struct intel_plane *plane,
 235                 const struct intel_crtc_state *crtc_state,
 236                 const struct intel_plane_state *plane_state)
 237{
 238        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 239        const struct drm_framebuffer *fb = plane_state->base.fb;
 240        enum plane_id plane_id = plane->id;
 241        enum pipe pipe = plane->pipe;
 242        u32 plane_ctl = plane_state->ctl;
 243        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 244        u32 surf_addr = plane_state->main.offset;
 245        unsigned int rotation = plane_state->base.rotation;
 246        u32 stride = skl_plane_stride(fb, 0, rotation);
 247        int crtc_x = plane_state->base.dst.x1;
 248        int crtc_y = plane_state->base.dst.y1;
 249        uint32_t crtc_w = drm_rect_width(&plane_state->base.dst);
 250        uint32_t crtc_h = drm_rect_height(&plane_state->base.dst);
 251        uint32_t x = plane_state->main.x;
 252        uint32_t y = plane_state->main.y;
 253        uint32_t src_w = drm_rect_width(&plane_state->base.src) >> 16;
 254        uint32_t src_h = drm_rect_height(&plane_state->base.src) >> 16;
 255        unsigned long irqflags;
 256
 257        /* Sizes are 0 based */
 258        src_w--;
 259        src_h--;
 260        crtc_w--;
 261        crtc_h--;
 262
 263        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 264
 265        if (IS_GEMINILAKE(dev_priv)) {
 266                I915_WRITE_FW(PLANE_COLOR_CTL(pipe, plane_id),
 267                              PLANE_COLOR_PIPE_GAMMA_ENABLE |
 268                              PLANE_COLOR_PIPE_CSC_ENABLE |
 269                              PLANE_COLOR_PLANE_GAMMA_DISABLE);
 270        }
 271
 272        if (key->flags) {
 273                I915_WRITE_FW(PLANE_KEYVAL(pipe, plane_id), key->min_value);
 274                I915_WRITE_FW(PLANE_KEYMAX(pipe, plane_id), key->max_value);
 275                I915_WRITE_FW(PLANE_KEYMSK(pipe, plane_id), key->channel_mask);
 276        }
 277
 278        I915_WRITE_FW(PLANE_OFFSET(pipe, plane_id), (y << 16) | x);
 279        I915_WRITE_FW(PLANE_STRIDE(pipe, plane_id), stride);
 280        I915_WRITE_FW(PLANE_SIZE(pipe, plane_id), (src_h << 16) | src_w);
 281
 282        /* program plane scaler */
 283        if (plane_state->scaler_id >= 0) {
 284                int scaler_id = plane_state->scaler_id;
 285                const struct intel_scaler *scaler;
 286
 287                scaler = &crtc_state->scaler_state.scalers[scaler_id];
 288
 289                I915_WRITE_FW(SKL_PS_CTRL(pipe, scaler_id),
 290                              PS_SCALER_EN | PS_PLANE_SEL(plane_id) | scaler->mode);
 291                I915_WRITE_FW(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
 292                I915_WRITE_FW(SKL_PS_WIN_POS(pipe, scaler_id), (crtc_x << 16) | crtc_y);
 293                I915_WRITE_FW(SKL_PS_WIN_SZ(pipe, scaler_id),
 294                              ((crtc_w + 1) << 16)|(crtc_h + 1));
 295
 296                I915_WRITE_FW(PLANE_POS(pipe, plane_id), 0);
 297        } else {
 298                I915_WRITE_FW(PLANE_POS(pipe, plane_id), (crtc_y << 16) | crtc_x);
 299        }
 300
 301        I915_WRITE_FW(PLANE_CTL(pipe, plane_id), plane_ctl);
 302        I915_WRITE_FW(PLANE_SURF(pipe, plane_id),
 303                      intel_plane_ggtt_offset(plane_state) + surf_addr);
 304        POSTING_READ_FW(PLANE_SURF(pipe, plane_id));
 305
 306        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 307}
 308
 309static void
 310skl_disable_plane(struct intel_plane *plane, struct intel_crtc *crtc)
 311{
 312        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 313        enum plane_id plane_id = plane->id;
 314        enum pipe pipe = plane->pipe;
 315        unsigned long irqflags;
 316
 317        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 318
 319        I915_WRITE_FW(PLANE_CTL(pipe, plane_id), 0);
 320
 321        I915_WRITE_FW(PLANE_SURF(pipe, plane_id), 0);
 322        POSTING_READ_FW(PLANE_SURF(pipe, plane_id));
 323
 324        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 325}
 326
 327static void
 328chv_update_csc(struct intel_plane *plane, uint32_t format)
 329{
 330        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 331        enum plane_id plane_id = plane->id;
 332
 333        /* Seems RGB data bypasses the CSC always */
 334        if (!format_is_yuv(format))
 335                return;
 336
 337        /*
 338         * BT.601 limited range YCbCr -> full range RGB
 339         *
 340         * |r|   | 6537 4769     0|   |cr  |
 341         * |g| = |-3330 4769 -1605| x |y-64|
 342         * |b|   |    0 4769  8263|   |cb  |
 343         *
 344         * Cb and Cr apparently come in as signed already, so no
 345         * need for any offset. For Y we need to remove the offset.
 346         */
 347        I915_WRITE_FW(SPCSCYGOFF(plane_id), SPCSC_OOFF(0) | SPCSC_IOFF(-64));
 348        I915_WRITE_FW(SPCSCCBOFF(plane_id), SPCSC_OOFF(0) | SPCSC_IOFF(0));
 349        I915_WRITE_FW(SPCSCCROFF(plane_id), SPCSC_OOFF(0) | SPCSC_IOFF(0));
 350
 351        I915_WRITE_FW(SPCSCC01(plane_id), SPCSC_C1(4769) | SPCSC_C0(6537));
 352        I915_WRITE_FW(SPCSCC23(plane_id), SPCSC_C1(-3330) | SPCSC_C0(0));
 353        I915_WRITE_FW(SPCSCC45(plane_id), SPCSC_C1(-1605) | SPCSC_C0(4769));
 354        I915_WRITE_FW(SPCSCC67(plane_id), SPCSC_C1(4769) | SPCSC_C0(0));
 355        I915_WRITE_FW(SPCSCC8(plane_id), SPCSC_C0(8263));
 356
 357        I915_WRITE_FW(SPCSCYGICLAMP(plane_id), SPCSC_IMAX(940) | SPCSC_IMIN(64));
 358        I915_WRITE_FW(SPCSCCBICLAMP(plane_id), SPCSC_IMAX(448) | SPCSC_IMIN(-448));
 359        I915_WRITE_FW(SPCSCCRICLAMP(plane_id), SPCSC_IMAX(448) | SPCSC_IMIN(-448));
 360
 361        I915_WRITE_FW(SPCSCYGOCLAMP(plane_id), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
 362        I915_WRITE_FW(SPCSCCBOCLAMP(plane_id), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
 363        I915_WRITE_FW(SPCSCCROCLAMP(plane_id), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
 364}
 365
 366static u32 vlv_sprite_ctl(const struct intel_crtc_state *crtc_state,
 367                          const struct intel_plane_state *plane_state)
 368{
 369        const struct drm_framebuffer *fb = plane_state->base.fb;
 370        unsigned int rotation = plane_state->base.rotation;
 371        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 372        u32 sprctl;
 373
 374        sprctl = SP_ENABLE | SP_GAMMA_ENABLE;
 375
 376        switch (fb->format->format) {
 377        case DRM_FORMAT_YUYV:
 378                sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YUYV;
 379                break;
 380        case DRM_FORMAT_YVYU:
 381                sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YVYU;
 382                break;
 383        case DRM_FORMAT_UYVY:
 384                sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_UYVY;
 385                break;
 386        case DRM_FORMAT_VYUY:
 387                sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_VYUY;
 388                break;
 389        case DRM_FORMAT_RGB565:
 390                sprctl |= SP_FORMAT_BGR565;
 391                break;
 392        case DRM_FORMAT_XRGB8888:
 393                sprctl |= SP_FORMAT_BGRX8888;
 394                break;
 395        case DRM_FORMAT_ARGB8888:
 396                sprctl |= SP_FORMAT_BGRA8888;
 397                break;
 398        case DRM_FORMAT_XBGR2101010:
 399                sprctl |= SP_FORMAT_RGBX1010102;
 400                break;
 401        case DRM_FORMAT_ABGR2101010:
 402                sprctl |= SP_FORMAT_RGBA1010102;
 403                break;
 404        case DRM_FORMAT_XBGR8888:
 405                sprctl |= SP_FORMAT_RGBX8888;
 406                break;
 407        case DRM_FORMAT_ABGR8888:
 408                sprctl |= SP_FORMAT_RGBA8888;
 409                break;
 410        default:
 411                MISSING_CASE(fb->format->format);
 412                return 0;
 413        }
 414
 415        if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 416                sprctl |= SP_TILED;
 417
 418        if (rotation & DRM_MODE_ROTATE_180)
 419                sprctl |= SP_ROTATE_180;
 420
 421        if (rotation & DRM_MODE_REFLECT_X)
 422                sprctl |= SP_MIRROR;
 423
 424        if (key->flags & I915_SET_COLORKEY_SOURCE)
 425                sprctl |= SP_SOURCE_KEY;
 426
 427        return sprctl;
 428}
 429
 430static void
 431vlv_update_plane(struct intel_plane *plane,
 432                 const struct intel_crtc_state *crtc_state,
 433                 const struct intel_plane_state *plane_state)
 434{
 435        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 436        const struct drm_framebuffer *fb = plane_state->base.fb;
 437        enum pipe pipe = plane->pipe;
 438        enum plane_id plane_id = plane->id;
 439        u32 sprctl = plane_state->ctl;
 440        u32 sprsurf_offset = plane_state->main.offset;
 441        u32 linear_offset;
 442        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 443        int crtc_x = plane_state->base.dst.x1;
 444        int crtc_y = plane_state->base.dst.y1;
 445        uint32_t crtc_w = drm_rect_width(&plane_state->base.dst);
 446        uint32_t crtc_h = drm_rect_height(&plane_state->base.dst);
 447        uint32_t x = plane_state->main.x;
 448        uint32_t y = plane_state->main.y;
 449        unsigned long irqflags;
 450
 451        /* Sizes are 0 based */
 452        crtc_w--;
 453        crtc_h--;
 454
 455        linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
 456
 457        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 458
 459        if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B)
 460                chv_update_csc(plane, fb->format->format);
 461
 462        if (key->flags) {
 463                I915_WRITE_FW(SPKEYMINVAL(pipe, plane_id), key->min_value);
 464                I915_WRITE_FW(SPKEYMAXVAL(pipe, plane_id), key->max_value);
 465                I915_WRITE_FW(SPKEYMSK(pipe, plane_id), key->channel_mask);
 466        }
 467        I915_WRITE_FW(SPSTRIDE(pipe, plane_id), fb->pitches[0]);
 468        I915_WRITE_FW(SPPOS(pipe, plane_id), (crtc_y << 16) | crtc_x);
 469
 470        if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 471                I915_WRITE_FW(SPTILEOFF(pipe, plane_id), (y << 16) | x);
 472        else
 473                I915_WRITE_FW(SPLINOFF(pipe, plane_id), linear_offset);
 474
 475        I915_WRITE_FW(SPCONSTALPHA(pipe, plane_id), 0);
 476
 477        I915_WRITE_FW(SPSIZE(pipe, plane_id), (crtc_h << 16) | crtc_w);
 478        I915_WRITE_FW(SPCNTR(pipe, plane_id), sprctl);
 479        I915_WRITE_FW(SPSURF(pipe, plane_id),
 480                      intel_plane_ggtt_offset(plane_state) + sprsurf_offset);
 481        POSTING_READ_FW(SPSURF(pipe, plane_id));
 482
 483        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 484}
 485
 486static void
 487vlv_disable_plane(struct intel_plane *plane, struct intel_crtc *crtc)
 488{
 489        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 490        enum pipe pipe = plane->pipe;
 491        enum plane_id plane_id = plane->id;
 492        unsigned long irqflags;
 493
 494        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 495
 496        I915_WRITE_FW(SPCNTR(pipe, plane_id), 0);
 497
 498        I915_WRITE_FW(SPSURF(pipe, plane_id), 0);
 499        POSTING_READ_FW(SPSURF(pipe, plane_id));
 500
 501        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 502}
 503
 504static u32 ivb_sprite_ctl(const struct intel_crtc_state *crtc_state,
 505                          const struct intel_plane_state *plane_state)
 506{
 507        struct drm_i915_private *dev_priv =
 508                to_i915(plane_state->base.plane->dev);
 509        const struct drm_framebuffer *fb = plane_state->base.fb;
 510        unsigned int rotation = plane_state->base.rotation;
 511        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 512        u32 sprctl;
 513
 514        sprctl = SPRITE_ENABLE | SPRITE_GAMMA_ENABLE;
 515
 516        if (IS_IVYBRIDGE(dev_priv))
 517                sprctl |= SPRITE_TRICKLE_FEED_DISABLE;
 518
 519        if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
 520                sprctl |= SPRITE_PIPE_CSC_ENABLE;
 521
 522        switch (fb->format->format) {
 523        case DRM_FORMAT_XBGR8888:
 524                sprctl |= SPRITE_FORMAT_RGBX888 | SPRITE_RGB_ORDER_RGBX;
 525                break;
 526        case DRM_FORMAT_XRGB8888:
 527                sprctl |= SPRITE_FORMAT_RGBX888;
 528                break;
 529        case DRM_FORMAT_YUYV:
 530                sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YUYV;
 531                break;
 532        case DRM_FORMAT_YVYU:
 533                sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YVYU;
 534                break;
 535        case DRM_FORMAT_UYVY:
 536                sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_UYVY;
 537                break;
 538        case DRM_FORMAT_VYUY:
 539                sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_VYUY;
 540                break;
 541        default:
 542                MISSING_CASE(fb->format->format);
 543                return 0;
 544        }
 545
 546        if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 547                sprctl |= SPRITE_TILED;
 548
 549        if (rotation & DRM_MODE_ROTATE_180)
 550                sprctl |= SPRITE_ROTATE_180;
 551
 552        if (key->flags & I915_SET_COLORKEY_DESTINATION)
 553                sprctl |= SPRITE_DEST_KEY;
 554        else if (key->flags & I915_SET_COLORKEY_SOURCE)
 555                sprctl |= SPRITE_SOURCE_KEY;
 556
 557        return sprctl;
 558}
 559
 560static void
 561ivb_update_plane(struct intel_plane *plane,
 562                 const struct intel_crtc_state *crtc_state,
 563                 const struct intel_plane_state *plane_state)
 564{
 565        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 566        const struct drm_framebuffer *fb = plane_state->base.fb;
 567        enum pipe pipe = plane->pipe;
 568        u32 sprctl = plane_state->ctl, sprscale = 0;
 569        u32 sprsurf_offset = plane_state->main.offset;
 570        u32 linear_offset;
 571        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 572        int crtc_x = plane_state->base.dst.x1;
 573        int crtc_y = plane_state->base.dst.y1;
 574        uint32_t crtc_w = drm_rect_width(&plane_state->base.dst);
 575        uint32_t crtc_h = drm_rect_height(&plane_state->base.dst);
 576        uint32_t x = plane_state->main.x;
 577        uint32_t y = plane_state->main.y;
 578        uint32_t src_w = drm_rect_width(&plane_state->base.src) >> 16;
 579        uint32_t src_h = drm_rect_height(&plane_state->base.src) >> 16;
 580        unsigned long irqflags;
 581
 582        /* Sizes are 0 based */
 583        src_w--;
 584        src_h--;
 585        crtc_w--;
 586        crtc_h--;
 587
 588        if (crtc_w != src_w || crtc_h != src_h)
 589                sprscale = SPRITE_SCALE_ENABLE | (src_w << 16) | src_h;
 590
 591        linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
 592
 593        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 594
 595        if (key->flags) {
 596                I915_WRITE_FW(SPRKEYVAL(pipe), key->min_value);
 597                I915_WRITE_FW(SPRKEYMAX(pipe), key->max_value);
 598                I915_WRITE_FW(SPRKEYMSK(pipe), key->channel_mask);
 599        }
 600
 601        I915_WRITE_FW(SPRSTRIDE(pipe), fb->pitches[0]);
 602        I915_WRITE_FW(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
 603
 604        /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
 605         * register */
 606        if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
 607                I915_WRITE_FW(SPROFFSET(pipe), (y << 16) | x);
 608        else if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 609                I915_WRITE_FW(SPRTILEOFF(pipe), (y << 16) | x);
 610        else
 611                I915_WRITE_FW(SPRLINOFF(pipe), linear_offset);
 612
 613        I915_WRITE_FW(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
 614        if (plane->can_scale)
 615                I915_WRITE_FW(SPRSCALE(pipe), sprscale);
 616        I915_WRITE_FW(SPRCTL(pipe), sprctl);
 617        I915_WRITE_FW(SPRSURF(pipe),
 618                      intel_plane_ggtt_offset(plane_state) + sprsurf_offset);
 619        POSTING_READ_FW(SPRSURF(pipe));
 620
 621        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 622}
 623
 624static void
 625ivb_disable_plane(struct intel_plane *plane, struct intel_crtc *crtc)
 626{
 627        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 628        enum pipe pipe = plane->pipe;
 629        unsigned long irqflags;
 630
 631        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 632
 633        I915_WRITE_FW(SPRCTL(pipe), 0);
 634        /* Can't leave the scaler enabled... */
 635        if (plane->can_scale)
 636                I915_WRITE_FW(SPRSCALE(pipe), 0);
 637
 638        I915_WRITE_FW(SPRSURF(pipe), 0);
 639        POSTING_READ_FW(SPRSURF(pipe));
 640
 641        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 642}
 643
 644static u32 g4x_sprite_ctl(const struct intel_crtc_state *crtc_state,
 645                          const struct intel_plane_state *plane_state)
 646{
 647        struct drm_i915_private *dev_priv =
 648                to_i915(plane_state->base.plane->dev);
 649        const struct drm_framebuffer *fb = plane_state->base.fb;
 650        unsigned int rotation = plane_state->base.rotation;
 651        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 652        u32 dvscntr;
 653
 654        dvscntr = DVS_ENABLE | DVS_GAMMA_ENABLE;
 655
 656        if (IS_GEN6(dev_priv))
 657                dvscntr |= DVS_TRICKLE_FEED_DISABLE;
 658
 659        switch (fb->format->format) {
 660        case DRM_FORMAT_XBGR8888:
 661                dvscntr |= DVS_FORMAT_RGBX888 | DVS_RGB_ORDER_XBGR;
 662                break;
 663        case DRM_FORMAT_XRGB8888:
 664                dvscntr |= DVS_FORMAT_RGBX888;
 665                break;
 666        case DRM_FORMAT_YUYV:
 667                dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YUYV;
 668                break;
 669        case DRM_FORMAT_YVYU:
 670                dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YVYU;
 671                break;
 672        case DRM_FORMAT_UYVY:
 673                dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_UYVY;
 674                break;
 675        case DRM_FORMAT_VYUY:
 676                dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_VYUY;
 677                break;
 678        default:
 679                MISSING_CASE(fb->format->format);
 680                return 0;
 681        }
 682
 683        if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 684                dvscntr |= DVS_TILED;
 685
 686        if (rotation & DRM_MODE_ROTATE_180)
 687                dvscntr |= DVS_ROTATE_180;
 688
 689        if (key->flags & I915_SET_COLORKEY_DESTINATION)
 690                dvscntr |= DVS_DEST_KEY;
 691        else if (key->flags & I915_SET_COLORKEY_SOURCE)
 692                dvscntr |= DVS_SOURCE_KEY;
 693
 694        return dvscntr;
 695}
 696
 697static void
 698g4x_update_plane(struct intel_plane *plane,
 699                 const struct intel_crtc_state *crtc_state,
 700                 const struct intel_plane_state *plane_state)
 701{
 702        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 703        const struct drm_framebuffer *fb = plane_state->base.fb;
 704        enum pipe pipe = plane->pipe;
 705        u32 dvscntr = plane_state->ctl, dvsscale = 0;
 706        u32 dvssurf_offset = plane_state->main.offset;
 707        u32 linear_offset;
 708        const struct drm_intel_sprite_colorkey *key = &plane_state->ckey;
 709        int crtc_x = plane_state->base.dst.x1;
 710        int crtc_y = plane_state->base.dst.y1;
 711        uint32_t crtc_w = drm_rect_width(&plane_state->base.dst);
 712        uint32_t crtc_h = drm_rect_height(&plane_state->base.dst);
 713        uint32_t x = plane_state->main.x;
 714        uint32_t y = plane_state->main.y;
 715        uint32_t src_w = drm_rect_width(&plane_state->base.src) >> 16;
 716        uint32_t src_h = drm_rect_height(&plane_state->base.src) >> 16;
 717        unsigned long irqflags;
 718
 719        /* Sizes are 0 based */
 720        src_w--;
 721        src_h--;
 722        crtc_w--;
 723        crtc_h--;
 724
 725        if (crtc_w != src_w || crtc_h != src_h)
 726                dvsscale = DVS_SCALE_ENABLE | (src_w << 16) | src_h;
 727
 728        linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
 729
 730        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 731
 732        if (key->flags) {
 733                I915_WRITE_FW(DVSKEYVAL(pipe), key->min_value);
 734                I915_WRITE_FW(DVSKEYMAX(pipe), key->max_value);
 735                I915_WRITE_FW(DVSKEYMSK(pipe), key->channel_mask);
 736        }
 737
 738        I915_WRITE_FW(DVSSTRIDE(pipe), fb->pitches[0]);
 739        I915_WRITE_FW(DVSPOS(pipe), (crtc_y << 16) | crtc_x);
 740
 741        if (fb->modifier == I915_FORMAT_MOD_X_TILED)
 742                I915_WRITE_FW(DVSTILEOFF(pipe), (y << 16) | x);
 743        else
 744                I915_WRITE_FW(DVSLINOFF(pipe), linear_offset);
 745
 746        I915_WRITE_FW(DVSSIZE(pipe), (crtc_h << 16) | crtc_w);
 747        I915_WRITE_FW(DVSSCALE(pipe), dvsscale);
 748        I915_WRITE_FW(DVSCNTR(pipe), dvscntr);
 749        I915_WRITE_FW(DVSSURF(pipe),
 750                      intel_plane_ggtt_offset(plane_state) + dvssurf_offset);
 751        POSTING_READ_FW(DVSSURF(pipe));
 752
 753        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 754}
 755
 756static void
 757g4x_disable_plane(struct intel_plane *plane, struct intel_crtc *crtc)
 758{
 759        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 760        enum pipe pipe = plane->pipe;
 761        unsigned long irqflags;
 762
 763        spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
 764
 765        I915_WRITE_FW(DVSCNTR(pipe), 0);
 766        /* Disable the scaler */
 767        I915_WRITE_FW(DVSSCALE(pipe), 0);
 768
 769        I915_WRITE_FW(DVSSURF(pipe), 0);
 770        POSTING_READ_FW(DVSSURF(pipe));
 771
 772        spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
 773}
 774
 775static int
 776intel_check_sprite_plane(struct intel_plane *plane,
 777                         struct intel_crtc_state *crtc_state,
 778                         struct intel_plane_state *state)
 779{
 780        struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
 781        struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
 782        struct drm_framebuffer *fb = state->base.fb;
 783        int crtc_x, crtc_y;
 784        unsigned int crtc_w, crtc_h;
 785        uint32_t src_x, src_y, src_w, src_h;
 786        struct drm_rect *src = &state->base.src;
 787        struct drm_rect *dst = &state->base.dst;
 788        const struct drm_rect *clip = &state->clip;
 789        int hscale, vscale;
 790        int max_scale, min_scale;
 791        bool can_scale;
 792        int ret;
 793
 794        *src = drm_plane_state_src(&state->base);
 795        *dst = drm_plane_state_dest(&state->base);
 796
 797        if (!fb) {
 798                state->base.visible = false;
 799                return 0;
 800        }
 801
 802        /* Don't modify another pipe's plane */
 803        if (plane->pipe != crtc->pipe) {
 804                DRM_DEBUG_KMS("Wrong plane <-> crtc mapping\n");
 805                return -EINVAL;
 806        }
 807
 808        /* FIXME check all gen limits */
 809        if (fb->width < 3 || fb->height < 3 || fb->pitches[0] > 16384) {
 810                DRM_DEBUG_KMS("Unsuitable framebuffer for plane\n");
 811                return -EINVAL;
 812        }
 813
 814        /* setup can_scale, min_scale, max_scale */
 815        if (INTEL_GEN(dev_priv) >= 9) {
 816                /* use scaler when colorkey is not required */
 817                if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
 818                        can_scale = 1;
 819                        min_scale = 1;
 820                        max_scale = skl_max_scale(crtc, crtc_state);
 821                } else {
 822                        can_scale = 0;
 823                        min_scale = DRM_PLANE_HELPER_NO_SCALING;
 824                        max_scale = DRM_PLANE_HELPER_NO_SCALING;
 825                }
 826        } else {
 827                can_scale = plane->can_scale;
 828                max_scale = plane->max_downscale << 16;
 829                min_scale = plane->can_scale ? 1 : (1 << 16);
 830        }
 831
 832        /*
 833         * FIXME the following code does a bunch of fuzzy adjustments to the
 834         * coordinates and sizes. We probably need some way to decide whether
 835         * more strict checking should be done instead.
 836         */
 837        drm_rect_rotate(src, fb->width << 16, fb->height << 16,
 838                        state->base.rotation);
 839
 840        hscale = drm_rect_calc_hscale_relaxed(src, dst, min_scale, max_scale);
 841        BUG_ON(hscale < 0);
 842
 843        vscale = drm_rect_calc_vscale_relaxed(src, dst, min_scale, max_scale);
 844        BUG_ON(vscale < 0);
 845
 846        state->base.visible = drm_rect_clip_scaled(src, dst, clip, hscale, vscale);
 847
 848        crtc_x = dst->x1;
 849        crtc_y = dst->y1;
 850        crtc_w = drm_rect_width(dst);
 851        crtc_h = drm_rect_height(dst);
 852
 853        if (state->base.visible) {
 854                /* check again in case clipping clamped the results */
 855                hscale = drm_rect_calc_hscale(src, dst, min_scale, max_scale);
 856                if (hscale < 0) {
 857                        DRM_DEBUG_KMS("Horizontal scaling factor out of limits\n");
 858                        drm_rect_debug_print("src: ", src, true);
 859                        drm_rect_debug_print("dst: ", dst, false);
 860
 861                        return hscale;
 862                }
 863
 864                vscale = drm_rect_calc_vscale(src, dst, min_scale, max_scale);
 865                if (vscale < 0) {
 866                        DRM_DEBUG_KMS("Vertical scaling factor out of limits\n");
 867                        drm_rect_debug_print("src: ", src, true);
 868                        drm_rect_debug_print("dst: ", dst, false);
 869
 870                        return vscale;
 871                }
 872
 873                /* Make the source viewport size an exact multiple of the scaling factors. */
 874                drm_rect_adjust_size(src,
 875                                     drm_rect_width(dst) * hscale - drm_rect_width(src),
 876                                     drm_rect_height(dst) * vscale - drm_rect_height(src));
 877
 878                drm_rect_rotate_inv(src, fb->width << 16, fb->height << 16,
 879                                    state->base.rotation);
 880
 881                /* sanity check to make sure the src viewport wasn't enlarged */
 882                WARN_ON(src->x1 < (int) state->base.src_x ||
 883                        src->y1 < (int) state->base.src_y ||
 884                        src->x2 > (int) state->base.src_x + state->base.src_w ||
 885                        src->y2 > (int) state->base.src_y + state->base.src_h);
 886
 887                /*
 888                 * Hardware doesn't handle subpixel coordinates.
 889                 * Adjust to (macro)pixel boundary, but be careful not to
 890                 * increase the source viewport size, because that could
 891                 * push the downscaling factor out of bounds.
 892                 */
 893                src_x = src->x1 >> 16;
 894                src_w = drm_rect_width(src) >> 16;
 895                src_y = src->y1 >> 16;
 896                src_h = drm_rect_height(src) >> 16;
 897
 898                if (format_is_yuv(fb->format->format)) {
 899                        src_x &= ~1;
 900                        src_w &= ~1;
 901
 902                        /*
 903                         * Must keep src and dst the
 904                         * same if we can't scale.
 905                         */
 906                        if (!can_scale)
 907                                crtc_w &= ~1;
 908
 909                        if (crtc_w == 0)
 910                                state->base.visible = false;
 911                }
 912        }
 913
 914        /* Check size restrictions when scaling */
 915        if (state->base.visible && (src_w != crtc_w || src_h != crtc_h)) {
 916                unsigned int width_bytes;
 917                int cpp = fb->format->cpp[0];
 918
 919                WARN_ON(!can_scale);
 920
 921                /* FIXME interlacing min height is 6 */
 922
 923                if (crtc_w < 3 || crtc_h < 3)
 924                        state->base.visible = false;
 925
 926                if (src_w < 3 || src_h < 3)
 927                        state->base.visible = false;
 928
 929                width_bytes = ((src_x * cpp) & 63) + src_w * cpp;
 930
 931                if (INTEL_GEN(dev_priv) < 9 && (src_w > 2048 || src_h > 2048 ||
 932                    width_bytes > 4096 || fb->pitches[0] > 4096)) {
 933                        DRM_DEBUG_KMS("Source dimensions exceed hardware limits\n");
 934                        return -EINVAL;
 935                }
 936        }
 937
 938        if (state->base.visible) {
 939                src->x1 = src_x << 16;
 940                src->x2 = (src_x + src_w) << 16;
 941                src->y1 = src_y << 16;
 942                src->y2 = (src_y + src_h) << 16;
 943        }
 944
 945        dst->x1 = crtc_x;
 946        dst->x2 = crtc_x + crtc_w;
 947        dst->y1 = crtc_y;
 948        dst->y2 = crtc_y + crtc_h;
 949
 950        if (INTEL_GEN(dev_priv) >= 9) {
 951                ret = skl_check_plane_surface(state);
 952                if (ret)
 953                        return ret;
 954
 955                state->ctl = skl_plane_ctl(crtc_state, state);
 956        } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
 957                ret = i9xx_check_plane_surface(state);
 958                if (ret)
 959                        return ret;
 960
 961                state->ctl = vlv_sprite_ctl(crtc_state, state);
 962        } else if (INTEL_GEN(dev_priv) >= 7) {
 963                ret = i9xx_check_plane_surface(state);
 964                if (ret)
 965                        return ret;
 966
 967                state->ctl = ivb_sprite_ctl(crtc_state, state);
 968        } else {
 969                ret = i9xx_check_plane_surface(state);
 970                if (ret)
 971                        return ret;
 972
 973                state->ctl = g4x_sprite_ctl(crtc_state, state);
 974        }
 975
 976        return 0;
 977}
 978
 979int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
 980                              struct drm_file *file_priv)
 981{
 982        struct drm_i915_private *dev_priv = to_i915(dev);
 983        struct drm_intel_sprite_colorkey *set = data;
 984        struct drm_plane *plane;
 985        struct drm_plane_state *plane_state;
 986        struct drm_atomic_state *state;
 987        struct drm_modeset_acquire_ctx ctx;
 988        int ret = 0;
 989
 990        /* Make sure we don't try to enable both src & dest simultaneously */
 991        if ((set->flags & (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE)) == (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE))
 992                return -EINVAL;
 993
 994        if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
 995            set->flags & I915_SET_COLORKEY_DESTINATION)
 996                return -EINVAL;
 997
 998        plane = drm_plane_find(dev, set->plane_id);
 999        if (!plane || plane->type != DRM_PLANE_TYPE_OVERLAY)
1000                return -ENOENT;
1001
1002        drm_modeset_acquire_init(&ctx, 0);
1003
1004        state = drm_atomic_state_alloc(plane->dev);
1005        if (!state) {
1006                ret = -ENOMEM;
1007                goto out;
1008        }
1009        state->acquire_ctx = &ctx;
1010
1011        while (1) {
1012                plane_state = drm_atomic_get_plane_state(state, plane);
1013                ret = PTR_ERR_OR_ZERO(plane_state);
1014                if (!ret) {
1015                        to_intel_plane_state(plane_state)->ckey = *set;
1016                        ret = drm_atomic_commit(state);
1017                }
1018
1019                if (ret != -EDEADLK)
1020                        break;
1021
1022                drm_atomic_state_clear(state);
1023                drm_modeset_backoff(&ctx);
1024        }
1025
1026        drm_atomic_state_put(state);
1027out:
1028        drm_modeset_drop_locks(&ctx);
1029        drm_modeset_acquire_fini(&ctx);
1030        return ret;
1031}
1032
1033static const uint32_t g4x_plane_formats[] = {
1034        DRM_FORMAT_XRGB8888,
1035        DRM_FORMAT_YUYV,
1036        DRM_FORMAT_YVYU,
1037        DRM_FORMAT_UYVY,
1038        DRM_FORMAT_VYUY,
1039};
1040
1041static const uint32_t snb_plane_formats[] = {
1042        DRM_FORMAT_XBGR8888,
1043        DRM_FORMAT_XRGB8888,
1044        DRM_FORMAT_YUYV,
1045        DRM_FORMAT_YVYU,
1046        DRM_FORMAT_UYVY,
1047        DRM_FORMAT_VYUY,
1048};
1049
1050static const uint32_t vlv_plane_formats[] = {
1051        DRM_FORMAT_RGB565,
1052        DRM_FORMAT_ABGR8888,
1053        DRM_FORMAT_ARGB8888,
1054        DRM_FORMAT_XBGR8888,
1055        DRM_FORMAT_XRGB8888,
1056        DRM_FORMAT_XBGR2101010,
1057        DRM_FORMAT_ABGR2101010,
1058        DRM_FORMAT_YUYV,
1059        DRM_FORMAT_YVYU,
1060        DRM_FORMAT_UYVY,
1061        DRM_FORMAT_VYUY,
1062};
1063
1064static uint32_t skl_plane_formats[] = {
1065        DRM_FORMAT_RGB565,
1066        DRM_FORMAT_ABGR8888,
1067        DRM_FORMAT_ARGB8888,
1068        DRM_FORMAT_XBGR8888,
1069        DRM_FORMAT_XRGB8888,
1070        DRM_FORMAT_YUYV,
1071        DRM_FORMAT_YVYU,
1072        DRM_FORMAT_UYVY,
1073        DRM_FORMAT_VYUY,
1074};
1075
1076struct intel_plane *
1077intel_sprite_plane_create(struct drm_i915_private *dev_priv,
1078                          enum pipe pipe, int plane)
1079{
1080        struct intel_plane *intel_plane = NULL;
1081        struct intel_plane_state *state = NULL;
1082        unsigned long possible_crtcs;
1083        const uint32_t *plane_formats;
1084        unsigned int supported_rotations;
1085        int num_plane_formats;
1086        int ret;
1087
1088        intel_plane = kzalloc(sizeof(*intel_plane), GFP_KERNEL);
1089        if (!intel_plane) {
1090                ret = -ENOMEM;
1091                goto fail;
1092        }
1093
1094        state = intel_create_plane_state(&intel_plane->base);
1095        if (!state) {
1096                ret = -ENOMEM;
1097                goto fail;
1098        }
1099        intel_plane->base.state = &state->base;
1100
1101        if (INTEL_GEN(dev_priv) >= 9) {
1102                intel_plane->can_scale = true;
1103                state->scaler_id = -1;
1104
1105                intel_plane->update_plane = skl_update_plane;
1106                intel_plane->disable_plane = skl_disable_plane;
1107
1108                plane_formats = skl_plane_formats;
1109                num_plane_formats = ARRAY_SIZE(skl_plane_formats);
1110        } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1111                intel_plane->can_scale = false;
1112                intel_plane->max_downscale = 1;
1113
1114                intel_plane->update_plane = vlv_update_plane;
1115                intel_plane->disable_plane = vlv_disable_plane;
1116
1117                plane_formats = vlv_plane_formats;
1118                num_plane_formats = ARRAY_SIZE(vlv_plane_formats);
1119        } else if (INTEL_GEN(dev_priv) >= 7) {
1120                if (IS_IVYBRIDGE(dev_priv)) {
1121                        intel_plane->can_scale = true;
1122                        intel_plane->max_downscale = 2;
1123                } else {
1124                        intel_plane->can_scale = false;
1125                        intel_plane->max_downscale = 1;
1126                }
1127
1128                intel_plane->update_plane = ivb_update_plane;
1129                intel_plane->disable_plane = ivb_disable_plane;
1130
1131                plane_formats = snb_plane_formats;
1132                num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1133        } else {
1134                intel_plane->can_scale = true;
1135                intel_plane->max_downscale = 16;
1136
1137                intel_plane->update_plane = g4x_update_plane;
1138                intel_plane->disable_plane = g4x_disable_plane;
1139
1140                if (IS_GEN6(dev_priv)) {
1141                        plane_formats = snb_plane_formats;
1142                        num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1143                } else {
1144                        plane_formats = g4x_plane_formats;
1145                        num_plane_formats = ARRAY_SIZE(g4x_plane_formats);
1146                }
1147        }
1148
1149        if (INTEL_GEN(dev_priv) >= 9) {
1150                supported_rotations =
1151                        DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_90 |
1152                        DRM_MODE_ROTATE_180 | DRM_MODE_ROTATE_270;
1153        } else if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
1154                supported_rotations =
1155                        DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180 |
1156                        DRM_MODE_REFLECT_X;
1157        } else {
1158                supported_rotations =
1159                        DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180;
1160        }
1161
1162        intel_plane->pipe = pipe;
1163        intel_plane->plane = plane;
1164        intel_plane->id = PLANE_SPRITE0 + plane;
1165        intel_plane->frontbuffer_bit = INTEL_FRONTBUFFER_SPRITE(pipe, plane);
1166        intel_plane->check_plane = intel_check_sprite_plane;
1167
1168        possible_crtcs = (1 << pipe);
1169
1170        if (INTEL_GEN(dev_priv) >= 9)
1171                ret = drm_universal_plane_init(&dev_priv->drm, &intel_plane->base,
1172                                               possible_crtcs, &intel_plane_funcs,
1173                                               plane_formats, num_plane_formats,
1174                                               DRM_PLANE_TYPE_OVERLAY,
1175                                               "plane %d%c", plane + 2, pipe_name(pipe));
1176        else
1177                ret = drm_universal_plane_init(&dev_priv->drm, &intel_plane->base,
1178                                               possible_crtcs, &intel_plane_funcs,
1179                                               plane_formats, num_plane_formats,
1180                                               DRM_PLANE_TYPE_OVERLAY,
1181                                               "sprite %c", sprite_name(pipe, plane));
1182        if (ret)
1183                goto fail;
1184
1185        drm_plane_create_rotation_property(&intel_plane->base,
1186                                           DRM_MODE_ROTATE_0,
1187                                           supported_rotations);
1188
1189        drm_plane_helper_add(&intel_plane->base, &intel_plane_helper_funcs);
1190
1191        return intel_plane;
1192
1193fail:
1194        kfree(state);
1195        kfree(intel_plane);
1196
1197        return ERR_PTR(ret);
1198}
1199