root/drivers/gpu/drm/i915/display/intel_pch_display.c
// SPDX-License-Identifier: MIT
/*
 * Copyright © 2021 Intel Corporation
 */

#include <drm/drm_print.h>

#include "g4x_dp.h"
#include "i915_reg.h"
#include "intel_crt.h"
#include "intel_crt_regs.h"
#include "intel_de.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_dpll.h"
#include "intel_fdi.h"
#include "intel_fdi_regs.h"
#include "intel_lvds.h"
#include "intel_lvds_regs.h"
#include "intel_pch_display.h"
#include "intel_pch_refclk.h"
#include "intel_pps.h"
#include "intel_sdvo.h"

bool intel_has_pch_trancoder(struct intel_display *display,
                             enum pipe pch_transcoder)
{
        return HAS_PCH_IBX(display) || HAS_PCH_CPT(display) ||
                (HAS_PCH_LPT_H(display) && pch_transcoder == PIPE_A);
}

enum pipe intel_crtc_pch_transcoder(struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);

        if (HAS_PCH_LPT(display))
                return PIPE_A;
        else
                return crtc->pipe;
}

static void assert_pch_dp_disabled(struct intel_display *display,
                                   enum pipe pipe, enum port port,
                                   i915_reg_t dp_reg)
{
        enum pipe port_pipe;
        bool state;

        state = g4x_dp_port_enabled(display, dp_reg, port, &port_pipe);

        INTEL_DISPLAY_STATE_WARN(display, state && port_pipe == pipe,
                                 "PCH DP %c enabled on transcoder %c, should be disabled\n",
                                 port_name(port), pipe_name(pipe));

        INTEL_DISPLAY_STATE_WARN(display,
                                 HAS_PCH_IBX(display) && !state && port_pipe == PIPE_B,
                                 "IBX PCH DP %c still using transcoder B\n",
                                 port_name(port));
}

static void assert_pch_hdmi_disabled(struct intel_display *display,
                                     enum pipe pipe, enum port port,
                                     i915_reg_t hdmi_reg)
{
        enum pipe port_pipe;
        bool state;

        state = intel_sdvo_port_enabled(display, hdmi_reg, &port_pipe);

        INTEL_DISPLAY_STATE_WARN(display, state && port_pipe == pipe,
                                 "PCH HDMI %c enabled on transcoder %c, should be disabled\n",
                                 port_name(port), pipe_name(pipe));

        INTEL_DISPLAY_STATE_WARN(display,
                                 HAS_PCH_IBX(display) && !state && port_pipe == PIPE_B,
                                 "IBX PCH HDMI %c still using transcoder B\n",
                                 port_name(port));
}

static void assert_pch_ports_disabled(struct intel_display *display,
                                      enum pipe pipe)
{
        enum pipe port_pipe;

        assert_pch_dp_disabled(display, pipe, PORT_B, PCH_DP_B);
        assert_pch_dp_disabled(display, pipe, PORT_C, PCH_DP_C);
        assert_pch_dp_disabled(display, pipe, PORT_D, PCH_DP_D);

        INTEL_DISPLAY_STATE_WARN(display,
                                 intel_crt_port_enabled(display, PCH_ADPA, &port_pipe) && port_pipe == pipe,
                                 "PCH VGA enabled on transcoder %c, should be disabled\n",
                                 pipe_name(pipe));

        INTEL_DISPLAY_STATE_WARN(display,
                                 intel_lvds_port_enabled(display, PCH_LVDS, &port_pipe) && port_pipe == pipe,
                                 "PCH LVDS enabled on transcoder %c, should be disabled\n",
                                 pipe_name(pipe));

        /* PCH SDVOB multiplex with HDMIB */
        assert_pch_hdmi_disabled(display, pipe, PORT_B, PCH_HDMIB);
        assert_pch_hdmi_disabled(display, pipe, PORT_C, PCH_HDMIC);
        assert_pch_hdmi_disabled(display, pipe, PORT_D, PCH_HDMID);
}

static void assert_pch_transcoder_disabled(struct intel_display *display,
                                           enum pipe pipe)
{
        u32 val;
        bool enabled;

