root/sys/dev/pci/drm/i915/intel_clock_gating.c
/*
 * Copyright © 2012 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Eugeni Dodonov <eugeni.dodonov@intel.com>
 *
 */

#include "display/i9xx_plane_regs.h"
#include "display/intel_display.h"
#include "display/intel_display_core.h"

#include "gt/intel_engine_regs.h"
#include "gt/intel_gt.h"
#include "gt/intel_gt_mcr.h"
#include "gt/intel_gt_regs.h"

#include "i915_drv.h"
#include "i915_reg.h"
#include "intel_clock_gating.h"
#include "intel_mchbar_regs.h"
#include "vlv_iosf_sb.h"

struct drm_i915_clock_gating_funcs {
        void (*init_clock_gating)(struct drm_i915_private *i915);
};

static void gen9_init_clock_gating(struct drm_i915_private *i915)
{
        if (HAS_LLC(i915)) {
                /*
                 * WaCompressedResourceDisplayNewHashMode:skl,kbl
                 * Display WA #0390: skl,kbl
                 *
                 * Must match Sampler, Pixel Back End, and Media. See
                 * WaCompressedResourceSamplerPbeMediaNewHashMode.
                 */
                intel_uncore_rmw(&i915->uncore, CHICKEN_PAR1_1, 0, SKL_DE_COMPRESSED_HASH_MODE);
        }

        /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PAR1_1, 0, SKL_EDP_PSR_FIX_RDWRAP);

        /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
        intel_uncore_rmw(&i915->uncore, GEN8_CHICKEN_DCPR_1, 0, MASK_WAKEMEM);

        /*
         * WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl
         * Display WA #0859: skl,bxt,kbl,glk,cfl
         */
        intel_uncore_rmw(&i915->uncore, DISP_ARB_CTL, 0, DISP_FBC_MEMORY_WAKE);
}

static void bxt_init_clock_gating(struct drm_i915_private *i915)
{
        gen9_init_clock_gating(i915);

        /* WaDisableSDEUnitClockGating:bxt */
        intel_uncore_rmw(&i915->uncore, GEN8_UCGCTL6, 0, GEN8_SDEUNIT_CLOCK_GATE_DISABLE);

        /*
         * FIXME:
         * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
         */
        intel_uncore_rmw(&i915->uncore, GEN8_UCGCTL6, 0, GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);

        /*
         * Wa: Backlight PWM may stop in the asserted state, causing backlight
         * to stay fully on.
         */
        intel_uncore_write(&i915->uncore, GEN9_CLKGATE_DIS_0,
                           intel_uncore_read(&i915->uncore, GEN9_CLKGATE_DIS_0) |
                           PWM1_GATING_DIS | PWM2_GATING_DIS);

        /*
         * Lower the display internal timeout.
         * This is needed to avoid any hard hangs when DSI port PLL
         * is off and a MMIO access is attempted by any privilege
         * application, using batch buffers or any other means.
         */
        intel_uncore_write(&i915->uncore, RM_TIMEOUT, MMIO_TIMEOUT_US(950));

        /*
         * WaFbcTurnOffFbcWatermark:bxt
         * Display WA #0562: bxt
         */
        intel_uncore_rmw(&i915->uncore, DISP_ARB_CTL, 0, DISP_FBC_WM_DIS);
}

static void glk_init_clock_gating(struct drm_i915_private *i915)
{
        gen9_init_clock_gating(i915);

        /*
         * WaDisablePWMClockGating:glk
         * Backlight PWM may stop in the asserted state, causing backlight
         * to stay fully on.
         */
        intel_uncore_write(&i915->uncore, GEN9_CLKGATE_DIS_0,
                           intel_uncore_read(&i915->uncore, GEN9_CLKGATE_DIS_0) |
                           PWM1_GATING_DIS | PWM2_GATING_DIS);
}

