1a61127c2SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
26a227d5fSAlan Cox /*
36a227d5fSAlan Cox * Copyright © 2006-2011 Intel Corporation
46a227d5fSAlan Cox *
56a227d5fSAlan Cox * Authors:
66a227d5fSAlan Cox * Eric Anholt <eric@anholt.net>
76a227d5fSAlan Cox */
86a227d5fSAlan Cox
90c7b178aSSam Ravnborg #include <linux/delay.h>
106a227d5fSAlan Cox #include <linux/i2c.h>
116a227d5fSAlan Cox
120c7b178aSSam Ravnborg #include <drm/drm_crtc.h>
13*3599dfa1SThomas Zimmermann #include <drm/drm_modeset_helper_vtables.h>
140c7b178aSSam Ravnborg
150c7b178aSSam Ravnborg #include "cdv_device.h"
166a227d5fSAlan Cox #include "framebuffer.h"
170c7b178aSSam Ravnborg #include "gma_display.h"
180c7b178aSSam Ravnborg #include "power.h"
196a227d5fSAlan Cox #include "psb_drv.h"
206a227d5fSAlan Cox #include "psb_intel_drv.h"
216a227d5fSAlan Cox #include "psb_intel_reg.h"
226a227d5fSAlan Cox
232adb29ffSPatrik Jakobsson static bool cdv_intel_find_dp_pll(const struct gma_limit_t *limit,
242adb29ffSPatrik Jakobsson struct drm_crtc *crtc, int target,
252adb29ffSPatrik Jakobsson int refclk, struct gma_clock_t *best_clock);
266a227d5fSAlan Cox
27d6676096SZhao Yakui
286a227d5fSAlan Cox #define CDV_LIMIT_SINGLE_LVDS_96 0
296a227d5fSAlan Cox #define CDV_LIMIT_SINGLE_LVDS_100 1
306a227d5fSAlan Cox #define CDV_LIMIT_DAC_HDMI_27 2
316a227d5fSAlan Cox #define CDV_LIMIT_DAC_HDMI_96 3
32220801bdSAlan Cox #define CDV_LIMIT_DP_27 4
33220801bdSAlan Cox #define CDV_LIMIT_DP_100 5
346a227d5fSAlan Cox
352adb29ffSPatrik Jakobsson static const struct gma_limit_t cdv_intel_limits[] = {
3628bbda39SForest Bond { /* CDV_SINGLE_LVDS_96MHz */
376a227d5fSAlan Cox .dot = {.min = 20000, .max = 115500},
386a227d5fSAlan Cox .vco = {.min = 1800000, .max = 3600000},
396a227d5fSAlan Cox .n = {.min = 2, .max = 6},
406a227d5fSAlan Cox .m = {.min = 60, .max = 160},
416a227d5fSAlan Cox .m1 = {.min = 0, .max = 0},
426a227d5fSAlan Cox .m2 = {.min = 58, .max = 158},
436a227d5fSAlan Cox .p = {.min = 28, .max = 140},
446a227d5fSAlan Cox .p1 = {.min = 2, .max = 10},
452adb29ffSPatrik Jakobsson .p2 = {.dot_limit = 200000, .p2_slow = 14, .p2_fast = 14},
462adb29ffSPatrik Jakobsson .find_pll = gma_find_best_pll,
476a227d5fSAlan Cox },
486a227d5fSAlan Cox { /* CDV_SINGLE_LVDS_100MHz */
496a227d5fSAlan Cox .dot = {.min = 20000, .max = 115500},
506a227d5fSAlan Cox .vco = {.min = 1800000, .max = 3600000},
516a227d5fSAlan Cox .n = {.min = 2, .max = 6},
526a227d5fSAlan Cox .m = {.min = 60, .max = 160},
536a227d5fSAlan Cox .m1 = {.min = 0, .max = 0},
546a227d5fSAlan Cox .m2 = {.min = 58, .max = 158},
556a227d5fSAlan Cox .p = {.min = 28, .max = 140},
566a227d5fSAlan Cox .p1 = {.min = 2, .max = 10},
576a227d5fSAlan Cox /* The single-channel range is 25-112Mhz, and dual-channel
586a227d5fSAlan Cox * is 80-224Mhz. Prefer single channel as much as possible.
596a227d5fSAlan Cox */
606a227d5fSAlan Cox .p2 = {.dot_limit = 200000, .p2_slow = 14, .p2_fast = 14},
612adb29ffSPatrik Jakobsson .find_pll = gma_find_best_pll,
626a227d5fSAlan Cox },
636a227d5fSAlan Cox { /* CDV_DAC_HDMI_27MHz */
646a227d5fSAlan Cox .dot = {.min = 20000, .max = 400000},
656a227d5fSAlan Cox .vco = {.min = 1809000, .max = 3564000},
666a227d5fSAlan Cox .n = {.min = 1, .max = 1},
676a227d5fSAlan Cox .m = {.min = 67, .max = 132},
686a227d5fSAlan Cox .m1 = {.min = 0, .max = 0},
696a227d5fSAlan Cox .m2 = {.min = 65, .max = 130},
706a227d5fSAlan Cox .p = {.min = 5, .max = 90},
716a227d5fSAlan Cox .p1 = {.min = 1, .max = 9},
726a227d5fSAlan Cox .p2 = {.dot_limit = 225000, .p2_slow = 10, .p2_fast = 5},
732adb29ffSPatrik Jakobsson .find_pll = gma_find_best_pll,
746a227d5fSAlan Cox },
756a227d5fSAlan Cox { /* CDV_DAC_HDMI_96MHz */
766a227d5fSAlan Cox .dot = {.min = 20000, .max = 400000},
776a227d5fSAlan Cox .vco = {.min = 1800000, .max = 3600000},
786a227d5fSAlan Cox .n = {.min = 2, .max = 6},
796a227d5fSAlan Cox .m = {.min = 60, .max = 160},
806a227d5fSAlan Cox .m1 = {.min = 0, .max = 0},
816a227d5fSAlan Cox .m2 = {.min = 58, .max = 158},
826a227d5fSAlan Cox .p = {.min = 5, .max = 100},
836a227d5fSAlan Cox .p1 = {.min = 1, .max = 10},
846a227d5fSAlan Cox .p2 = {.dot_limit = 225000, .p2_slow = 10, .p2_fast = 5},
852adb29ffSPatrik Jakobsson .find_pll = gma_find_best_pll,
866a227d5fSAlan Cox },
87220801bdSAlan Cox { /* CDV_DP_27MHz */
88220801bdSAlan Cox .dot = {.min = 160000, .max = 272000},
89220801bdSAlan Cox .vco = {.min = 1809000, .max = 3564000},
90220801bdSAlan Cox .n = {.min = 1, .max = 1},
91220801bdSAlan Cox .m = {.min = 67, .max = 132},
92220801bdSAlan Cox .m1 = {.min = 0, .max = 0},
93220801bdSAlan Cox .m2 = {.min = 65, .max = 130},
94220801bdSAlan Cox .p = {.min = 5, .max = 90},
95220801bdSAlan Cox .p1 = {.min = 1, .max = 9},
96220801bdSAlan Cox .p2 = {.dot_limit = 225000, .p2_slow = 10, .p2_fast = 10},
97220801bdSAlan Cox .find_pll = cdv_intel_find_dp_pll,
98220801bdSAlan Cox },
99220801bdSAlan Cox { /* CDV_DP_100MHz */
100220801bdSAlan Cox .dot = {.min = 160000, .max = 272000},
101220801bdSAlan Cox .vco = {.min = 1800000, .max = 3600000},
102220801bdSAlan Cox .n = {.min = 2, .max = 6},
103220801bdSAlan Cox .m = {.min = 60, .max = 164},
104220801bdSAlan Cox .m1 = {.min = 0, .max = 0},
105220801bdSAlan Cox .m2 = {.min = 58, .max = 162},
106220801bdSAlan Cox .p = {.min = 5, .max = 100},
107220801bdSAlan Cox .p1 = {.min = 1, .max = 10},
108220801bdSAlan Cox .p2 = {.dot_limit = 225000, .p2_slow = 10, .p2_fast = 10},
109220801bdSAlan Cox .find_pll = cdv_intel_find_dp_pll,
110220801bdSAlan Cox }
1116a227d5fSAlan Cox };
1126a227d5fSAlan Cox
1136a227d5fSAlan Cox #define _wait_for(COND, MS, W) ({ \
1146a227d5fSAlan Cox unsigned long timeout__ = jiffies + msecs_to_jiffies(MS); \
1156a227d5fSAlan Cox int ret__ = 0; \
1166a227d5fSAlan Cox while (!(COND)) { \
1176a227d5fSAlan Cox if (time_after(jiffies, timeout__)) { \
1186a227d5fSAlan Cox ret__ = -ETIMEDOUT; \
1196a227d5fSAlan Cox break; \
1206a227d5fSAlan Cox } \
1216a227d5fSAlan Cox if (W && !in_dbg_master()) \
1226a227d5fSAlan Cox msleep(W); \
1236a227d5fSAlan Cox } \
1246a227d5fSAlan Cox ret__; \
1256a227d5fSAlan Cox })
1266a227d5fSAlan Cox
1276a227d5fSAlan Cox #define wait_for(COND, MS) _wait_for(COND, MS, 1)
1286a227d5fSAlan Cox
1296a227d5fSAlan Cox
cdv_sb_read(struct drm_device * dev,u32 reg,u32 * val)13037e7b184SAlan Cox int cdv_sb_read(struct drm_device *dev, u32 reg, u32 *val)
1316a227d5fSAlan Cox {
1326a227d5fSAlan Cox int ret;
1336a227d5fSAlan Cox
1346a227d5fSAlan Cox ret = wait_for((REG_READ(SB_PCKT) & SB_BUSY) == 0, 1000);
1356a227d5fSAlan Cox if (ret) {
1366a227d5fSAlan Cox DRM_ERROR("timeout waiting for SB to idle before read\n");
1376a227d5fSAlan Cox return ret;
1386a227d5fSAlan Cox }
1396a227d5fSAlan Cox
1406a227d5fSAlan Cox REG_WRITE(SB_ADDR, reg);
1416a227d5fSAlan Cox REG_WRITE(SB_PCKT,
1426a227d5fSAlan Cox SET_FIELD(SB_OPCODE_READ, SB_OPCODE) |
1436a227d5fSAlan Cox SET_FIELD(SB_DEST_DPLL, SB_DEST) |
1446a227d5fSAlan Cox SET_FIELD(0xf, SB_BYTE_ENABLE));
1456a227d5fSAlan Cox
1466a227d5fSAlan Cox ret = wait_for((REG_READ(SB_PCKT) & SB_BUSY) == 0, 1000);
1476a227d5fSAlan Cox if (ret) {
1486a227d5fSAlan Cox DRM_ERROR("timeout waiting for SB to idle after read\n");
1496a227d5fSAlan Cox return ret;
1506a227d5fSAlan Cox }
1516a227d5fSAlan Cox
1526a227d5fSAlan Cox *val = REG_READ(SB_DATA);
1536a227d5fSAlan Cox
1546a227d5fSAlan Cox return 0;
1556a227d5fSAlan Cox }
1566a227d5fSAlan Cox
cdv_sb_write(struct drm_device * dev,u32 reg,u32 val)15737e7b184SAlan Cox int cdv_sb_write(struct drm_device *dev, u32 reg, u32 val)
1586a227d5fSAlan Cox {
1596a227d5fSAlan Cox int ret;
1606a227d5fSAlan Cox static bool dpio_debug = true;
1616a227d5fSAlan Cox u32 temp;
1626a227d5fSAlan Cox
1636a227d5fSAlan Cox if (dpio_debug) {
1646a227d5fSAlan Cox if (cdv_sb_read(dev, reg, &temp) == 0)
1656a227d5fSAlan Cox DRM_DEBUG_KMS("0x%08x: 0x%08x (before)\n", reg, temp);
1666a227d5fSAlan Cox DRM_DEBUG_KMS("0x%08x: 0x%08x\n", reg, val);
1676a227d5fSAlan Cox }
1686a227d5fSAlan Cox
1696a227d5fSAlan Cox ret = wait_for((REG_READ(SB_PCKT) & SB_BUSY) == 0, 1000);
1706a227d5fSAlan Cox if (ret) {
1716a227d5fSAlan Cox DRM_ERROR("timeout waiting for SB to idle before write\n");
1726a227d5fSAlan Cox return ret;
1736a227d5fSAlan Cox }
1746a227d5fSAlan Cox
1756a227d5fSAlan Cox REG_WRITE(SB_ADDR, reg);
1766a227d5fSAlan Cox REG_WRITE(SB_DATA, val);
1776a227d5fSAlan Cox REG_WRITE(SB_PCKT,
1786a227d5fSAlan Cox SET_FIELD(SB_OPCODE_WRITE, SB_OPCODE) |
1796a227d5fSAlan Cox SET_FIELD(SB_DEST_DPLL, SB_DEST) |
1806a227d5fSAlan Cox SET_FIELD(0xf, SB_BYTE_ENABLE));
1816a227d5fSAlan Cox
1826a227d5fSAlan Cox ret = wait_for((REG_READ(SB_PCKT) & SB_BUSY) == 0, 1000);
1836a227d5fSAlan Cox if (ret) {
1846a227d5fSAlan Cox DRM_ERROR("timeout waiting for SB to idle after write\n");
1856a227d5fSAlan Cox return ret;
1866a227d5fSAlan Cox }
1876a227d5fSAlan Cox
1886a227d5fSAlan Cox if (dpio_debug) {
1896a227d5fSAlan Cox if (cdv_sb_read(dev, reg, &temp) == 0)
1906a227d5fSAlan Cox DRM_DEBUG_KMS("0x%08x: 0x%08x (after)\n", reg, temp);
1916a227d5fSAlan Cox }
1926a227d5fSAlan Cox
1936a227d5fSAlan Cox return 0;
1946a227d5fSAlan Cox }
1956a227d5fSAlan Cox
1966a227d5fSAlan Cox /* Reset the DPIO configuration register. The BIOS does this at every
1976a227d5fSAlan Cox * mode set.
1986a227d5fSAlan Cox */
cdv_sb_reset(struct drm_device * dev)19937e7b184SAlan Cox void cdv_sb_reset(struct drm_device *dev)
2006a227d5fSAlan Cox {
2016a227d5fSAlan Cox
2026a227d5fSAlan Cox REG_WRITE(DPIO_CFG, 0);
2036a227d5fSAlan Cox REG_READ(DPIO_CFG);
2046a227d5fSAlan Cox REG_WRITE(DPIO_CFG, DPIO_MODE_SELECT_0 | DPIO_CMN_RESET_N);
2056a227d5fSAlan Cox }
2066a227d5fSAlan Cox
2076a227d5fSAlan Cox /* Unlike most Intel display engines, on Cedarview the DPLL registers
2086a227d5fSAlan Cox * are behind this sideband bus. They must be programmed while the
2096a227d5fSAlan Cox * DPLL reference clock is on in the DPLL control register, but before
2106a227d5fSAlan Cox * the DPLL is enabled in the DPLL control register.
2116a227d5fSAlan Cox */
2126a227d5fSAlan Cox static int
cdv_dpll_set_clock_cdv(struct drm_device * dev,struct drm_crtc * crtc,struct gma_clock_t * clock,bool is_lvds,u32 ddi_select)2136a227d5fSAlan Cox cdv_dpll_set_clock_cdv(struct drm_device *dev, struct drm_crtc *crtc,
2142adb29ffSPatrik Jakobsson struct gma_clock_t *clock, bool is_lvds, u32 ddi_select)
2156a227d5fSAlan Cox {
2166306865dSPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
2176306865dSPatrik Jakobsson int pipe = gma_crtc->pipe;
2186a227d5fSAlan Cox u32 m, n_vco, p;
2196a227d5fSAlan Cox int ret = 0;
2206a227d5fSAlan Cox int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
221acd7ef92SAlan Cox int ref_sfr = (pipe == 0) ? SB_REF_DPLLA : SB_REF_DPLLB;
2226a227d5fSAlan Cox u32 ref_value;
223d235e64aSAlan Cox u32 lane_reg, lane_value;
2246a227d5fSAlan Cox
2256a227d5fSAlan Cox cdv_sb_reset(dev);
2266a227d5fSAlan Cox
227d235e64aSAlan Cox REG_WRITE(dpll_reg, DPLL_SYNCLOCK_ENABLE | DPLL_VGA_MODE_DIS);
228d235e64aSAlan Cox
229d235e64aSAlan Cox udelay(100);
2306a227d5fSAlan Cox
2316a227d5fSAlan Cox /* Follow the BIOS and write the REF/SFR Register. Hardcoded value */
2326a227d5fSAlan Cox ref_value = 0x68A701;
2336a227d5fSAlan Cox
2346a227d5fSAlan Cox cdv_sb_write(dev, SB_REF_SFR(pipe), ref_value);
2356a227d5fSAlan Cox
2366a227d5fSAlan Cox /* We don't know what the other fields of these regs are, so
2376a227d5fSAlan Cox * leave them in place.
2386a227d5fSAlan Cox */
239acd7ef92SAlan Cox /*
240acd7ef92SAlan Cox * The BIT 14:13 of 0x8010/0x8030 is used to select the ref clk
241acd7ef92SAlan Cox * for the pipe A/B. Display spec 1.06 has wrong definition.
242acd7ef92SAlan Cox * Correct definition is like below:
243acd7ef92SAlan Cox *
244acd7ef92SAlan Cox * refclka mean use clock from same PLL
245acd7ef92SAlan Cox *
246acd7ef92SAlan Cox * if DPLLA sets 01 and DPLLB sets 01, they use clock from their pll
247acd7ef92SAlan Cox *
248acd7ef92SAlan Cox * if DPLLA sets 01 and DPLLB sets 02, both use clk from DPLLA
249acd7ef92SAlan Cox *
250acd7ef92SAlan Cox */
251acd7ef92SAlan Cox ret = cdv_sb_read(dev, ref_sfr, &ref_value);
252acd7ef92SAlan Cox if (ret)
253acd7ef92SAlan Cox return ret;
254acd7ef92SAlan Cox ref_value &= ~(REF_CLK_MASK);
255acd7ef92SAlan Cox
256acd7ef92SAlan Cox /* use DPLL_A for pipeB on CRT/HDMI */
257220801bdSAlan Cox if (pipe == 1 && !is_lvds && !(ddi_select & DP_MASK)) {
258acd7ef92SAlan Cox DRM_DEBUG_KMS("use DPLLA for pipe B\n");
259acd7ef92SAlan Cox ref_value |= REF_CLK_DPLLA;
260acd7ef92SAlan Cox } else {
261acd7ef92SAlan Cox DRM_DEBUG_KMS("use their DPLL for pipe A/B\n");
262acd7ef92SAlan Cox ref_value |= REF_CLK_DPLL;
263acd7ef92SAlan Cox }
264acd7ef92SAlan Cox ret = cdv_sb_write(dev, ref_sfr, ref_value);
265acd7ef92SAlan Cox if (ret)
266acd7ef92SAlan Cox return ret;
267acd7ef92SAlan Cox
2686a227d5fSAlan Cox ret = cdv_sb_read(dev, SB_M(pipe), &m);
2696a227d5fSAlan Cox if (ret)
2706a227d5fSAlan Cox return ret;
2716a227d5fSAlan Cox m &= ~SB_M_DIVIDER_MASK;
2726a227d5fSAlan Cox m |= ((clock->m2) << SB_M_DIVIDER_SHIFT);
2736a227d5fSAlan Cox ret = cdv_sb_write(dev, SB_M(pipe), m);
2746a227d5fSAlan Cox if (ret)
2756a227d5fSAlan Cox return ret;
2766a227d5fSAlan Cox
2776a227d5fSAlan Cox ret = cdv_sb_read(dev, SB_N_VCO(pipe), &n_vco);
2786a227d5fSAlan Cox if (ret)
2796a227d5fSAlan Cox return ret;
2806a227d5fSAlan Cox
2816a227d5fSAlan Cox /* Follow the BIOS to program the N_DIVIDER REG */
2826a227d5fSAlan Cox n_vco &= 0xFFFF;
2836a227d5fSAlan Cox n_vco |= 0x107;
2846a227d5fSAlan Cox n_vco &= ~(SB_N_VCO_SEL_MASK |
2856a227d5fSAlan Cox SB_N_DIVIDER_MASK |
2866a227d5fSAlan Cox SB_N_CB_TUNE_MASK);
2876a227d5fSAlan Cox
2886a227d5fSAlan Cox n_vco |= ((clock->n) << SB_N_DIVIDER_SHIFT);
2896a227d5fSAlan Cox
2906a227d5fSAlan Cox if (clock->vco < 2250000) {
2916a227d5fSAlan Cox n_vco |= (2 << SB_N_CB_TUNE_SHIFT);
2926a227d5fSAlan Cox n_vco |= (0 << SB_N_VCO_SEL_SHIFT);
2936a227d5fSAlan Cox } else if (clock->vco < 2750000) {
2946a227d5fSAlan Cox n_vco |= (1 << SB_N_CB_TUNE_SHIFT);
2956a227d5fSAlan Cox n_vco |= (1 << SB_N_VCO_SEL_SHIFT);
2966a227d5fSAlan Cox } else if (clock->vco < 3300000) {
2976a227d5fSAlan Cox n_vco |= (0 << SB_N_CB_TUNE_SHIFT);
2986a227d5fSAlan Cox n_vco |= (2 << SB_N_VCO_SEL_SHIFT);
2996a227d5fSAlan Cox } else {
3006a227d5fSAlan Cox n_vco |= (0 << SB_N_CB_TUNE_SHIFT);
3016a227d5fSAlan Cox n_vco |= (3 << SB_N_VCO_SEL_SHIFT);
3026a227d5fSAlan Cox }
3036a227d5fSAlan Cox
3046a227d5fSAlan Cox ret = cdv_sb_write(dev, SB_N_VCO(pipe), n_vco);
3056a227d5fSAlan Cox if (ret)
3066a227d5fSAlan Cox return ret;
3076a227d5fSAlan Cox
3086a227d5fSAlan Cox ret = cdv_sb_read(dev, SB_P(pipe), &p);
3096a227d5fSAlan Cox if (ret)
3106a227d5fSAlan Cox return ret;
3116a227d5fSAlan Cox p &= ~(SB_P2_DIVIDER_MASK | SB_P1_DIVIDER_MASK);
3126a227d5fSAlan Cox p |= SET_FIELD(clock->p1, SB_P1_DIVIDER);
3136a227d5fSAlan Cox switch (clock->p2) {
3146a227d5fSAlan Cox case 5:
3156a227d5fSAlan Cox p |= SET_FIELD(SB_P2_5, SB_P2_DIVIDER);
3166a227d5fSAlan Cox break;
3176a227d5fSAlan Cox case 10:
3186a227d5fSAlan Cox p |= SET_FIELD(SB_P2_10, SB_P2_DIVIDER);
3196a227d5fSAlan Cox break;
3206a227d5fSAlan Cox case 14:
3216a227d5fSAlan Cox p |= SET_FIELD(SB_P2_14, SB_P2_DIVIDER);
3226a227d5fSAlan Cox break;
3236a227d5fSAlan Cox case 7:
3246a227d5fSAlan Cox p |= SET_FIELD(SB_P2_7, SB_P2_DIVIDER);
3256a227d5fSAlan Cox break;
3266a227d5fSAlan Cox default:
3276a227d5fSAlan Cox DRM_ERROR("Bad P2 clock: %d\n", clock->p2);
3286a227d5fSAlan Cox return -EINVAL;
3296a227d5fSAlan Cox }
3306a227d5fSAlan Cox ret = cdv_sb_write(dev, SB_P(pipe), p);
3316a227d5fSAlan Cox if (ret)
3326a227d5fSAlan Cox return ret;
3336a227d5fSAlan Cox
334d6676096SZhao Yakui if (ddi_select) {
335d6676096SZhao Yakui if ((ddi_select & DDI_MASK) == DDI0_SELECT) {
3366a227d5fSAlan Cox lane_reg = PSB_LANE0;
3376a227d5fSAlan Cox cdv_sb_read(dev, lane_reg, &lane_value);
3386a227d5fSAlan Cox lane_value &= ~(LANE_PLL_MASK);
339d235e64aSAlan Cox lane_value |= LANE_PLL_ENABLE | LANE_PLL_PIPE(pipe);
3406a227d5fSAlan Cox cdv_sb_write(dev, lane_reg, lane_value);
3416a227d5fSAlan Cox
3426a227d5fSAlan Cox lane_reg = PSB_LANE1;
3436a227d5fSAlan Cox cdv_sb_read(dev, lane_reg, &lane_value);
3446a227d5fSAlan Cox lane_value &= ~(LANE_PLL_MASK);
345d235e64aSAlan Cox lane_value |= LANE_PLL_ENABLE | LANE_PLL_PIPE(pipe);
3466a227d5fSAlan Cox cdv_sb_write(dev, lane_reg, lane_value);
347d6676096SZhao Yakui } else {
3486a227d5fSAlan Cox lane_reg = PSB_LANE2;
3496a227d5fSAlan Cox cdv_sb_read(dev, lane_reg, &lane_value);
3506a227d5fSAlan Cox lane_value &= ~(LANE_PLL_MASK);
351d235e64aSAlan Cox lane_value |= LANE_PLL_ENABLE | LANE_PLL_PIPE(pipe);
3526a227d5fSAlan Cox cdv_sb_write(dev, lane_reg, lane_value);
3536a227d5fSAlan Cox
3546a227d5fSAlan Cox lane_reg = PSB_LANE3;
3556a227d5fSAlan Cox cdv_sb_read(dev, lane_reg, &lane_value);
3566a227d5fSAlan Cox lane_value &= ~(LANE_PLL_MASK);
357d235e64aSAlan Cox lane_value |= LANE_PLL_ENABLE | LANE_PLL_PIPE(pipe);
3586a227d5fSAlan Cox cdv_sb_write(dev, lane_reg, lane_value);
359d6676096SZhao Yakui }
360d6676096SZhao Yakui }
3616a227d5fSAlan Cox return 0;
3626a227d5fSAlan Cox }
3636a227d5fSAlan Cox
cdv_intel_limit(struct drm_crtc * crtc,int refclk)3642adb29ffSPatrik Jakobsson static const struct gma_limit_t *cdv_intel_limit(struct drm_crtc *crtc,
3656a227d5fSAlan Cox int refclk)
3666a227d5fSAlan Cox {
3672adb29ffSPatrik Jakobsson const struct gma_limit_t *limit;
368fe477cc1SPatrik Jakobsson if (gma_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3696a227d5fSAlan Cox /*
3706a227d5fSAlan Cox * Now only single-channel LVDS is supported on CDV. If it is
3716a227d5fSAlan Cox * incorrect, please add the dual-channel LVDS.
3726a227d5fSAlan Cox */
3736a227d5fSAlan Cox if (refclk == 96000)
3746a227d5fSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_SINGLE_LVDS_96];
3756a227d5fSAlan Cox else
3766a227d5fSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_SINGLE_LVDS_100];
377fe477cc1SPatrik Jakobsson } else if (gma_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
378fe477cc1SPatrik Jakobsson gma_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
379220801bdSAlan Cox if (refclk == 27000)
380220801bdSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_DP_27];
381220801bdSAlan Cox else
382220801bdSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_DP_100];
3836a227d5fSAlan Cox } else {
3846a227d5fSAlan Cox if (refclk == 27000)
3856a227d5fSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_DAC_HDMI_27];
3866a227d5fSAlan Cox else
3876a227d5fSAlan Cox limit = &cdv_intel_limits[CDV_LIMIT_DAC_HDMI_96];
3886a227d5fSAlan Cox }
3896a227d5fSAlan Cox return limit;
3906a227d5fSAlan Cox }
3916a227d5fSAlan Cox
3926a227d5fSAlan Cox /* m1 is reserved as 0 in CDV, n is a ring counter */
cdv_intel_clock(int refclk,struct gma_clock_t * clock)3932adb29ffSPatrik Jakobsson static void cdv_intel_clock(int refclk, struct gma_clock_t *clock)
3946a227d5fSAlan Cox {
3956a227d5fSAlan Cox clock->m = clock->m2 + 2;
3966a227d5fSAlan Cox clock->p = clock->p1 * clock->p2;
3976a227d5fSAlan Cox clock->vco = (refclk * clock->m) / clock->n;
3986a227d5fSAlan Cox clock->dot = clock->vco / clock->p;
3996a227d5fSAlan Cox }
4006a227d5fSAlan Cox
cdv_intel_find_dp_pll(const struct gma_limit_t * limit,struct drm_crtc * crtc,int target,int refclk,struct gma_clock_t * best_clock)4012adb29ffSPatrik Jakobsson static bool cdv_intel_find_dp_pll(const struct gma_limit_t *limit,
4022adb29ffSPatrik Jakobsson struct drm_crtc *crtc, int target,
403220801bdSAlan Cox int refclk,
4042adb29ffSPatrik Jakobsson struct gma_clock_t *best_clock)
405220801bdSAlan Cox {
406e85cbbf9SPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
4072adb29ffSPatrik Jakobsson struct gma_clock_t clock;
408e85cbbf9SPatrik Jakobsson
40957a25a5fSKangjie Lu memset(&clock, 0, sizeof(clock));
41057a25a5fSKangjie Lu
411e85cbbf9SPatrik Jakobsson switch (refclk) {
412e85cbbf9SPatrik Jakobsson case 27000:
413220801bdSAlan Cox if (target < 200000) {
414220801bdSAlan Cox clock.p1 = 2;
415220801bdSAlan Cox clock.p2 = 10;
416220801bdSAlan Cox clock.n = 1;
417220801bdSAlan Cox clock.m1 = 0;
418220801bdSAlan Cox clock.m2 = 118;
419220801bdSAlan Cox } else {
420220801bdSAlan Cox clock.p1 = 1;
421220801bdSAlan Cox clock.p2 = 10;
422220801bdSAlan Cox clock.n = 1;
423220801bdSAlan Cox clock.m1 = 0;
424220801bdSAlan Cox clock.m2 = 98;
425220801bdSAlan Cox }
426e85cbbf9SPatrik Jakobsson break;
427e85cbbf9SPatrik Jakobsson
428e85cbbf9SPatrik Jakobsson case 100000:
429220801bdSAlan Cox if (target < 200000) {
430220801bdSAlan Cox clock.p1 = 2;
431220801bdSAlan Cox clock.p2 = 10;
432220801bdSAlan Cox clock.n = 5;
433220801bdSAlan Cox clock.m1 = 0;
434220801bdSAlan Cox clock.m2 = 160;
435220801bdSAlan Cox } else {
436220801bdSAlan Cox clock.p1 = 1;
437220801bdSAlan Cox clock.p2 = 10;
438220801bdSAlan Cox clock.n = 5;
439220801bdSAlan Cox clock.m1 = 0;
440220801bdSAlan Cox clock.m2 = 133;
441220801bdSAlan Cox }
442e85cbbf9SPatrik Jakobsson break;
443e85cbbf9SPatrik Jakobsson
444e85cbbf9SPatrik Jakobsson default:
445220801bdSAlan Cox return false;
446e85cbbf9SPatrik Jakobsson }
447e85cbbf9SPatrik Jakobsson
448e85cbbf9SPatrik Jakobsson gma_crtc->clock_funcs->clock(refclk, &clock);
4492adb29ffSPatrik Jakobsson memcpy(best_clock, &clock, sizeof(struct gma_clock_t));
450220801bdSAlan Cox return true;
451220801bdSAlan Cox }
452220801bdSAlan Cox
453acd7ef92SAlan Cox #define FIFO_PIPEA (1 << 0)
454acd7ef92SAlan Cox #define FIFO_PIPEB (1 << 1)
455acd7ef92SAlan Cox
cdv_intel_pipe_enabled(struct drm_device * dev,int pipe)456acd7ef92SAlan Cox static bool cdv_intel_pipe_enabled(struct drm_device *dev, int pipe)
457acd7ef92SAlan Cox {
458acd7ef92SAlan Cox struct drm_crtc *crtc;
459f71635e8SThomas Zimmermann struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
4606306865dSPatrik Jakobsson struct gma_crtc *gma_crtc = NULL;
461acd7ef92SAlan Cox
462acd7ef92SAlan Cox crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4636306865dSPatrik Jakobsson gma_crtc = to_gma_crtc(crtc);
464acd7ef92SAlan Cox
465f4510a27SMatt Roper if (crtc->primary->fb == NULL || !gma_crtc->active)
466acd7ef92SAlan Cox return false;
467acd7ef92SAlan Cox return true;
468acd7ef92SAlan Cox }
469acd7ef92SAlan Cox
cdv_disable_sr(struct drm_device * dev)47075346fe9SPatrik Jakobsson void cdv_disable_sr(struct drm_device *dev)
471acd7ef92SAlan Cox {
472acd7ef92SAlan Cox if (REG_READ(FW_BLC_SELF) & FW_BLC_SELF_EN) {
473acd7ef92SAlan Cox
474acd7ef92SAlan Cox /* Disable self-refresh before adjust WM */
475acd7ef92SAlan Cox REG_WRITE(FW_BLC_SELF, (REG_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN));
476acd7ef92SAlan Cox REG_READ(FW_BLC_SELF);
477acd7ef92SAlan Cox
478ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
479acd7ef92SAlan Cox
480acd7ef92SAlan Cox /* Cedarview workaround to write ovelay plane, which force to leave
481acd7ef92SAlan Cox * MAX_FIFO state.
482acd7ef92SAlan Cox */
483acd7ef92SAlan Cox REG_WRITE(OV_OVADD, 0/*dev_priv->ovl_offset*/);
484acd7ef92SAlan Cox REG_READ(OV_OVADD);
485acd7ef92SAlan Cox
486ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
487acd7ef92SAlan Cox }
488acd7ef92SAlan Cox
489acd7ef92SAlan Cox }
490acd7ef92SAlan Cox
cdv_update_wm(struct drm_device * dev,struct drm_crtc * crtc)49128a8194cSPatrik Jakobsson void cdv_update_wm(struct drm_device *dev, struct drm_crtc *crtc)
492acd7ef92SAlan Cox {
493f71635e8SThomas Zimmermann struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
494e85cbbf9SPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
495acd7ef92SAlan Cox
496e85cbbf9SPatrik Jakobsson /* Is only one pipe enabled? */
497e85cbbf9SPatrik Jakobsson if (cdv_intel_pipe_enabled(dev, 0) ^ cdv_intel_pipe_enabled(dev, 1)) {
498acd7ef92SAlan Cox u32 fw;
499acd7ef92SAlan Cox
500acd7ef92SAlan Cox fw = REG_READ(DSPFW1);
501acd7ef92SAlan Cox fw &= ~DSP_FIFO_SR_WM_MASK;
502acd7ef92SAlan Cox fw |= (0x7e << DSP_FIFO_SR_WM_SHIFT);
503acd7ef92SAlan Cox fw &= ~CURSOR_B_FIFO_WM_MASK;
504acd7ef92SAlan Cox fw |= (0x4 << CURSOR_B_FIFO_WM_SHIFT);
505acd7ef92SAlan Cox REG_WRITE(DSPFW1, fw);
506acd7ef92SAlan Cox
507acd7ef92SAlan Cox fw = REG_READ(DSPFW2);
508acd7ef92SAlan Cox fw &= ~CURSOR_A_FIFO_WM_MASK;
509acd7ef92SAlan Cox fw |= (0x6 << CURSOR_A_FIFO_WM_SHIFT);
510acd7ef92SAlan Cox fw &= ~DSP_PLANE_C_FIFO_WM_MASK;
511acd7ef92SAlan Cox fw |= (0x8 << DSP_PLANE_C_FIFO_WM_SHIFT);
512acd7ef92SAlan Cox REG_WRITE(DSPFW2, fw);
513acd7ef92SAlan Cox
514acd7ef92SAlan Cox REG_WRITE(DSPFW3, 0x36000000);
515acd7ef92SAlan Cox
516acd7ef92SAlan Cox /* ignore FW4 */
517acd7ef92SAlan Cox
518e85cbbf9SPatrik Jakobsson /* Is pipe b lvds ? */
519e85cbbf9SPatrik Jakobsson if (gma_crtc->pipe == 1 &&
520e85cbbf9SPatrik Jakobsson gma_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
521acd7ef92SAlan Cox REG_WRITE(DSPFW5, 0x00040330);
522acd7ef92SAlan Cox } else {
523acd7ef92SAlan Cox fw = (3 << DSP_PLANE_B_FIFO_WM1_SHIFT) |
524acd7ef92SAlan Cox (4 << DSP_PLANE_A_FIFO_WM1_SHIFT) |
525acd7ef92SAlan Cox (3 << CURSOR_B_FIFO_WM1_SHIFT) |
526acd7ef92SAlan Cox (4 << CURSOR_FIFO_SR_WM1_SHIFT);
527acd7ef92SAlan Cox REG_WRITE(DSPFW5, fw);
528acd7ef92SAlan Cox }
529acd7ef92SAlan Cox
530acd7ef92SAlan Cox REG_WRITE(DSPFW6, 0x10);
531acd7ef92SAlan Cox
532ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
533acd7ef92SAlan Cox
534acd7ef92SAlan Cox /* enable self-refresh for single pipe active */
535acd7ef92SAlan Cox REG_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
536acd7ef92SAlan Cox REG_READ(FW_BLC_SELF);
537ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
538acd7ef92SAlan Cox
539acd7ef92SAlan Cox } else {
540acd7ef92SAlan Cox
541acd7ef92SAlan Cox /* HW team suggested values... */
542acd7ef92SAlan Cox REG_WRITE(DSPFW1, 0x3f880808);
543acd7ef92SAlan Cox REG_WRITE(DSPFW2, 0x0b020202);
544acd7ef92SAlan Cox REG_WRITE(DSPFW3, 0x24000000);
545acd7ef92SAlan Cox REG_WRITE(DSPFW4, 0x08030202);
546acd7ef92SAlan Cox REG_WRITE(DSPFW5, 0x01010101);
547acd7ef92SAlan Cox REG_WRITE(DSPFW6, 0x1d0);
548acd7ef92SAlan Cox
549ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
550acd7ef92SAlan Cox
55175346fe9SPatrik Jakobsson dev_priv->ops->disable_sr(dev);
552acd7ef92SAlan Cox }
553acd7ef92SAlan Cox }
554acd7ef92SAlan Cox
5559f67e0e8SLee Jones /*
5566a227d5fSAlan Cox * Return the pipe currently connected to the panel fitter,
5576a227d5fSAlan Cox * or -1 if the panel fitter is not present or not in use
5586a227d5fSAlan Cox */
cdv_intel_panel_fitter_pipe(struct drm_device * dev)5596a227d5fSAlan Cox static int cdv_intel_panel_fitter_pipe(struct drm_device *dev)
5606a227d5fSAlan Cox {
5616a227d5fSAlan Cox u32 pfit_control;
5626a227d5fSAlan Cox
5636a227d5fSAlan Cox pfit_control = REG_READ(PFIT_CONTROL);
5646a227d5fSAlan Cox
5656a227d5fSAlan Cox /* See if the panel fitter is in use */
5666a227d5fSAlan Cox if ((pfit_control & PFIT_ENABLE) == 0)
5676a227d5fSAlan Cox return -1;
5686a227d5fSAlan Cox return (pfit_control >> 29) & 0x3;
5696a227d5fSAlan Cox }
5706a227d5fSAlan Cox
cdv_intel_crtc_mode_set(struct drm_crtc * crtc,struct drm_display_mode * mode,struct drm_display_mode * adjusted_mode,int x,int y,struct drm_framebuffer * old_fb)5716a227d5fSAlan Cox static int cdv_intel_crtc_mode_set(struct drm_crtc *crtc,
5726a227d5fSAlan Cox struct drm_display_mode *mode,
5736a227d5fSAlan Cox struct drm_display_mode *adjusted_mode,
5746a227d5fSAlan Cox int x, int y,
5756a227d5fSAlan Cox struct drm_framebuffer *old_fb)
5766a227d5fSAlan Cox {
5776a227d5fSAlan Cox struct drm_device *dev = crtc->dev;
578f71635e8SThomas Zimmermann struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
5796306865dSPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
5806306865dSPatrik Jakobsson int pipe = gma_crtc->pipe;
581213a8434SAlan Cox const struct psb_offset *map = &dev_priv->regmap[pipe];
5826a227d5fSAlan Cox int refclk;
5832adb29ffSPatrik Jakobsson struct gma_clock_t clock;
5846a227d5fSAlan Cox u32 dpll = 0, dspcntr, pipeconf;
5850313c0deSKirill A. Shutemov bool ok;
58645c7f1b4SPatrik Jakobsson bool is_lvds = false;
587834c43a9Szhengbin bool is_dp = false;
588b1a7d0ddSPatrik Jakobsson struct drm_connector_list_iter conn_iter;
5896a227d5fSAlan Cox struct drm_connector *connector;
5902adb29ffSPatrik Jakobsson const struct gma_limit_t *limit;
591d6676096SZhao Yakui u32 ddi_select = 0;
592d112a816SZhao Yakui bool is_edp = false;
5936a227d5fSAlan Cox
594b1a7d0ddSPatrik Jakobsson drm_connector_list_iter_begin(dev, &conn_iter);
595b1a7d0ddSPatrik Jakobsson drm_for_each_connector_iter(connector, &conn_iter) {
596367e4408SPatrik Jakobsson struct gma_encoder *gma_encoder =
597c9d49590SPatrik Jakobsson gma_attached_encoder(connector);
5986a227d5fSAlan Cox
5996a227d5fSAlan Cox if (!connector->encoder
6006a227d5fSAlan Cox || connector->encoder->crtc != crtc)
6016a227d5fSAlan Cox continue;
6026a227d5fSAlan Cox
603367e4408SPatrik Jakobsson ddi_select = gma_encoder->ddi_select;
604367e4408SPatrik Jakobsson switch (gma_encoder->type) {
6056a227d5fSAlan Cox case INTEL_OUTPUT_LVDS:
6066a227d5fSAlan Cox is_lvds = true;
6076a227d5fSAlan Cox break;
6086a227d5fSAlan Cox case INTEL_OUTPUT_ANALOG:
6096a227d5fSAlan Cox case INTEL_OUTPUT_HDMI:
6106a227d5fSAlan Cox break;
611220801bdSAlan Cox case INTEL_OUTPUT_DISPLAYPORT:
612220801bdSAlan Cox is_dp = true;
613220801bdSAlan Cox break;
614d112a816SZhao Yakui case INTEL_OUTPUT_EDP:
615d112a816SZhao Yakui is_edp = true;
616d112a816SZhao Yakui break;
617d6676096SZhao Yakui default:
618b1a7d0ddSPatrik Jakobsson drm_connector_list_iter_end(&conn_iter);
619d6676096SZhao Yakui DRM_ERROR("invalid output type.\n");
620d6676096SZhao Yakui return 0;
6216a227d5fSAlan Cox }
622b1a7d0ddSPatrik Jakobsson
623b1a7d0ddSPatrik Jakobsson break;
6246a227d5fSAlan Cox }
625b1a7d0ddSPatrik Jakobsson drm_connector_list_iter_end(&conn_iter);
6266a227d5fSAlan Cox
627acd7ef92SAlan Cox if (dev_priv->dplla_96mhz)
628acd7ef92SAlan Cox /* low-end sku, 96/100 mhz */
6296a227d5fSAlan Cox refclk = 96000;
630acd7ef92SAlan Cox else
631acd7ef92SAlan Cox /* high-end sku, 27/100 mhz */
6326a227d5fSAlan Cox refclk = 27000;
633d112a816SZhao Yakui if (is_dp || is_edp) {
634d112a816SZhao Yakui /*
635d112a816SZhao Yakui * Based on the spec the low-end SKU has only CRT/LVDS. So it is
636d112a816SZhao Yakui * unnecessary to consider it for DP/eDP.
637d112a816SZhao Yakui * On the high-end SKU, it will use the 27/100M reference clk
638d112a816SZhao Yakui * for DP/eDP. When using SSC clock, the ref clk is 100MHz.Otherwise
639d112a816SZhao Yakui * it will be 27MHz. From the VBIOS code it seems that the pipe A choose
640d112a816SZhao Yakui * 27MHz for DP/eDP while the Pipe B chooses the 100MHz.
641d112a816SZhao Yakui */
642220801bdSAlan Cox if (pipe == 0)
643220801bdSAlan Cox refclk = 27000;
644220801bdSAlan Cox else
645220801bdSAlan Cox refclk = 100000;
646220801bdSAlan Cox }
6476a227d5fSAlan Cox
648acd7ef92SAlan Cox if (is_lvds && dev_priv->lvds_use_ssc) {
649acd7ef92SAlan Cox refclk = dev_priv->lvds_ssc_freq * 1000;
650acd7ef92SAlan Cox DRM_DEBUG_KMS("Use SSC reference clock %d Mhz\n", dev_priv->lvds_ssc_freq);
651acd7ef92SAlan Cox }
652acd7ef92SAlan Cox
6536a227d5fSAlan Cox drm_mode_debug_printmodeline(adjusted_mode);
6546a227d5fSAlan Cox
6556306865dSPatrik Jakobsson limit = gma_crtc->clock_funcs->limit(crtc, refclk);
656d6676096SZhao Yakui
657d6676096SZhao Yakui ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk,
6586a227d5fSAlan Cox &clock);
6596a227d5fSAlan Cox if (!ok) {
6602adb29ffSPatrik Jakobsson DRM_ERROR("Couldn't find PLL settings for mode! target: %d, actual: %d",
6612adb29ffSPatrik Jakobsson adjusted_mode->clock, clock.dot);
6626a227d5fSAlan Cox return 0;
6636a227d5fSAlan Cox }
6646a227d5fSAlan Cox
6656a227d5fSAlan Cox dpll = DPLL_VGA_MODE_DIS;
6666a227d5fSAlan Cox
667f76c0ddeSAlan Cox if (is_dp || is_edp) {
668f76c0ddeSAlan Cox cdv_intel_dp_set_m_n(crtc, mode, adjusted_mode);
669220801bdSAlan Cox } else {
670220801bdSAlan Cox REG_WRITE(PIPE_GMCH_DATA_M(pipe), 0);
671220801bdSAlan Cox REG_WRITE(PIPE_GMCH_DATA_N(pipe), 0);
672220801bdSAlan Cox REG_WRITE(PIPE_DP_LINK_M(pipe), 0);
673220801bdSAlan Cox REG_WRITE(PIPE_DP_LINK_N(pipe), 0);
674220801bdSAlan Cox }
675220801bdSAlan Cox
6766a227d5fSAlan Cox dpll |= DPLL_SYNCLOCK_ENABLE;
677acd7ef92SAlan Cox /* if (is_lvds)
6786a227d5fSAlan Cox dpll |= DPLLB_MODE_LVDS;
6796a227d5fSAlan Cox else
680acd7ef92SAlan Cox dpll |= DPLLB_MODE_DAC_SERIAL; */
6816a227d5fSAlan Cox /* dpll |= (2 << 11); */
6826a227d5fSAlan Cox
6836a227d5fSAlan Cox /* setup pipeconf */
684213a8434SAlan Cox pipeconf = REG_READ(map->conf);
6856a227d5fSAlan Cox
686d112a816SZhao Yakui pipeconf &= ~(PIPE_BPC_MASK);
687d112a816SZhao Yakui if (is_edp) {
688d112a816SZhao Yakui switch (dev_priv->edp.bpp) {
689d112a816SZhao Yakui case 24:
690d112a816SZhao Yakui pipeconf |= PIPE_8BPC;
691d112a816SZhao Yakui break;
692d112a816SZhao Yakui case 18:
693d112a816SZhao Yakui pipeconf |= PIPE_6BPC;
694d112a816SZhao Yakui break;
695d112a816SZhao Yakui case 30:
696d112a816SZhao Yakui pipeconf |= PIPE_10BPC;
697d112a816SZhao Yakui break;
698d112a816SZhao Yakui default:
699d112a816SZhao Yakui pipeconf |= PIPE_8BPC;
700d112a816SZhao Yakui break;
701d112a816SZhao Yakui }
702d112a816SZhao Yakui } else if (is_lvds) {
703d112a816SZhao Yakui /* the BPC will be 6 if it is 18-bit LVDS panel */
704d112a816SZhao Yakui if ((REG_READ(LVDS) & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
705d112a816SZhao Yakui pipeconf |= PIPE_8BPC;
706d112a816SZhao Yakui else
707d112a816SZhao Yakui pipeconf |= PIPE_6BPC;
708d112a816SZhao Yakui } else
709d112a816SZhao Yakui pipeconf |= PIPE_8BPC;
710d112a816SZhao Yakui
7116a227d5fSAlan Cox /* Set up the display plane register */
7126a227d5fSAlan Cox dspcntr = DISPPLANE_GAMMA_ENABLE;
7136a227d5fSAlan Cox
7146a227d5fSAlan Cox if (pipe == 0)
7156a227d5fSAlan Cox dspcntr |= DISPPLANE_SEL_PIPE_A;
7166a227d5fSAlan Cox else
7176a227d5fSAlan Cox dspcntr |= DISPPLANE_SEL_PIPE_B;
7186a227d5fSAlan Cox
7196a227d5fSAlan Cox dspcntr |= DISPLAY_PLANE_ENABLE;
7206a227d5fSAlan Cox pipeconf |= PIPEACONF_ENABLE;
7216a227d5fSAlan Cox
722213a8434SAlan Cox REG_WRITE(map->dpll, dpll | DPLL_VGA_MODE_DIS | DPLL_SYNCLOCK_ENABLE);
723213a8434SAlan Cox REG_READ(map->dpll);
7246a227d5fSAlan Cox
725d6676096SZhao Yakui cdv_dpll_set_clock_cdv(dev, crtc, &clock, is_lvds, ddi_select);
7266a227d5fSAlan Cox
7276a227d5fSAlan Cox udelay(150);
7286a227d5fSAlan Cox
7296a227d5fSAlan Cox
7306a227d5fSAlan Cox /* The LVDS pin pair needs to be on before the DPLLs are enabled.
7316a227d5fSAlan Cox * This is an exception to the general rule that mode_set doesn't turn
7326a227d5fSAlan Cox * things on.
7336a227d5fSAlan Cox */
7346a227d5fSAlan Cox if (is_lvds) {
7356a227d5fSAlan Cox u32 lvds = REG_READ(LVDS);
7366a227d5fSAlan Cox
7376a227d5fSAlan Cox lvds |=
7386a227d5fSAlan Cox LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP |
7396a227d5fSAlan Cox LVDS_PIPEB_SELECT;
7406a227d5fSAlan Cox /* Set the B0-B3 data pairs corresponding to
7416a227d5fSAlan Cox * whether we're going to
7426a227d5fSAlan Cox * set the DPLLs for dual-channel mode or not.
7436a227d5fSAlan Cox */
7446a227d5fSAlan Cox if (clock.p2 == 7)
7456a227d5fSAlan Cox lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
7466a227d5fSAlan Cox else
7476a227d5fSAlan Cox lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
7486a227d5fSAlan Cox
7496a227d5fSAlan Cox /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
7506a227d5fSAlan Cox * appropriately here, but we need to look more
7516a227d5fSAlan Cox * thoroughly into how panels behave in the two modes.
7526a227d5fSAlan Cox */
7536a227d5fSAlan Cox
7546a227d5fSAlan Cox REG_WRITE(LVDS, lvds);
7556a227d5fSAlan Cox REG_READ(LVDS);
7566a227d5fSAlan Cox }
7576a227d5fSAlan Cox
7586a227d5fSAlan Cox dpll |= DPLL_VCO_ENABLE;
7596a227d5fSAlan Cox
7606a227d5fSAlan Cox /* Disable the panel fitter if it was on our pipe */
7616a227d5fSAlan Cox if (cdv_intel_panel_fitter_pipe(dev) == pipe)
7626a227d5fSAlan Cox REG_WRITE(PFIT_CONTROL, 0);
7636a227d5fSAlan Cox
7646a227d5fSAlan Cox DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
7656a227d5fSAlan Cox drm_mode_debug_printmodeline(mode);
7666a227d5fSAlan Cox
767213a8434SAlan Cox REG_WRITE(map->dpll,
768213a8434SAlan Cox (REG_READ(map->dpll) & ~DPLL_LOCK) | DPLL_VCO_ENABLE);
769213a8434SAlan Cox REG_READ(map->dpll);
7706a227d5fSAlan Cox /* Wait for the clocks to stabilize. */
7716a227d5fSAlan Cox udelay(150); /* 42 usec w/o calibration, 110 with. rounded up. */
7726a227d5fSAlan Cox
773213a8434SAlan Cox if (!(REG_READ(map->dpll) & DPLL_LOCK)) {
7746a227d5fSAlan Cox dev_err(dev->dev, "Failed to get DPLL lock\n");
7756a227d5fSAlan Cox return -EBUSY;
7766a227d5fSAlan Cox }
7776a227d5fSAlan Cox
7786a227d5fSAlan Cox {
7796a227d5fSAlan Cox int sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
780213a8434SAlan Cox REG_WRITE(map->dpll_md, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) | ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
7816a227d5fSAlan Cox }
7826a227d5fSAlan Cox
783213a8434SAlan Cox REG_WRITE(map->htotal, (adjusted_mode->crtc_hdisplay - 1) |
7846a227d5fSAlan Cox ((adjusted_mode->crtc_htotal - 1) << 16));
785213a8434SAlan Cox REG_WRITE(map->hblank, (adjusted_mode->crtc_hblank_start - 1) |
7866a227d5fSAlan Cox ((adjusted_mode->crtc_hblank_end - 1) << 16));
787213a8434SAlan Cox REG_WRITE(map->hsync, (adjusted_mode->crtc_hsync_start - 1) |
7886a227d5fSAlan Cox ((adjusted_mode->crtc_hsync_end - 1) << 16));
789213a8434SAlan Cox REG_WRITE(map->vtotal, (adjusted_mode->crtc_vdisplay - 1) |
7906a227d5fSAlan Cox ((adjusted_mode->crtc_vtotal - 1) << 16));
791213a8434SAlan Cox REG_WRITE(map->vblank, (adjusted_mode->crtc_vblank_start - 1) |
7926a227d5fSAlan Cox ((adjusted_mode->crtc_vblank_end - 1) << 16));
793213a8434SAlan Cox REG_WRITE(map->vsync, (adjusted_mode->crtc_vsync_start - 1) |
7946a227d5fSAlan Cox ((adjusted_mode->crtc_vsync_end - 1) << 16));
7956a227d5fSAlan Cox /* pipesrc and dspsize control the size that is scaled from,
7966a227d5fSAlan Cox * which should always be the user's requested size.
7976a227d5fSAlan Cox */
798213a8434SAlan Cox REG_WRITE(map->size,
7996a227d5fSAlan Cox ((mode->vdisplay - 1) << 16) | (mode->hdisplay - 1));
800213a8434SAlan Cox REG_WRITE(map->pos, 0);
801213a8434SAlan Cox REG_WRITE(map->src,
8026a227d5fSAlan Cox ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
803213a8434SAlan Cox REG_WRITE(map->conf, pipeconf);
804213a8434SAlan Cox REG_READ(map->conf);
8056a227d5fSAlan Cox
806ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
8076a227d5fSAlan Cox
808213a8434SAlan Cox REG_WRITE(map->cntr, dspcntr);
8096a227d5fSAlan Cox
8106a227d5fSAlan Cox /* Flush the plane changes */
8116a227d5fSAlan Cox {
81245fe734cSJani Nikula const struct drm_crtc_helper_funcs *crtc_funcs =
8136a227d5fSAlan Cox crtc->helper_private;
8146a227d5fSAlan Cox crtc_funcs->mode_set_base(crtc, x, y, old_fb);
8156a227d5fSAlan Cox }
8166a227d5fSAlan Cox
817ad3c46eaSPatrik Jakobsson gma_wait_for_vblank(dev);
8186a227d5fSAlan Cox
8196a227d5fSAlan Cox return 0;
8206a227d5fSAlan Cox }
8216a227d5fSAlan Cox
8226a227d5fSAlan Cox /** Derive the pixel clock for the given refclk and divisors for 8xx chips. */
8236a227d5fSAlan Cox
8246a227d5fSAlan Cox /* FIXME: why are we using this, should it be cdv_ in this tree ? */
8256a227d5fSAlan Cox
i8xx_clock(int refclk,struct gma_clock_t * clock)8262adb29ffSPatrik Jakobsson static void i8xx_clock(int refclk, struct gma_clock_t *clock)
8276a227d5fSAlan Cox {
8286a227d5fSAlan Cox clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
8296a227d5fSAlan Cox clock->p = clock->p1 * clock->p2;
8306a227d5fSAlan Cox clock->vco = refclk * clock->m / (clock->n + 2);
8316a227d5fSAlan Cox clock->dot = clock->vco / clock->p;
8326a227d5fSAlan Cox }
8336a227d5fSAlan Cox
8346a227d5fSAlan Cox /* Returns the clock of the currently programmed mode of the given pipe. */
cdv_intel_crtc_clock_get(struct drm_device * dev,struct drm_crtc * crtc)8356a227d5fSAlan Cox static int cdv_intel_crtc_clock_get(struct drm_device *dev,
8366a227d5fSAlan Cox struct drm_crtc *crtc)
8376a227d5fSAlan Cox {
838f71635e8SThomas Zimmermann struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
8396306865dSPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
8406306865dSPatrik Jakobsson int pipe = gma_crtc->pipe;
841213a8434SAlan Cox const struct psb_offset *map = &dev_priv->regmap[pipe];
8426a227d5fSAlan Cox u32 dpll;
8436a227d5fSAlan Cox u32 fp;
8442adb29ffSPatrik Jakobsson struct gma_clock_t clock;
8456a227d5fSAlan Cox bool is_lvds;
8466256304bSAlan Cox struct psb_pipe *p = &dev_priv->regs.pipe[pipe];
8476a227d5fSAlan Cox
8486a227d5fSAlan Cox if (gma_power_begin(dev, false)) {
849213a8434SAlan Cox dpll = REG_READ(map->dpll);
8506a227d5fSAlan Cox if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
851213a8434SAlan Cox fp = REG_READ(map->fp0);
8526a227d5fSAlan Cox else
853213a8434SAlan Cox fp = REG_READ(map->fp1);
8546a227d5fSAlan Cox is_lvds = (pipe == 1) && (REG_READ(LVDS) & LVDS_PORT_EN);
8556a227d5fSAlan Cox gma_power_end(dev);
8566a227d5fSAlan Cox } else {
8576256304bSAlan Cox dpll = p->dpll;
8586a227d5fSAlan Cox if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
8596256304bSAlan Cox fp = p->fp0;
8606a227d5fSAlan Cox else
8616256304bSAlan Cox fp = p->fp1;
8626a227d5fSAlan Cox
863648a8e34SAlan Cox is_lvds = (pipe == 1) &&
864c6265ff5SAlan Cox (dev_priv->regs.psb.saveLVDS & LVDS_PORT_EN);
8656a227d5fSAlan Cox }
8666a227d5fSAlan Cox
8676a227d5fSAlan Cox clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
8686a227d5fSAlan Cox clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8696a227d5fSAlan Cox clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8706a227d5fSAlan Cox
8716a227d5fSAlan Cox if (is_lvds) {
8726a227d5fSAlan Cox clock.p1 =
8736a227d5fSAlan Cox ffs((dpll &
8746a227d5fSAlan Cox DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8756a227d5fSAlan Cox DPLL_FPA01_P1_POST_DIV_SHIFT);
8766a227d5fSAlan Cox if (clock.p1 == 0) {
8776a227d5fSAlan Cox clock.p1 = 4;
8786a227d5fSAlan Cox dev_err(dev->dev, "PLL %d\n", dpll);
8796a227d5fSAlan Cox }
8806a227d5fSAlan Cox clock.p2 = 14;
8816a227d5fSAlan Cox
8826a227d5fSAlan Cox if ((dpll & PLL_REF_INPUT_MASK) ==
8836a227d5fSAlan Cox PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8846a227d5fSAlan Cox /* XXX: might not be 66MHz */
8856a227d5fSAlan Cox i8xx_clock(66000, &clock);
8866a227d5fSAlan Cox } else
8876a227d5fSAlan Cox i8xx_clock(48000, &clock);
8886a227d5fSAlan Cox } else {
8896a227d5fSAlan Cox if (dpll & PLL_P1_DIVIDE_BY_TWO)
8906a227d5fSAlan Cox clock.p1 = 2;
8916a227d5fSAlan Cox else {
8926a227d5fSAlan Cox clock.p1 =
8936a227d5fSAlan Cox ((dpll &
8946a227d5fSAlan Cox DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8956a227d5fSAlan Cox DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8966a227d5fSAlan Cox }
8976a227d5fSAlan Cox if (dpll & PLL_P2_DIVIDE_BY_4)
8986a227d5fSAlan Cox clock.p2 = 4;
8996a227d5fSAlan Cox else
9006a227d5fSAlan Cox clock.p2 = 2;
9016a227d5fSAlan Cox
9026a227d5fSAlan Cox i8xx_clock(48000, &clock);
9036a227d5fSAlan Cox }
9046a227d5fSAlan Cox
9056a227d5fSAlan Cox /* XXX: It would be nice to validate the clocks, but we can't reuse
9066a227d5fSAlan Cox * i830PllIsValid() because it relies on the xf86_config connector
9076a227d5fSAlan Cox * configuration being accurate, which it isn't necessarily.
9086a227d5fSAlan Cox */
9096a227d5fSAlan Cox
9106a227d5fSAlan Cox return clock.dot;
9116a227d5fSAlan Cox }
9126a227d5fSAlan Cox
9136a227d5fSAlan Cox /** Returns the currently programmed mode of the given pipe. */
cdv_intel_crtc_mode_get(struct drm_device * dev,struct drm_crtc * crtc)9146a227d5fSAlan Cox struct drm_display_mode *cdv_intel_crtc_mode_get(struct drm_device *dev,
9156a227d5fSAlan Cox struct drm_crtc *crtc)
9166a227d5fSAlan Cox {
9176306865dSPatrik Jakobsson struct gma_crtc *gma_crtc = to_gma_crtc(crtc);
9186306865dSPatrik Jakobsson int pipe = gma_crtc->pipe;
919f71635e8SThomas Zimmermann struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
920213a8434SAlan Cox struct psb_pipe *p = &dev_priv->regs.pipe[pipe];
921213a8434SAlan Cox const struct psb_offset *map = &dev_priv->regmap[pipe];
9226a227d5fSAlan Cox struct drm_display_mode *mode;
9236a227d5fSAlan Cox int htot;
9246a227d5fSAlan Cox int hsync;
9256a227d5fSAlan Cox int vtot;
9266a227d5fSAlan Cox int vsync;
9276a227d5fSAlan Cox
9286a227d5fSAlan Cox if (gma_power_begin(dev, false)) {
929213a8434SAlan Cox htot = REG_READ(map->htotal);
930213a8434SAlan Cox hsync = REG_READ(map->hsync);
931213a8434SAlan Cox vtot = REG_READ(map->vtotal);
932213a8434SAlan Cox vsync = REG_READ(map->vsync);
9336a227d5fSAlan Cox gma_power_end(dev);
9346a227d5fSAlan Cox } else {
9356256304bSAlan Cox htot = p->htotal;
9366256304bSAlan Cox hsync = p->hsync;
9376256304bSAlan Cox vtot = p->vtotal;
9386256304bSAlan Cox vsync = p->vsync;
9396a227d5fSAlan Cox }
9406a227d5fSAlan Cox
9416a227d5fSAlan Cox mode = kzalloc(sizeof(*mode), GFP_KERNEL);
9426a227d5fSAlan Cox if (!mode)
9436a227d5fSAlan Cox return NULL;
9446a227d5fSAlan Cox
9456a227d5fSAlan Cox mode->clock = cdv_intel_crtc_clock_get(dev, crtc);
9466a227d5fSAlan Cox mode->hdisplay = (htot & 0xffff) + 1;
9476a227d5fSAlan Cox mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
9486a227d5fSAlan Cox mode->hsync_start = (hsync & 0xffff) + 1;
9496a227d5fSAlan Cox mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
9506a227d5fSAlan Cox mode->vdisplay = (vtot & 0xffff) + 1;
9516a227d5fSAlan Cox mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
9526a227d5fSAlan Cox mode->vsync_start = (vsync & 0xffff) + 1;
9536a227d5fSAlan Cox mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
9546a227d5fSAlan Cox
9556a227d5fSAlan Cox drm_mode_set_name(mode);
9566a227d5fSAlan Cox drm_mode_set_crtcinfo(mode, 0);
9576a227d5fSAlan Cox
9586a227d5fSAlan Cox return mode;
9596a227d5fSAlan Cox }
9606a227d5fSAlan Cox
9616a227d5fSAlan Cox const struct drm_crtc_helper_funcs cdv_intel_helper_funcs = {
9627ea03f06SPatrik Jakobsson .dpms = gma_crtc_dpms,
9636a227d5fSAlan Cox .mode_set = cdv_intel_crtc_mode_set,
9643c447166SPatrik Jakobsson .mode_set_base = gma_pipe_set_base,
965ad3c46eaSPatrik Jakobsson .prepare = gma_crtc_prepare,
966ad3c46eaSPatrik Jakobsson .commit = gma_crtc_commit,
967ad3c46eaSPatrik Jakobsson .disable = gma_crtc_disable,
9686a227d5fSAlan Cox };
9696a227d5fSAlan Cox
9702adb29ffSPatrik Jakobsson const struct gma_clock_funcs cdv_clock_funcs = {
9712adb29ffSPatrik Jakobsson .clock = cdv_intel_clock,
9722adb29ffSPatrik Jakobsson .limit = cdv_intel_limit,
9732adb29ffSPatrik Jakobsson .pll_is_valid = gma_pll_is_valid,
9742adb29ffSPatrik Jakobsson };
975