        val = intel_de_read(display, PCH_TRANSCONF(pipe));
        enabled = !!(val & TRANS_ENABLE);
        INTEL_DISPLAY_STATE_WARN(display, enabled,
                                 "transcoder assertion failed, should be off on pipe %c but is still active\n",
                                 pipe_name(pipe));
}

static void ibx_sanitize_pch_hdmi_port(struct intel_display *display,
                                       enum port port, i915_reg_t hdmi_reg)
{
        u32 val = intel_de_read(display, hdmi_reg);

        if (val & SDVO_ENABLE ||
            (val & SDVO_PIPE_SEL_MASK) == SDVO_PIPE_SEL(PIPE_A))
                return;

        drm_dbg_kms(display->drm,
                    "Sanitizing transcoder select for HDMI %c\n",
                    port_name(port));

        val &= ~SDVO_PIPE_SEL_MASK;
        val |= SDVO_PIPE_SEL(PIPE_A);

        intel_de_write(display, hdmi_reg, val);
}

static void ibx_sanitize_pch_dp_port(struct intel_display *display,
                                     enum port port, i915_reg_t dp_reg)
{
        u32 val = intel_de_read(display, dp_reg);

        if (val & DP_PORT_EN ||
            (val & DP_PIPE_SEL_MASK) == DP_PIPE_SEL(PIPE_A))
                return;

        drm_dbg_kms(display->drm,
                    "Sanitizing transcoder select for DP %c\n",
                    port_name(port));

        val &= ~DP_PIPE_SEL_MASK;
        val |= DP_PIPE_SEL(PIPE_A);

        intel_de_write(display, dp_reg, val);
}

static void ibx_sanitize_pch_ports(struct intel_display *display)
{
        /*
         * The BIOS may select transcoder B on some of the PCH
         * ports even it doesn't enable the port. This would trip
         * assert_pch_dp_disabled() and assert_pch_hdmi_disabled().
         * Sanitize the transcoder select bits to prevent that. We
         * assume that the BIOS never actually enabled the port,
         * because if it did we'd actually have to toggle the port
         * on and back off to make the transcoder A select stick
         * (see. intel_dp_link_down(), intel_disable_hdmi(),
         * intel_disable_sdvo()).
         */
        ibx_sanitize_pch_dp_port(display, PORT_B, PCH_DP_B);
        ibx_sanitize_pch_dp_port(display, PORT_C, PCH_DP_C);
        ibx_sanitize_pch_dp_port(display, PORT_D, PCH_DP_D);

        /* PCH SDVOB multiplex with HDMIB */
        ibx_sanitize_pch_hdmi_port(display, PORT_B, PCH_HDMIB);
        ibx_sanitize_pch_hdmi_port(display, PORT_C, PCH_HDMIC);
        ibx_sanitize_pch_hdmi_port(display, PORT_D, PCH_HDMID);
}

static void intel_pch_transcoder_set_m1_n1(struct intel_crtc *crtc,
                                           const struct intel_link_m_n *m_n)
{
        struct intel_display *display = to_intel_display(crtc);
        enum pipe pipe = crtc->pipe;

        intel_set_m_n(display, m_n,
                      PCH_TRANS_DATA_M1(pipe), PCH_TRANS_DATA_N1(pipe),
                      PCH_TRANS_LINK_M1(pipe), PCH_TRANS_LINK_N1(pipe));
}

static void intel_pch_transcoder_set_m2_n2(struct intel_crtc *crtc,
                                           const struct intel_link_m_n *m_n)
{
        struct intel_display *display = to_intel_display(crtc);
        enum pipe pipe = crtc->pipe;

        intel_set_m_n(display, m_n,
                      PCH_TRANS_DATA_M2(pipe), PCH_TRANS_DATA_N2(pipe),
                      PCH_TRANS_LINK_M2(pipe), PCH_TRANS_LINK_N2(pipe));
}

void intel_pch_transcoder_get_m1_n1(struct intel_crtc *crtc,
                                    struct intel_link_m_n *m_n)
{
        struct intel_display *display = to_intel_display(crtc);
        enum pipe pipe = crtc->pipe;

        intel_get_m_n(display, m_n,
                      PCH_TRANS_DATA_M1(pipe), PCH_TRANS_DATA_N1(pipe),
                      PCH_TRANS_LINK_M1(pipe), PCH_TRANS_LINK_N1(pipe));
}