static void ibx_init_clock_gating(struct drm_i915_private *i915)
{
        /*
         * On Ibex Peak and Cougar Point, we need to disable clock
         * gating for the panel power sequencer or it will fail to
         * start up when no ports are active.
         */
        intel_uncore_write(&i915->uncore, SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
}

static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
{
        struct intel_display *display = dev_priv->display;
        enum pipe pipe;

        for_each_pipe(display, pipe) {
                intel_uncore_rmw(&dev_priv->uncore, DSPCNTR(display, pipe),
                                 0, DISP_TRICKLE_FEED_DISABLE);

                intel_uncore_rmw(&dev_priv->uncore, DSPSURF(display, pipe),
                                 0, 0);
                intel_uncore_posting_read(&dev_priv->uncore,
                                          DSPSURF(display, pipe));
        }
}

static void ilk_init_clock_gating(struct drm_i915_private *i915)
{
        u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;

        /*
         * Required for FBC
         * WaFbcDisableDpfcClockGating:ilk
         */
        dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
                   ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
                   ILK_DPFDUNIT_CLOCK_GATE_ENABLE;

        intel_uncore_write(&i915->uncore, PCH_3DCGDIS0,
                           MARIUNIT_CLOCK_GATE_DISABLE |
                           SVSMUNIT_CLOCK_GATE_DISABLE);
        intel_uncore_write(&i915->uncore, PCH_3DCGDIS1,
                           VFMUNIT_CLOCK_GATE_DISABLE);

        /*
         * According to the spec the following bits should be set in
         * order to enable memory self-refresh
         * The bit 22/21 of 0x42004
         * The bit 5 of 0x42020
         * The bit 15 of 0x45000
         */
        intel_uncore_write(&i915->uncore, ILK_DISPLAY_CHICKEN2,
                           (intel_uncore_read(&i915->uncore, ILK_DISPLAY_CHICKEN2) |
                            ILK_DPARB_GATE | ILK_VSDPFD_FULL));
        dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
        intel_uncore_write(&i915->uncore, DISP_ARB_CTL,
                           (intel_uncore_read(&i915->uncore, DISP_ARB_CTL) |
                            DISP_FBC_WM_DIS));

        /*
         * Based on the document from hardware guys the following bits
         * should be set unconditionally in order to enable FBC.
         * The bit 22 of 0x42000
         * The bit 22 of 0x42004
         * The bit 7,8,9 of 0x42020.
         */
        if (IS_IRONLAKE_M(i915)) {
                /* WaFbcAsynchFlipDisableFbcQueue:ilk */
                intel_uncore_rmw(&i915->uncore, ILK_DISPLAY_CHICKEN1, 0, ILK_FBCQ_DIS);
                intel_uncore_rmw(&i915->uncore, ILK_DISPLAY_CHICKEN2, 0, ILK_DPARB_GATE);
        }

        intel_uncore_write(&i915->uncore, ILK_DSPCLK_GATE_D, dspclk_gate);

        intel_uncore_rmw(&i915->uncore, ILK_DISPLAY_CHICKEN2, 0, ILK_ELPIN_409_SELECT);

        g4x_disable_trickle_feed(i915);

        ibx_init_clock_gating(i915);
}

static void cpt_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;
        enum pipe pipe;
        u32 val;

        /*
         * On Ibex Peak and Cougar Point, we need to disable clock
         * gating for the panel power sequencer or it will fail to
         * start up when no ports are active.
         */
        intel_uncore_write(&i915->uncore, SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
                           PCH_DPLUNIT_CLOCK_GATE_DISABLE |
                           PCH_CPUNIT_CLOCK_GATE_DISABLE);
        intel_uncore_rmw(&i915->uncore, SOUTH_CHICKEN2, 0, DPLS_EDP_PPS_FIX_DIS);
        /* The below fixes the weird display corruption, a few pixels shifted
         * downward, on (only) LVDS of some HP laptops with IVY.
         */
        for_each_pipe(display, pipe) {
                val = intel_uncore_read(&i915->uncore, TRANS_CHICKEN2(pipe));
                val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
                val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
                if (display->vbt.fdi_rx_polarity_inverted)
                        val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
                val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
                val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
                intel_uncore_write(&i915->uncore, TRANS_CHICKEN2(pipe), val);
        }
        /* WADP0ClockGatingDisable */
        for_each_pipe(display, pipe) {
                intel_uncore_write(&i915->uncore, TRANS_CHICKEN1(pipe),
                                   TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
        }
}

static void gen6_check_mch_setup(struct drm_i915_private *i915)
{
        u32 tmp;

        tmp = intel_uncore_read(&i915->uncore, MCH_SSKPD);
        if (REG_FIELD_GET(SSKPD_WM0_MASK_SNB, tmp) != 12)
                drm_dbg_kms(&i915->drm,
                            "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
                            tmp);
}

static void gen6_init_clock_gating(struct drm_i915_private *i915)
{
        u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;

        intel_uncore_write(&i915->uncore, ILK_DSPCLK_GATE_D, dspclk_gate);

        intel_uncore_rmw(&i915->uncore, ILK_DISPLAY_CHICKEN2, 0, ILK_ELPIN_409_SELECT);

        intel_uncore_write(&i915->uncore, GEN6_UCGCTL1,
                           intel_uncore_read(&i915->uncore, GEN6_UCGCTL1) |
                           GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
                           GEN6_CSUNIT_CLOCK_GATE_DISABLE);

        /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
         * gating disable must be set.  Failure to set it results in
         * flickering pixels due to Z write ordering failures after
         * some amount of runtime in the Mesa "fire" demo, and Unigine
         * Sanctuary and Tropics, and apparently anything else with
         * alpha test or pixel discard.
         *
         * According to the spec, bit 11 (RCCUNIT) must also be set,
         * but we didn't debug actual testcases to find it out.
         *
         * WaDisableRCCUnitClockGating:snb
         * WaDisableRCPBUnitClockGating:snb
         */
        intel_uncore_write(&i915->uncore, GEN6_UCGCTL2,
                           GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
                           GEN6_RCCUNIT_CLOCK_GATE_DISABLE);

        /*
         * According to the spec the following bits should be
         * set in order to enable memory self-refresh and fbc:
         * The bit21 and bit22 of 0x42000
         * The bit21 and bit22 of 0x42004
         * The bit5 and bit7 of 0x42020
         * The bit14 of 0x70180
         * The bit14 of 0x71180
         *
         * WaFbcAsynchFlipDisableFbcQueue:snb
         */
        intel_uncore_write(&i915->uncore, ILK_DISPLAY_CHICKEN1,
                           intel_uncore_read(&i915->uncore, ILK_DISPLAY_CHICKEN1) |
                           ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
        intel_uncore_write(&i915->uncore, ILK_DISPLAY_CHICKEN2,
                           intel_uncore_read(&i915->uncore, ILK_DISPLAY_CHICKEN2) |
                           ILK_DPARB_GATE | ILK_VSDPFD_FULL);
        intel_uncore_write(&i915->uncore, ILK_DSPCLK_GATE_D,
                           intel_uncore_read(&i915->uncore, ILK_DSPCLK_GATE_D) |
                           ILK_DPARBUNIT_CLOCK_GATE_ENABLE  |
                           ILK_DPFDUNIT_CLOCK_GATE_ENABLE);

        g4x_disable_trickle_feed(i915);

        cpt_init_clock_gating(i915);

        gen6_check_mch_setup(i915);
}

static void lpt_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;

        /*
         * TODO: this bit should only be enabled when really needed, then
         * disabled when not needed anymore in order to save power.
         */
        if (HAS_PCH_LPT_LP(display))
                intel_uncore_rmw(&i915->uncore, SOUTH_DSPCLK_GATE_D,
                                 0, PCH_LP_PARTITION_LEVEL_DISABLE);

        /* WADPOClockGatingDisable:hsw */
        intel_uncore_rmw(&i915->uncore, TRANS_CHICKEN1(PIPE_A),
                         0, TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
}

static void gen8_set_l3sqc_credits(struct drm_i915_private *i915,
                                   int general_prio_credits,
                                   int high_prio_credits)
{
        u32 misccpctl;
        u32 val;

        /* WaTempDisableDOPClkGating:bdw */
        misccpctl = intel_uncore_rmw(&i915->uncore, GEN7_MISCCPCTL,
                                     GEN7_DOP_CLOCK_GATE_ENABLE, 0);

        val = intel_gt_mcr_read_any(to_gt(i915), GEN8_L3SQCREG1);
        val &= ~L3_PRIO_CREDITS_MASK;
        val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
        val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
        intel_gt_mcr_multicast_write(to_gt(i915), GEN8_L3SQCREG1, val);

        /*
         * Wait at least 100 clocks before re-enabling clock gating.
         * See the definition of L3SQCREG1 in BSpec.
         */
        intel_gt_mcr_read_any(to_gt(i915), GEN8_L3SQCREG1);
        udelay(1);
        intel_uncore_write(&i915->uncore, GEN7_MISCCPCTL, misccpctl);
}

static void dg2_init_clock_gating(struct drm_i915_private *i915)
{
        /* Wa_22010954014:dg2 */
        intel_uncore_rmw(&i915->uncore, XEHP_CLOCK_GATE_DIS, 0,
                         SGSI_SIDECLK_DIS);
}

static void cnp_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;

        if (!HAS_PCH_CNP(display))
                return;

        /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
        intel_uncore_rmw(&i915->uncore, SOUTH_DSPCLK_GATE_D, 0, CNP_PWM_CGE_GATING_DISABLE);
}

static void cfl_init_clock_gating(struct drm_i915_private *i915)
{
        cnp_init_clock_gating(i915);
        gen9_init_clock_gating(i915);

        /* WAC6entrylatency:cfl */
        intel_uncore_rmw(&i915->uncore, FBC_LLC_READ_CTRL, 0, FBC_LLC_FULLY_OPEN);

        /*
         * WaFbcTurnOffFbcWatermark:cfl
         * Display WA #0562: cfl
         */
        intel_uncore_rmw(&i915->uncore, DISP_ARB_CTL, 0, DISP_FBC_WM_DIS);
}

static void kbl_init_clock_gating(struct drm_i915_private *i915)
{
        gen9_init_clock_gating(i915);

        /* WAC6entrylatency:kbl */
        intel_uncore_rmw(&i915->uncore, FBC_LLC_READ_CTRL, 0, FBC_LLC_FULLY_OPEN);

        /* WaDisableSDEUnitClockGating:kbl */
        if (IS_KABYLAKE(i915) && IS_GRAPHICS_STEP(i915, 0, STEP_C0))
                intel_uncore_rmw(&i915->uncore, GEN8_UCGCTL6,
                                 0, GEN8_SDEUNIT_CLOCK_GATE_DISABLE);

        /* WaDisableGamClockGating:kbl */
        if (IS_KABYLAKE(i915) && IS_GRAPHICS_STEP(i915, 0, STEP_C0))
                intel_uncore_rmw(&i915->uncore, GEN6_UCGCTL1,
                                 0, GEN6_GAMUNIT_CLOCK_GATE_DISABLE);

        /*
         * WaFbcTurnOffFbcWatermark:kbl
         * Display WA #0562: kbl
         */
        intel_uncore_rmw(&i915->uncore, DISP_ARB_CTL, 0, DISP_FBC_WM_DIS);
}

static void skl_init_clock_gating(struct drm_i915_private *i915)
{
        gen9_init_clock_gating(i915);

        /* WaDisableDopClockGating:skl */
        intel_uncore_rmw(&i915->uncore, GEN7_MISCCPCTL,
                         GEN7_DOP_CLOCK_GATE_ENABLE, 0);

        /* WAC6entrylatency:skl */
        intel_uncore_rmw(&i915->uncore, FBC_LLC_READ_CTRL, 0, FBC_LLC_FULLY_OPEN);

        /*
         * WaFbcTurnOffFbcWatermark:skl
         * Display WA #0562: skl
         */
        intel_uncore_rmw(&i915->uncore, DISP_ARB_CTL, 0, DISP_FBC_WM_DIS);
}

static void bdw_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;
        enum pipe pipe;

        /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PIPESL_1(PIPE_A), 0, HSW_FBCQ_DIS);

        /* WaSwitchSolVfFArbitrationPriority:bdw */
        intel_uncore_rmw(&i915->uncore, GAM_ECOCHK, 0, HSW_ECOCHK_ARB_PRIO_SOL);

        /* WaPsrDPAMaskVBlankInSRD:bdw */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PAR1_1, 0, HSW_MASK_VBL_TO_PIPE_IN_SRD);

        for_each_pipe(display, pipe) {
                /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
                intel_uncore_rmw(&i915->uncore, CHICKEN_PIPESL_1(pipe),
                                 0, BDW_UNMASK_VBL_TO_REGS_IN_SRD);
        }

        /* WaVSRefCountFullforceMissDisable:bdw */
        /* WaDSRefCountFullforceMissDisable:bdw */
        intel_uncore_rmw(&i915->uncore, GEN7_FF_THREAD_MODE,
                         GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME, 0);

        intel_uncore_write(&i915->uncore, RING_PSMI_CTL(RENDER_RING_BASE),
                           _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));

        /* WaDisableSDEUnitClockGating:bdw */
        intel_uncore_rmw(&i915->uncore, GEN8_UCGCTL6, 0, GEN8_SDEUNIT_CLOCK_GATE_DISABLE);

        /* WaProgramL3SqcReg1Default:bdw */
        gen8_set_l3sqc_credits(i915, 30, 2);

        /* WaKVMNotificationOnConfigChange:bdw */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PAR2_1,
                         0, KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);

        lpt_init_clock_gating(i915);

        /* WaDisableDopClockGating:bdw
         *
         * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
         * clock gating.
         */
        intel_uncore_rmw(&i915->uncore, GEN6_UCGCTL1, 0, GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
}

static void hsw_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;
        enum pipe pipe;

        /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PIPESL_1(PIPE_A), 0, HSW_FBCQ_DIS);

        /* WaPsrDPAMaskVBlankInSRD:hsw */
        intel_uncore_rmw(&i915->uncore, CHICKEN_PAR1_1, 0, HSW_MASK_VBL_TO_PIPE_IN_SRD);

        for_each_pipe(display, pipe) {
                /* WaPsrDPRSUnmaskVBlankInSRD:hsw */
                intel_uncore_rmw(&i915->uncore, CHICKEN_PIPESL_1(pipe),
                                 0, HSW_UNMASK_VBL_TO_REGS_IN_SRD);
        }

        /* This is required by WaCatErrorRejectionIssue:hsw */
        intel_uncore_rmw(&i915->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
                         0, GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);

        /* WaSwitchSolVfFArbitrationPriority:hsw */
        intel_uncore_rmw(&i915->uncore, GAM_ECOCHK, 0, HSW_ECOCHK_ARB_PRIO_SOL);

        lpt_init_clock_gating(i915);
}

static void ivb_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_display *display = i915->display;

        intel_uncore_write(&i915->uncore, ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);

        /* WaFbcAsynchFlipDisableFbcQueue:ivb */
        intel_uncore_rmw(&i915->uncore, ILK_DISPLAY_CHICKEN1, 0, ILK_FBCQ_DIS);

        /* WaDisableBackToBackFlipFix:ivb */
        intel_uncore_write(&i915->uncore, IVB_CHICKEN3,
                           CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
                           CHICKEN3_DGMG_DONE_FIX_DISABLE);

        if (INTEL_INFO(i915)->gt == 1)
                intel_uncore_write(&i915->uncore, GEN7_ROW_CHICKEN2,
                                   _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
        else {
                /* must write both registers */
                intel_uncore_write(&i915->uncore, GEN7_ROW_CHICKEN2,
                                   _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
                intel_uncore_write(&i915->uncore, GEN7_ROW_CHICKEN2_GT2,
                                   _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
        }

        /*
         * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
         * This implements the WaDisableRCZUnitClockGating:ivb workaround.
         */
        intel_uncore_write(&i915->uncore, GEN6_UCGCTL2,
                           GEN6_RCZUNIT_CLOCK_GATE_DISABLE);

        /* This is required by WaCatErrorRejectionIssue:ivb */
        intel_uncore_rmw(&i915->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
                         0, GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);

        g4x_disable_trickle_feed(i915);

        intel_uncore_rmw(&i915->uncore, GEN6_MBCUNIT_SNPCR, GEN6_MBC_SNPCR_MASK,
                         GEN6_MBC_SNPCR_MED);

        if (!HAS_PCH_NOP(display))
                cpt_init_clock_gating(i915);

        gen6_check_mch_setup(i915);
}

static void vlv_init_clock_gating(struct drm_i915_private *i915)
{
        /* WaDisableBackToBackFlipFix:vlv */
        intel_uncore_write(&i915->uncore, IVB_CHICKEN3,
                           CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
                           CHICKEN3_DGMG_DONE_FIX_DISABLE);

        /* WaDisableDopClockGating:vlv */
        intel_uncore_write(&i915->uncore, GEN7_ROW_CHICKEN2,
                           _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));

        /* This is required by WaCatErrorRejectionIssue:vlv */
        intel_uncore_rmw(&i915->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
                         0, GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);

        /*
         * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
         * This implements the WaDisableRCZUnitClockGating:vlv workaround.
         */
        intel_uncore_write(&i915->uncore, GEN6_UCGCTL2,
                           GEN6_RCZUNIT_CLOCK_GATE_DISABLE);

        /* WaDisableL3Bank2xClockGate:vlv
         * Disabling L3 clock gating- MMIO 940c[25] = 1
         * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
        intel_uncore_rmw(&i915->uncore, GEN7_UCGCTL4, 0, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);

        /*
         * WaDisableVLVClockGating_VBIIssue:vlv
         * Disable clock gating on th GCFG unit to prevent a delay
         * in the reporting of vblank events.
         */
        intel_uncore_write(&i915->uncore, VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
}

static void chv_init_clock_gating(struct drm_i915_private *i915)
{
        /* WaVSRefCountFullforceMissDisable:chv */
        /* WaDSRefCountFullforceMissDisable:chv */
        intel_uncore_rmw(&i915->uncore, GEN7_FF_THREAD_MODE,
                         GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME, 0);

        /* WaDisableSemaphoreAndSyncFlipWait:chv */
        intel_uncore_write(&i915->uncore, RING_PSMI_CTL(RENDER_RING_BASE),
                           _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));

        /* WaDisableCSUnitClockGating:chv */
        intel_uncore_rmw(&i915->uncore, GEN6_UCGCTL1, 0, GEN6_CSUNIT_CLOCK_GATE_DISABLE);

        /* WaDisableSDEUnitClockGating:chv */
        intel_uncore_rmw(&i915->uncore, GEN8_UCGCTL6, 0, GEN8_SDEUNIT_CLOCK_GATE_DISABLE);

        /*
         * WaProgramL3SqcReg1Default:chv
         * See gfxspecs/Related Documents/Performance Guide/
         * LSQC Setting Recommendations.
         */
        gen8_set_l3sqc_credits(i915, 38, 2);
}

static void g4x_init_clock_gating(struct drm_i915_private *i915)
{
        u32 dspclk_gate;

        intel_uncore_write(&i915->uncore, RENCLK_GATE_D1, 0);
        intel_uncore_write(&i915->uncore, RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
                           GS_UNIT_CLOCK_GATE_DISABLE |
                           CL_UNIT_CLOCK_GATE_DISABLE);
        intel_uncore_write(&i915->uncore, RAMCLK_GATE_D, 0);
        dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
                OVRUNIT_CLOCK_GATE_DISABLE |
                OVCUNIT_CLOCK_GATE_DISABLE;
        if (IS_GM45(i915))
                dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
        intel_uncore_write(&i915->uncore, DSPCLK_GATE_D, dspclk_gate);

        g4x_disable_trickle_feed(i915);
}

static void i965gm_init_clock_gating(struct drm_i915_private *i915)
{
        struct intel_uncore *uncore = &i915->uncore;

        intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
        intel_uncore_write(uncore, RENCLK_GATE_D2, 0);
        intel_uncore_write(uncore, DSPCLK_GATE_D, 0);
        intel_uncore_write(uncore, RAMCLK_GATE_D, 0);
        intel_uncore_write16(uncore, DEUC, 0);
        intel_uncore_write(uncore,
                           MI_ARB_STATE,
                           _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
}

static void i965g_init_clock_gating(struct drm_i915_private *i915)
{
        intel_uncore_write(&i915->uncore, RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
                           I965_RCC_CLOCK_GATE_DISABLE |
                           I965_RCPB_CLOCK_GATE_DISABLE |
                           I965_ISC_CLOCK_GATE_DISABLE |
                           I965_FBC_CLOCK_GATE_DISABLE);
        intel_uncore_write(&i915->uncore, RENCLK_GATE_D2, 0);
        intel_uncore_write(&i915->uncore, MI_ARB_STATE,
                           _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
}

static void gen3_init_clock_gating(struct drm_i915_private *i915)
{
        u32 dstate = intel_uncore_read(&i915->uncore, D_STATE);

        dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
                DSTATE_DOT_CLOCK_GATING;
        intel_uncore_write(&i915->uncore, D_STATE, dstate);

        if (IS_PINEVIEW(i915))
                intel_uncore_write(&i915->uncore, ECOSKPD(RENDER_RING_BASE),
                                   _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));

        /* IIR "flip pending" means done if this bit is set */
        intel_uncore_write(&i915->uncore, ECOSKPD(RENDER_RING_BASE),
                           _MASKED_BIT_DISABLE(ECO_FLIP_DONE));

        /* interrupts should cause a wake up from C3 */
        intel_uncore_write(&i915->uncore, INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));

        /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
        intel_uncore_write(&i915->uncore, MI_ARB_STATE,
                           _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));

        intel_uncore_write(&i915->uncore, MI_ARB_STATE,
                           _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
}

static void i85x_init_clock_gating(struct drm_i915_private *i915)
{
        intel_uncore_write(&i915->uncore, RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);

        /* interrupts should cause a wake up from C3 */
        intel_uncore_write(&i915->uncore, MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
                           _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));

        intel_uncore_write(&i915->uncore, MEM_MODE,
                           _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));

        /*
         * Have FBC ignore 3D activity since we use software
         * render tracking, and otherwise a pure 3D workload
         * (even if it just renders a single frame and then does
         * absolutely nothing) would not allow FBC to recompress
         * until a 2D blit occurs.
         */
        intel_uncore_write(&i915->uncore, SCPD0,
                           _MASKED_BIT_ENABLE(SCPD_FBC_IGNORE_3D));
}