void intel_pch_transcoder_get_m2_n2(struct intel_crtc *crtc,
                                    struct intel_link_m_n *m_n)
{
        struct intel_display *display = to_intel_display(crtc);
        enum pipe pipe = crtc->pipe;

        intel_get_m_n(display, m_n,
                      PCH_TRANS_DATA_M2(pipe), PCH_TRANS_DATA_N2(pipe),
                      PCH_TRANS_LINK_M2(pipe), PCH_TRANS_LINK_N2(pipe));
}

static void ilk_pch_transcoder_set_timings(const struct intel_crtc_state *crtc_state,
                                           enum pipe pch_transcoder)
{
        struct intel_display *display = to_intel_display(crtc_state);
        enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;

        intel_de_write(display, PCH_TRANS_HTOTAL(pch_transcoder),
                       intel_de_read(display, TRANS_HTOTAL(display, cpu_transcoder)));
        intel_de_write(display, PCH_TRANS_HBLANK(pch_transcoder),
                       intel_de_read(display, TRANS_HBLANK(display, cpu_transcoder)));
        intel_de_write(display, PCH_TRANS_HSYNC(pch_transcoder),
                       intel_de_read(display, TRANS_HSYNC(display, cpu_transcoder)));

        intel_de_write(display, PCH_TRANS_VTOTAL(pch_transcoder),
                       intel_de_read(display, TRANS_VTOTAL(display, cpu_transcoder)));
        intel_de_write(display, PCH_TRANS_VBLANK(pch_transcoder),
                       intel_de_read(display, TRANS_VBLANK(display, cpu_transcoder)));
        intel_de_write(display, PCH_TRANS_VSYNC(pch_transcoder),
                       intel_de_read(display, TRANS_VSYNC(display, cpu_transcoder)));
        intel_de_write(display, PCH_TRANS_VSYNCSHIFT(pch_transcoder),
                       intel_de_read(display, TRANS_VSYNCSHIFT(display, cpu_transcoder)));
}

static void ilk_enable_pch_transcoder(const struct intel_crtc_state *crtc_state)
{
        struct intel_display *display = to_intel_display(crtc_state);
        struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
        enum pipe pipe = crtc->pipe;
        i915_reg_t reg;
        u32 val, pipeconf_val;

        /* Make sure PCH DPLL is enabled */
        assert_dpll_enabled(display, crtc_state->intel_dpll);

        /* FDI must be feeding us bits for PCH ports */
        assert_fdi_tx_enabled(display, pipe);
        assert_fdi_rx_enabled(display, pipe);

        if (HAS_PCH_CPT(display)) {
                reg = TRANS_CHICKEN2(pipe);
                val = intel_de_read(display, reg);
                /*
                 * Workaround: Set the timing override bit
                 * before enabling the pch transcoder.
                 */
                val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
                /* Configure frame start delay to match the CPU */
                val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
                val |= TRANS_CHICKEN2_FRAME_START_DELAY(crtc_state->framestart_delay - 1);
                intel_de_write(display, reg, val);
        }

        reg = PCH_TRANSCONF(pipe);
        val = intel_de_read(display, reg);
        pipeconf_val = intel_de_read(display, TRANSCONF(display, pipe));

        if (HAS_PCH_IBX(display)) {
                /* Configure frame start delay to match the CPU */
                val &= ~TRANS_FRAME_START_DELAY_MASK;
                val |= TRANS_FRAME_START_DELAY(crtc_state->framestart_delay - 1);

                /*
                 * Make the BPC in transcoder be consistent with
                 * that in pipeconf reg. For HDMI we must use 8bpc
                 * here for both 8bpc and 12bpc.
                 */
                val &= ~TRANSCONF_BPC_MASK;
                if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
                        val |= TRANSCONF_BPC_8;
                else
                        val |= pipeconf_val & TRANSCONF_BPC_MASK;
        }

        val &= ~TRANS_INTERLACE_MASK;
        if ((pipeconf_val & TRANSCONF_INTERLACE_MASK_ILK) == TRANSCONF_INTERLACE_IF_ID_ILK) {
                if (HAS_PCH_IBX(display) &&
                    intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO))
                        val |= TRANS_INTERLACE_LEGACY_VSYNC_IBX;
                else
                        val |= TRANS_INTERLACE_INTERLACED;
        } else {
                val |= TRANS_INTERLACE_PROGRESSIVE;
        }

        intel_de_write(display, reg, val | TRANS_ENABLE);
        if (intel_de_wait_for_set_ms(display, reg, TRANS_STATE_ENABLE, 100))
                drm_err(display->drm, "failed to enable transcoder %c\n",
                        pipe_name(pipe));
}

static void ilk_disable_pch_transcoder(struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);
        enum pipe pipe = crtc->pipe;
        i915_reg_t reg;

        /* FDI relies on the transcoder */
        assert_fdi_tx_disabled(display, pipe);
        assert_fdi_rx_disabled(display, pipe);

        /* Ports must be off as well */
        assert_pch_ports_disabled(display, pipe);

        reg = PCH_TRANSCONF(pipe);
        intel_de_rmw(display, reg, TRANS_ENABLE, 0);
        /* wait for PCH transcoder off, transcoder state */
        if (intel_de_wait_for_clear_ms(display, reg, TRANS_STATE_ENABLE, 50))
                drm_err(display->drm, "failed to disable transcoder %c\n",
                        pipe_name(pipe));

        if (HAS_PCH_CPT(display))
                /* Workaround: Clear the timing override chicken bit again. */
                intel_de_rmw(display, TRANS_CHICKEN2(pipe),
                             TRANS_CHICKEN2_TIMING_OVERRIDE, 0);
}

void ilk_pch_pre_enable(struct intel_atomic_state *state,
                        struct intel_crtc *crtc)
{
        const struct intel_crtc_state *crtc_state =
                intel_atomic_get_new_crtc_state(state, crtc);

        /*
         * Note: FDI PLL enabling _must_ be done before we enable the
         * cpu pipes, hence this is separate from all the other fdi/pch
         * enabling.
         */
        ilk_fdi_pll_enable(crtc_state);
}

/*
 * Enable PCH resources required for PCH ports:
 *   - PCH PLLs
 *   - FDI training & RX/TX
 *   - update transcoder timings
 *   - DP transcoding bits
 *   - transcoder
 */
void ilk_pch_enable(struct intel_atomic_state *state,
                    struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);
        const struct intel_crtc_state *crtc_state =
                intel_atomic_get_new_crtc_state(state, crtc);
        enum pipe pipe = crtc->pipe;
        u32 temp;

        assert_pch_transcoder_disabled(display, pipe);

        /* For PCH output, training FDI link */
        intel_fdi_link_train(crtc, crtc_state);

        /*
         * We need to program the right clock selection
         * before writing the pixel multiplier into the DPLL.
         */
        if (HAS_PCH_CPT(display)) {
                u32 sel;

                temp = intel_de_read(display, PCH_DPLL_SEL);
                temp |= TRANS_DPLL_ENABLE(pipe);
                sel = TRANS_DPLLB_SEL(pipe);
                if (crtc_state->intel_dpll ==
                    intel_get_dpll_by_id(display, DPLL_ID_PCH_PLL_B))
                        temp |= sel;
                else
                        temp &= ~sel;
                intel_de_write(display, PCH_DPLL_SEL, temp);
        }

        /*
         * XXX: pch pll's can be enabled any time before we enable the PCH
         * transcoder, and we actually should do this to not upset any PCH
         * transcoder that already use the clock when we share it.
         *
         * Note that dpll_enable tries to do the right thing, but
         * get_dpll unconditionally resets the pll - we need that
         * to have the right LVDS enable sequence.
         */
        intel_dpll_enable(crtc_state);

        /* set transcoder timing, panel must allow it */
        assert_pps_unlocked(display, pipe);
        if (intel_crtc_has_dp_encoder(crtc_state)) {
                intel_pch_transcoder_set_m1_n1(crtc, &crtc_state->dp_m_n);
                intel_pch_transcoder_set_m2_n2(crtc, &crtc_state->dp_m2_n2);
        }
        ilk_pch_transcoder_set_timings(crtc_state, pipe);

        intel_fdi_normal_train(crtc);

        /* For PCH DP, enable TRANS_DP_CTL */
        if (HAS_PCH_CPT(display) &&
            intel_crtc_has_dp_encoder(crtc_state)) {
                const struct drm_display_mode *adjusted_mode =
                        &crtc_state->hw.adjusted_mode;
                u32 bpc = (intel_de_read(display, TRANSCONF(display, pipe))
                           & TRANSCONF_BPC_MASK) >> 5;
                i915_reg_t reg = TRANS_DP_CTL(pipe);
                enum port port;

                temp = intel_de_read(display, reg);
                temp &= ~(TRANS_DP_PORT_SEL_MASK |
                          TRANS_DP_VSYNC_ACTIVE_HIGH |
                          TRANS_DP_HSYNC_ACTIVE_HIGH |
                          TRANS_DP_BPC_MASK);
                temp |= TRANS_DP_OUTPUT_ENABLE;
                temp |= bpc << 9; /* same format but at 11:9 */

                if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
                        temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
                if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
                        temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;

                port = intel_get_crtc_new_encoder(state, crtc_state)->port;
                drm_WARN_ON(display->drm, port < PORT_B || port > PORT_D);
                temp |= TRANS_DP_PORT_SEL(port);

                intel_de_write(display, reg, temp);
        }

        ilk_enable_pch_transcoder(crtc_state);
}