static void i830_init_clock_gating(struct drm_i915_private *i915)
{
        intel_uncore_write(&i915->uncore, MEM_MODE,
                           _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
                           _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
}

void intel_clock_gating_init(struct drm_i915_private *i915)
{
        i915->clock_gating_funcs->init_clock_gating(i915);
}

static void nop_init_clock_gating(struct drm_i915_private *i915)
{
        drm_dbg_kms(&i915->drm,
                    "No clock gating settings or workarounds applied.\n");
}

#define CG_FUNCS(platform)                                              \
static const struct drm_i915_clock_gating_funcs platform##_clock_gating_funcs = { \
        .init_clock_gating = platform##_init_clock_gating,              \
}

CG_FUNCS(dg2);
CG_FUNCS(cfl);
CG_FUNCS(skl);
CG_FUNCS(kbl);
CG_FUNCS(bxt);
CG_FUNCS(glk);
CG_FUNCS(bdw);
CG_FUNCS(chv);
CG_FUNCS(hsw);
CG_FUNCS(ivb);
CG_FUNCS(vlv);
CG_FUNCS(gen6);
CG_FUNCS(ilk);
CG_FUNCS(g4x);
CG_FUNCS(i965gm);
CG_FUNCS(i965g);
CG_FUNCS(gen3);
CG_FUNCS(i85x);
CG_FUNCS(i830);
CG_FUNCS(nop);
#undef CG_FUNCS