void ilk_pch_disable(struct intel_atomic_state *state,
                     struct intel_crtc *crtc)
{
        ilk_fdi_disable(crtc);
}

void ilk_pch_post_disable(struct intel_atomic_state *state,
                          struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);
        const struct intel_crtc_state *old_crtc_state =
                intel_atomic_get_old_crtc_state(state, crtc);
        enum pipe pipe = crtc->pipe;

        ilk_disable_pch_transcoder(crtc);

        if (HAS_PCH_CPT(display)) {
                /* disable TRANS_DP_CTL */
                intel_de_rmw(display, TRANS_DP_CTL(pipe),
                             TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK,
                             TRANS_DP_PORT_SEL_NONE);

                /* disable DPLL_SEL */
                intel_de_rmw(display, PCH_DPLL_SEL,
                             TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe), 0);
        }

        ilk_fdi_pll_disable(crtc);

        intel_dpll_disable(old_crtc_state);
}

static void ilk_pch_clock_get(struct intel_crtc_state *crtc_state)
{
        struct intel_display *display = to_intel_display(crtc_state);

        /* read out port_clock from the DPLL */
        i9xx_crtc_clock_get(crtc_state);

        /*
         * In case there is an active pipe without active ports,
         * we may need some idea for the dotclock anyway.
         * Calculate one based on the FDI configuration.
         */
        crtc_state->hw.adjusted_mode.crtc_clock =
                intel_dotclock_calculate(intel_fdi_link_freq(display, crtc_state),
                                         &crtc_state->fdi_m_n);
}

void ilk_pch_get_config(struct intel_crtc_state *crtc_state)
{
        struct intel_display *display = to_intel_display(crtc_state);
        struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
        struct intel_dpll *pll;
        enum pipe pipe = crtc->pipe;
        enum intel_dpll_id pll_id;
        bool pll_active;
        u32 tmp;

        if ((intel_de_read(display, PCH_TRANSCONF(pipe)) & TRANS_ENABLE) == 0)
                return;

        crtc_state->has_pch_encoder = true;

        tmp = intel_de_read(display, FDI_RX_CTL(pipe));
        crtc_state->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
                                 FDI_DP_PORT_WIDTH_SHIFT) + 1;

        intel_cpu_transcoder_get_m1_n1(crtc, crtc_state->cpu_transcoder,
                                       &crtc_state->fdi_m_n);

        if (HAS_PCH_IBX(display)) {
                /*
                 * The pipe->pch transcoder and pch transcoder->pll
                 * mapping is fixed.
                 */
                pll_id = (enum intel_dpll_id) pipe;
        } else {
                tmp = intel_de_read(display, PCH_DPLL_SEL);
                if (tmp & TRANS_DPLLB_SEL(pipe))
                        pll_id = DPLL_ID_PCH_PLL_B;
                else
                        pll_id = DPLL_ID_PCH_PLL_A;
        }

        crtc_state->intel_dpll = intel_get_dpll_by_id(display, pll_id);
        pll = crtc_state->intel_dpll;

        pll_active = intel_dpll_get_hw_state(display, pll,
                                             &crtc_state->dpll_hw_state);
        drm_WARN_ON(display->drm, !pll_active);

        tmp = crtc_state->dpll_hw_state.i9xx.dpll;
        crtc_state->pixel_multiplier =
                ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
                 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;

        ilk_pch_clock_get(crtc_state);
}

static void lpt_enable_pch_transcoder(const struct intel_crtc_state *crtc_state)
{
        struct intel_display *display = to_intel_display(crtc_state);
        enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
        u32 val, pipeconf_val;

        /* FDI must be feeding us bits for PCH ports */
        assert_fdi_tx_enabled(display, (enum pipe)cpu_transcoder);
        assert_fdi_rx_enabled(display, PIPE_A);

        val = intel_de_read(display, TRANS_CHICKEN2(PIPE_A));
        /* Workaround: set timing override bit. */
        val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
        /* Configure frame start delay to match the CPU */
        val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
        val |= TRANS_CHICKEN2_FRAME_START_DELAY(crtc_state->framestart_delay - 1);
        intel_de_write(display, TRANS_CHICKEN2(PIPE_A), val);

        val = TRANS_ENABLE;
        pipeconf_val = intel_de_read(display,
                                     TRANSCONF(display, cpu_transcoder));

        if ((pipeconf_val & TRANSCONF_INTERLACE_MASK_HSW) == TRANSCONF_INTERLACE_IF_ID_ILK)
                val |= TRANS_INTERLACE_INTERLACED;
        else
                val |= TRANS_INTERLACE_PROGRESSIVE;

        intel_de_write(display, LPT_TRANSCONF, val);
        if (intel_de_wait_for_set_ms(display, LPT_TRANSCONF,
                                     TRANS_STATE_ENABLE, 100))
                drm_err(display->drm, "Failed to enable PCH transcoder\n");
}

static void lpt_disable_pch_transcoder(struct intel_display *display)
{
        intel_de_rmw(display, LPT_TRANSCONF, TRANS_ENABLE, 0);
        /* wait for PCH transcoder off, transcoder state */
        if (intel_de_wait_for_clear_ms(display, LPT_TRANSCONF,
                                       TRANS_STATE_ENABLE, 50))
                drm_err(display->drm, "Failed to disable PCH transcoder\n");

        /* Workaround: clear timing override bit. */
        intel_de_rmw(display, TRANS_CHICKEN2(PIPE_A), TRANS_CHICKEN2_TIMING_OVERRIDE, 0);
}

void lpt_pch_enable(struct intel_atomic_state *state,
                    struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);
        const struct intel_crtc_state *crtc_state =
                intel_atomic_get_new_crtc_state(state, crtc);

        assert_pch_transcoder_disabled(display, PIPE_A);

        lpt_program_iclkip(crtc_state);

        /* Set transcoder timing. */
        ilk_pch_transcoder_set_timings(crtc_state, PIPE_A);

        lpt_enable_pch_transcoder(crtc_state);
}

void lpt_pch_disable(struct intel_atomic_state *state,
                     struct intel_crtc *crtc)
{
        struct intel_display *display = to_intel_display(crtc);

        lpt_disable_pch_transcoder(display);

        lpt_disable_iclkip(display);
}

void lpt_pch_get_config(struct intel_crtc_state *crtc_state)
{
        struct intel_display *display = to_intel_display(crtc_state);
        struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
        u32 tmp;

        if ((intel_de_read(display, LPT_TRANSCONF) & TRANS_ENABLE) == 0)
                return;

        crtc_state->has_pch_encoder = true;

        tmp = intel_de_read(display, FDI_RX_CTL(PIPE_A));
        crtc_state->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
                                 FDI_DP_PORT_WIDTH_SHIFT) + 1;

        intel_cpu_transcoder_get_m1_n1(crtc, crtc_state->cpu_transcoder,
                                       &crtc_state->fdi_m_n);

        crtc_state->hw.adjusted_mode.crtc_clock = lpt_get_iclkip(display);
}

void intel_pch_sanitize(struct intel_display *display)
{
        if (HAS_PCH_IBX(display))
                ibx_sanitize_pch_ports(display);
}