/**
 * intel_clock_gating_hooks_init - setup the clock gating hooks
 * @i915: device private
 *
 * Setup the hooks that configure which clocks of a given platform can be
 * gated and also apply various GT and display specific workarounds for these
 * platforms. Note that some GT specific workarounds are applied separately
 * when GPU contexts or batchbuffers start their execution.
 */
void intel_clock_gating_hooks_init(struct drm_i915_private *i915)
{
        if (IS_DG2(i915))
                i915->clock_gating_funcs = &dg2_clock_gating_funcs;
        else if (IS_COFFEELAKE(i915) || IS_COMETLAKE(i915))
                i915->clock_gating_funcs = &cfl_clock_gating_funcs;
        else if (IS_SKYLAKE(i915))
                i915->clock_gating_funcs = &skl_clock_gating_funcs;
        else if (IS_KABYLAKE(i915))
                i915->clock_gating_funcs = &kbl_clock_gating_funcs;
        else if (IS_BROXTON(i915))
                i915->clock_gating_funcs = &bxt_clock_gating_funcs;
        else if (IS_GEMINILAKE(i915))
                i915->clock_gating_funcs = &glk_clock_gating_funcs;
        else if (IS_BROADWELL(i915))
                i915->clock_gating_funcs = &bdw_clock_gating_funcs;
        else if (IS_CHERRYVIEW(i915))
                i915->clock_gating_funcs = &chv_clock_gating_funcs;
        else if (IS_HASWELL(i915))
                i915->clock_gating_funcs = &hsw_clock_gating_funcs;
        else if (IS_IVYBRIDGE(i915))
                i915->clock_gating_funcs = &ivb_clock_gating_funcs;
        else if (IS_VALLEYVIEW(i915))
                i915->clock_gating_funcs = &vlv_clock_gating_funcs;
        else if (GRAPHICS_VER(i915) == 6)
                i915->clock_gating_funcs = &gen6_clock_gating_funcs;
        else if (GRAPHICS_VER(i915) == 5)
                i915->clock_gating_funcs = &ilk_clock_gating_funcs;
        else if (IS_G4X(i915))
                i915->clock_gating_funcs = &g4x_clock_gating_funcs;
        else if (IS_I965GM(i915))
                i915->clock_gating_funcs = &i965gm_clock_gating_funcs;
        else if (IS_I965G(i915))
                i915->clock_gating_funcs = &i965g_clock_gating_funcs;
        else if (GRAPHICS_VER(i915) == 3)
                i915->clock_gating_funcs = &gen3_clock_gating_funcs;
        else if (IS_I85X(i915) || IS_I865G(i915))
                i915->clock_gating_funcs = &i85x_clock_gating_funcs;
        else if (GRAPHICS_VER(i915) == 2)
                i915->clock_gating_funcs = &i830_clock_gating_funcs;
        else
                i915->clock_gating_funcs = &nop_clock_gating_funcs;
}