|
@@ -50,17 +50,14 @@ struct mrst_clock_t {
|
|
|
|
|
|
void mdfldWaitForPipeDisable(struct drm_device *dev, int pipe)
|
|
void mdfldWaitForPipeDisable(struct drm_device *dev, int pipe)
|
|
{
|
|
{
|
|
|
|
+ struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
int count, temp;
|
|
int count, temp;
|
|
- u32 pipeconf_reg = PIPEACONF;
|
|
|
|
|
|
|
|
switch (pipe) {
|
|
switch (pipe) {
|
|
case 0:
|
|
case 0:
|
|
- break;
|
|
|
|
case 1:
|
|
case 1:
|
|
- pipeconf_reg = PIPEBCONF;
|
|
|
|
- break;
|
|
|
|
case 2:
|
|
case 2:
|
|
- pipeconf_reg = PIPECCONF;
|
|
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
@@ -73,7 +70,7 @@ void mdfldWaitForPipeDisable(struct drm_device *dev, int pipe)
|
|
|
|
|
|
/* Wait for for the pipe disable to take effect. */
|
|
/* Wait for for the pipe disable to take effect. */
|
|
for (count = 0; count < COUNT_MAX; count++) {
|
|
for (count = 0; count < COUNT_MAX; count++) {
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
if ((temp & PIPEACONF_PIPE_STATE) == 0)
|
|
if ((temp & PIPEACONF_PIPE_STATE) == 0)
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -81,17 +78,14 @@ void mdfldWaitForPipeDisable(struct drm_device *dev, int pipe)
|
|
|
|
|
|
void mdfldWaitForPipeEnable(struct drm_device *dev, int pipe)
|
|
void mdfldWaitForPipeEnable(struct drm_device *dev, int pipe)
|
|
{
|
|
{
|
|
|
|
+ struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
int count, temp;
|
|
int count, temp;
|
|
- u32 pipeconf_reg = PIPEACONF;
|
|
|
|
|
|
|
|
switch (pipe) {
|
|
switch (pipe) {
|
|
case 0:
|
|
case 0:
|
|
- break;
|
|
|
|
case 1:
|
|
case 1:
|
|
- pipeconf_reg = PIPEBCONF;
|
|
|
|
- break;
|
|
|
|
case 2:
|
|
case 2:
|
|
- pipeconf_reg = PIPECCONF;
|
|
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
@@ -104,7 +98,7 @@ void mdfldWaitForPipeEnable(struct drm_device *dev, int pipe)
|
|
|
|
|
|
/* Wait for for the pipe enable to take effect. */
|
|
/* Wait for for the pipe enable to take effect. */
|
|
for (count = 0; count < COUNT_MAX; count++) {
|
|
for (count = 0; count < COUNT_MAX; count++) {
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
if ((temp & PIPEACONF_PIPE_STATE) == 1)
|
|
if ((temp & PIPEACONF_PIPE_STATE) == 1)
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -189,15 +183,12 @@ static int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
|
|
struct drm_framebuffer *old_fb)
|
|
struct drm_framebuffer *old_fb)
|
|
{
|
|
{
|
|
struct drm_device *dev = crtc->dev;
|
|
struct drm_device *dev = crtc->dev;
|
|
- /* struct drm_i915_master_private *master_priv; */
|
|
|
|
|
|
+ struct drm_psb_private *dev_priv = dev->dev_private;
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
struct psb_framebuffer *psbfb = to_psb_fb(crtc->fb);
|
|
struct psb_framebuffer *psbfb = to_psb_fb(crtc->fb);
|
|
int pipe = psb_intel_crtc->pipe;
|
|
int pipe = psb_intel_crtc->pipe;
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
unsigned long start, offset;
|
|
unsigned long start, offset;
|
|
- int dsplinoff = DSPALINOFF;
|
|
|
|
- int dspsurf = DSPASURF;
|
|
|
|
- int dspstride = DSPASTRIDE;
|
|
|
|
- int dspcntr_reg = DSPACNTR;
|
|
|
|
u32 dspcntr;
|
|
u32 dspcntr;
|
|
int ret;
|
|
int ret;
|
|
|
|
|
|
@@ -215,23 +206,7 @@ static int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
|
|
if (ret)
|
|
if (ret)
|
|
return ret;
|
|
return ret;
|
|
|
|
|
|
- switch (pipe) {
|
|
|
|
- case 0:
|
|
|
|
- dsplinoff = DSPALINOFF;
|
|
|
|
- break;
|
|
|
|
- case 1:
|
|
|
|
- dsplinoff = DSPBLINOFF;
|
|
|
|
- dspsurf = DSPBSURF;
|
|
|
|
- dspstride = DSPBSTRIDE;
|
|
|
|
- dspcntr_reg = DSPBCNTR;
|
|
|
|
- break;
|
|
|
|
- case 2:
|
|
|
|
- dsplinoff = DSPCLINOFF;
|
|
|
|
- dspsurf = DSPCSURF;
|
|
|
|
- dspstride = DSPCSTRIDE;
|
|
|
|
- dspcntr_reg = DSPCCNTR;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
|
|
+ if (pipe > 2) {
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
DRM_ERROR("Illegal Pipe Number.\n");
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
@@ -242,8 +217,8 @@ static int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
|
|
start = psbfb->gtt->offset;
|
|
start = psbfb->gtt->offset;
|
|
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
|
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
|
|
|
|
|
- REG_WRITE(dspstride, crtc->fb->pitches[0]);
|
|
|
|
- dspcntr = REG_READ(dspcntr_reg);
|
|
|
|
|
|
+ REG_WRITE(map->stride, crtc->fb->pitches[0]);
|
|
|
|
+ dspcntr = REG_READ(map->cntr);
|
|
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
|
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
|
|
|
|
|
switch (crtc->fb->bits_per_pixel) {
|
|
switch (crtc->fb->bits_per_pixel) {
|
|
@@ -261,14 +236,14 @@ static int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
|
|
dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
|
|
dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
- REG_WRITE(dspcntr_reg, dspcntr);
|
|
|
|
|
|
+ REG_WRITE(map->cntr, dspcntr);
|
|
|
|
|
|
dev_dbg(dev->dev, "Writing base %08lX %08lX %d %d\n",
|
|
dev_dbg(dev->dev, "Writing base %08lX %08lX %d %d\n",
|
|
start, offset, x, y);
|
|
start, offset, x, y);
|
|
- REG_WRITE(dsplinoff, offset);
|
|
|
|
- REG_READ(dsplinoff);
|
|
|
|
- REG_WRITE(dspsurf, start);
|
|
|
|
- REG_READ(dspsurf);
|
|
|
|
|
|
+ REG_WRITE(map->linoff, offset);
|
|
|
|
+ REG_READ(map->linoff);
|
|
|
|
+ REG_WRITE(map->surf, start);
|
|
|
|
+ REG_READ(map->surf);
|
|
|
|
|
|
gma_power_end(dev);
|
|
gma_power_end(dev);
|
|
|
|
|
|
@@ -281,78 +256,56 @@ static int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
|
|
*/
|
|
*/
|
|
void mdfld_disable_crtc(struct drm_device *dev, int pipe)
|
|
void mdfld_disable_crtc(struct drm_device *dev, int pipe)
|
|
{
|
|
{
|
|
- int dpll_reg = MRST_DPLL_A;
|
|
|
|
- int dspcntr_reg = DSPACNTR;
|
|
|
|
- int dspbase_reg = MRST_DSPABASE;
|
|
|
|
- int pipeconf_reg = PIPEACONF;
|
|
|
|
|
|
+ struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
u32 temp;
|
|
u32 temp;
|
|
|
|
|
|
dev_dbg(dev->dev, "pipe = %d\n", pipe);
|
|
dev_dbg(dev->dev, "pipe = %d\n", pipe);
|
|
|
|
|
|
|
|
|
|
- switch (pipe) {
|
|
|
|
- case 0:
|
|
|
|
- break;
|
|
|
|
- case 1:
|
|
|
|
- dpll_reg = MDFLD_DPLL_B;
|
|
|
|
- dspcntr_reg = DSPBCNTR;
|
|
|
|
- dspbase_reg = DSPBSURF;
|
|
|
|
- pipeconf_reg = PIPEBCONF;
|
|
|
|
- break;
|
|
|
|
- case 2:
|
|
|
|
- dpll_reg = MRST_DPLL_A;
|
|
|
|
- dspcntr_reg = DSPCCNTR;
|
|
|
|
- dspbase_reg = MDFLD_DSPCBASE;
|
|
|
|
- pipeconf_reg = PIPECCONF;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- DRM_ERROR("Illegal Pipe Number.\n");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
if (pipe != 1)
|
|
if (pipe != 1)
|
|
mdfld_dsi_gen_fifo_ready(dev, MIPI_GEN_FIFO_STAT_REG(pipe),
|
|
mdfld_dsi_gen_fifo_ready(dev, MIPI_GEN_FIFO_STAT_REG(pipe),
|
|
HS_CTRL_FIFO_EMPTY | HS_DATA_FIFO_EMPTY);
|
|
HS_CTRL_FIFO_EMPTY | HS_DATA_FIFO_EMPTY);
|
|
|
|
|
|
/* Disable display plane */
|
|
/* Disable display plane */
|
|
- temp = REG_READ(dspcntr_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->cntr);
|
|
if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
|
|
if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
|
|
- REG_WRITE(dspcntr_reg,
|
|
|
|
|
|
+ REG_WRITE(map->cntr,
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
/* Flush the plane changes */
|
|
/* Flush the plane changes */
|
|
- REG_WRITE(dspbase_reg, REG_READ(dspbase_reg));
|
|
|
|
- REG_READ(dspbase_reg);
|
|
|
|
|
|
+ REG_WRITE(map->base, REG_READ(map->base));
|
|
|
|
+ REG_READ(map->base);
|
|
}
|
|
}
|
|
|
|
|
|
/* FIXME_JLIU7 MDFLD_PO revisit */
|
|
/* FIXME_JLIU7 MDFLD_PO revisit */
|
|
|
|
|
|
/* Next, disable display pipes */
|
|
/* Next, disable display pipes */
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
if ((temp & PIPEACONF_ENABLE) != 0) {
|
|
if ((temp & PIPEACONF_ENABLE) != 0) {
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
temp |= PIPECONF_PLANE_OFF | PIPECONF_CURSOR_OFF;
|
|
temp |= PIPECONF_PLANE_OFF | PIPECONF_CURSOR_OFF;
|
|
- REG_WRITE(pipeconf_reg, temp);
|
|
|
|
- REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ REG_WRITE(map->conf, temp);
|
|
|
|
+ REG_READ(map->conf);
|
|
|
|
|
|
/* Wait for for the pipe disable to take effect. */
|
|
/* Wait for for the pipe disable to take effect. */
|
|
mdfldWaitForPipeDisable(dev, pipe);
|
|
mdfldWaitForPipeDisable(dev, pipe);
|
|
}
|
|
}
|
|
|
|
|
|
- temp = REG_READ(dpll_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->dpll);
|
|
if (temp & DPLL_VCO_ENABLE) {
|
|
if (temp & DPLL_VCO_ENABLE) {
|
|
if ((pipe != 1 &&
|
|
if ((pipe != 1 &&
|
|
!((REG_READ(PIPEACONF) | REG_READ(PIPECCONF))
|
|
!((REG_READ(PIPEACONF) | REG_READ(PIPECCONF))
|
|
& PIPEACONF_ENABLE)) || pipe == 1) {
|
|
& PIPEACONF_ENABLE)) || pipe == 1) {
|
|
temp &= ~(DPLL_VCO_ENABLE);
|
|
temp &= ~(DPLL_VCO_ENABLE);
|
|
- REG_WRITE(dpll_reg, temp);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp);
|
|
|
|
+ REG_READ(map->dpll);
|
|
/* Wait for the clocks to turn off. */
|
|
/* Wait for the clocks to turn off. */
|
|
/* FIXME_MDFLD PO may need more delay */
|
|
/* FIXME_MDFLD PO may need more delay */
|
|
udelay(500);
|
|
udelay(500);
|
|
|
|
|
|
if (!(temp & MDFLD_PWR_GATE_EN)) {
|
|
if (!(temp & MDFLD_PWR_GATE_EN)) {
|
|
/* gating power of DPLL */
|
|
/* gating power of DPLL */
|
|
- REG_WRITE(dpll_reg, temp | MDFLD_PWR_GATE_EN);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp | MDFLD_PWR_GATE_EN);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(5000);
|
|
udelay(5000);
|
|
}
|
|
}
|
|
@@ -373,41 +326,15 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
int pipe = psb_intel_crtc->pipe;
|
|
int pipe = psb_intel_crtc->pipe;
|
|
- int dpll_reg = MRST_DPLL_A;
|
|
|
|
- int dspcntr_reg = DSPACNTR;
|
|
|
|
- int dspbase_reg = MRST_DSPABASE;
|
|
|
|
- int pipeconf_reg = PIPEACONF;
|
|
|
|
- u32 pipestat_reg = PIPEASTAT;
|
|
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
u32 pipeconf = dev_priv->pipeconf[pipe];
|
|
u32 pipeconf = dev_priv->pipeconf[pipe];
|
|
u32 temp;
|
|
u32 temp;
|
|
int timeout = 0;
|
|
int timeout = 0;
|
|
|
|
|
|
dev_dbg(dev->dev, "mode = %d, pipe = %d\n", mode, pipe);
|
|
dev_dbg(dev->dev, "mode = %d, pipe = %d\n", mode, pipe);
|
|
|
|
|
|
-/* FIXME_JLIU7 MDFLD_PO replaced w/ the following function */
|
|
|
|
-/* mdfld_dbi_dpms (struct drm_device *dev, int pipe, bool enabled) */
|
|
|
|
-
|
|
|
|
- switch (pipe) {
|
|
|
|
- case 0:
|
|
|
|
- break;
|
|
|
|
- case 1:
|
|
|
|
- dpll_reg = DPLL_B;
|
|
|
|
- dspcntr_reg = DSPBCNTR;
|
|
|
|
- dspbase_reg = MRST_DSPBBASE;
|
|
|
|
- pipeconf_reg = PIPEBCONF;
|
|
|
|
- dpll_reg = MDFLD_DPLL_B;
|
|
|
|
- break;
|
|
|
|
- case 2:
|
|
|
|
- dpll_reg = MRST_DPLL_A;
|
|
|
|
- dspcntr_reg = DSPCCNTR;
|
|
|
|
- dspbase_reg = MDFLD_DSPCBASE;
|
|
|
|
- pipeconf_reg = PIPECCONF;
|
|
|
|
- pipestat_reg = PIPECSTAT;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- DRM_ERROR("Illegal Pipe Number.\n");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ /* Note: Old code uses pipe a stat for pipe b but that appears
|
|
|
|
+ to be a bug */
|
|
|
|
|
|
if (!gma_power_begin(dev, true))
|
|
if (!gma_power_begin(dev, true))
|
|
return;
|
|
return;
|
|
@@ -420,25 +347,25 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
|
|
case DRM_MODE_DPMS_STANDBY:
|
|
case DRM_MODE_DPMS_STANDBY:
|
|
case DRM_MODE_DPMS_SUSPEND:
|
|
case DRM_MODE_DPMS_SUSPEND:
|
|
/* Enable the DPLL */
|
|
/* Enable the DPLL */
|
|
- temp = REG_READ(dpll_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->dpll);
|
|
|
|
|
|
if ((temp & DPLL_VCO_ENABLE) == 0) {
|
|
if ((temp & DPLL_VCO_ENABLE) == 0) {
|
|
/* When ungating power of DPLL, needs to wait 0.5us
|
|
/* When ungating power of DPLL, needs to wait 0.5us
|
|
before enable the VCO */
|
|
before enable the VCO */
|
|
if (temp & MDFLD_PWR_GATE_EN) {
|
|
if (temp & MDFLD_PWR_GATE_EN) {
|
|
temp &= ~MDFLD_PWR_GATE_EN;
|
|
temp &= ~MDFLD_PWR_GATE_EN;
|
|
- REG_WRITE(dpll_reg, temp);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
}
|
|
}
|
|
|
|
|
|
- REG_WRITE(dpll_reg, temp);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp);
|
|
|
|
+ REG_READ(map->dpll);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
|
|
|
|
- REG_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp | DPLL_VCO_ENABLE);
|
|
|
|
+ REG_READ(map->dpll);
|
|
|
|
|
|
/**
|
|
/**
|
|
* wait for DSI PLL to lock
|
|
* wait for DSI PLL to lock
|
|
@@ -446,25 +373,25 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
|
|
* since both MIPI pipes share the same PLL.
|
|
* since both MIPI pipes share the same PLL.
|
|
*/
|
|
*/
|
|
while ((pipe != 2) && (timeout < 20000) &&
|
|
while ((pipe != 2) && (timeout < 20000) &&
|
|
- !(REG_READ(pipeconf_reg) & PIPECONF_DSIPLL_LOCK)) {
|
|
|
|
|
|
+ !(REG_READ(map->conf) & PIPECONF_DSIPLL_LOCK)) {
|
|
udelay(150);
|
|
udelay(150);
|
|
timeout++;
|
|
timeout++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* Enable the plane */
|
|
/* Enable the plane */
|
|
- temp = REG_READ(dspcntr_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->cntr);
|
|
if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
|
|
if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
|
|
- REG_WRITE(dspcntr_reg,
|
|
|
|
|
|
+ REG_WRITE(map->cntr,
|
|
temp | DISPLAY_PLANE_ENABLE);
|
|
temp | DISPLAY_PLANE_ENABLE);
|
|
/* Flush the plane changes */
|
|
/* Flush the plane changes */
|
|
- REG_WRITE(dspbase_reg, REG_READ(dspbase_reg));
|
|
|
|
|
|
+ REG_WRITE(map->base, REG_READ(map->base));
|
|
}
|
|
}
|
|
|
|
|
|
/* Enable the pipe */
|
|
/* Enable the pipe */
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
if ((temp & PIPEACONF_ENABLE) == 0) {
|
|
if ((temp & PIPEACONF_ENABLE) == 0) {
|
|
- REG_WRITE(pipeconf_reg, pipeconf);
|
|
|
|
|
|
+ REG_WRITE(map->conf, pipeconf);
|
|
|
|
|
|
/* Wait for for the pipe enable to take effect. */
|
|
/* Wait for for the pipe enable to take effect. */
|
|
mdfldWaitForPipeEnable(dev, pipe);
|
|
mdfldWaitForPipeEnable(dev, pipe);
|
|
@@ -473,39 +400,39 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
|
|
/*workaround for sighting 3741701 Random X blank display*/
|
|
/*workaround for sighting 3741701 Random X blank display*/
|
|
/*perform w/a in video mode only on pipe A or C*/
|
|
/*perform w/a in video mode only on pipe A or C*/
|
|
if (pipe == 0 || pipe == 2) {
|
|
if (pipe == 0 || pipe == 2) {
|
|
- REG_WRITE(pipestat_reg, REG_READ(pipestat_reg));
|
|
|
|
|
|
+ REG_WRITE(map->status, REG_READ(map->status));
|
|
msleep(100);
|
|
msleep(100);
|
|
- if (PIPE_VBLANK_STATUS & REG_READ(pipestat_reg))
|
|
|
|
|
|
+ if (PIPE_VBLANK_STATUS & REG_READ(map->status))
|
|
dev_dbg(dev->dev, "OK");
|
|
dev_dbg(dev->dev, "OK");
|
|
else {
|
|
else {
|
|
dev_dbg(dev->dev, "STUCK!!!!");
|
|
dev_dbg(dev->dev, "STUCK!!!!");
|
|
/*shutdown controller*/
|
|
/*shutdown controller*/
|
|
- temp = REG_READ(dspcntr_reg);
|
|
|
|
- REG_WRITE(dspcntr_reg,
|
|
|
|
|
|
+ temp = REG_READ(map->cntr);
|
|
|
|
+ REG_WRITE(map->cntr,
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
- REG_WRITE(dspbase_reg, REG_READ(dspbase_reg));
|
|
|
|
|
|
+ REG_WRITE(map->base, REG_READ(map->base));
|
|
/*mdfld_dsi_dpi_shut_down(dev, pipe);*/
|
|
/*mdfld_dsi_dpi_shut_down(dev, pipe);*/
|
|
REG_WRITE(0xb048, 1);
|
|
REG_WRITE(0xb048, 1);
|
|
msleep(100);
|
|
msleep(100);
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
- REG_WRITE(pipeconf_reg, temp);
|
|
|
|
|
|
+ REG_WRITE(map->conf, temp);
|
|
msleep(100); /*wait for pipe disable*/
|
|
msleep(100); /*wait for pipe disable*/
|
|
REG_WRITE(MIPI_DEVICE_READY_REG(pipe), 0);
|
|
REG_WRITE(MIPI_DEVICE_READY_REG(pipe), 0);
|
|
msleep(100);
|
|
msleep(100);
|
|
REG_WRITE(0xb004, REG_READ(0xb004));
|
|
REG_WRITE(0xb004, REG_READ(0xb004));
|
|
/* try to bring the controller back up again*/
|
|
/* try to bring the controller back up again*/
|
|
REG_WRITE(MIPI_DEVICE_READY_REG(pipe), 1);
|
|
REG_WRITE(MIPI_DEVICE_READY_REG(pipe), 1);
|
|
- temp = REG_READ(dspcntr_reg);
|
|
|
|
- REG_WRITE(dspcntr_reg,
|
|
|
|
|
|
+ temp = REG_READ(map->cntr);
|
|
|
|
+ REG_WRITE(map->cntr,
|
|
temp | DISPLAY_PLANE_ENABLE);
|
|
temp | DISPLAY_PLANE_ENABLE);
|
|
- REG_WRITE(dspbase_reg, REG_READ(dspbase_reg));
|
|
|
|
|
|
+ REG_WRITE(map->base, REG_READ(map->base));
|
|
/*mdfld_dsi_dpi_turn_on(dev, pipe);*/
|
|
/*mdfld_dsi_dpi_turn_on(dev, pipe);*/
|
|
REG_WRITE(0xb048, 2);
|
|
REG_WRITE(0xb048, 2);
|
|
msleep(100);
|
|
msleep(100);
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
temp |= PIPEACONF_ENABLE;
|
|
temp |= PIPEACONF_ENABLE;
|
|
- REG_WRITE(pipeconf_reg, temp);
|
|
|
|
|
|
+ REG_WRITE(map->conf, temp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -529,35 +456,35 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
|
|
REG_WRITE(VGACNTRL, VGA_DISP_DISABLE);
|
|
REG_WRITE(VGACNTRL, VGA_DISP_DISABLE);
|
|
|
|
|
|
/* Disable display plane */
|
|
/* Disable display plane */
|
|
- temp = REG_READ(dspcntr_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->cntr);
|
|
if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
|
|
if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
|
|
- REG_WRITE(dspcntr_reg,
|
|
|
|
|
|
+ REG_WRITE(map->cntr,
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
temp & ~DISPLAY_PLANE_ENABLE);
|
|
/* Flush the plane changes */
|
|
/* Flush the plane changes */
|
|
- REG_WRITE(dspbase_reg, REG_READ(dspbase_reg));
|
|
|
|
- REG_READ(dspbase_reg);
|
|
|
|
|
|
+ REG_WRITE(map->base, REG_READ(map->base));
|
|
|
|
+ REG_READ(map->base);
|
|
}
|
|
}
|
|
|
|
|
|
/* Next, disable display pipes */
|
|
/* Next, disable display pipes */
|
|
- temp = REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->conf);
|
|
if ((temp & PIPEACONF_ENABLE) != 0) {
|
|
if ((temp & PIPEACONF_ENABLE) != 0) {
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
temp &= ~PIPEACONF_ENABLE;
|
|
temp |= PIPECONF_PLANE_OFF | PIPECONF_CURSOR_OFF;
|
|
temp |= PIPECONF_PLANE_OFF | PIPECONF_CURSOR_OFF;
|
|
- REG_WRITE(pipeconf_reg, temp);
|
|
|
|
- REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ REG_WRITE(map->conf, temp);
|
|
|
|
+ REG_READ(map->conf);
|
|
|
|
|
|
/* Wait for for the pipe disable to take effect. */
|
|
/* Wait for for the pipe disable to take effect. */
|
|
mdfldWaitForPipeDisable(dev, pipe);
|
|
mdfldWaitForPipeDisable(dev, pipe);
|
|
}
|
|
}
|
|
|
|
|
|
- temp = REG_READ(dpll_reg);
|
|
|
|
|
|
+ temp = REG_READ(map->dpll);
|
|
if (temp & DPLL_VCO_ENABLE) {
|
|
if (temp & DPLL_VCO_ENABLE) {
|
|
if ((pipe != 1 && !((REG_READ(PIPEACONF)
|
|
if ((pipe != 1 && !((REG_READ(PIPEACONF)
|
|
| REG_READ(PIPECCONF)) & PIPEACONF_ENABLE))
|
|
| REG_READ(PIPECCONF)) & PIPEACONF_ENABLE))
|
|
|| pipe == 1) {
|
|
|| pipe == 1) {
|
|
temp &= ~(DPLL_VCO_ENABLE);
|
|
temp &= ~(DPLL_VCO_ENABLE);
|
|
- REG_WRITE(dpll_reg, temp);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, temp);
|
|
|
|
+ REG_READ(map->dpll);
|
|
/* Wait for the clocks to turn off. */
|
|
/* Wait for the clocks to turn off. */
|
|
/* FIXME_MDFLD PO may need more delay */
|
|
/* FIXME_MDFLD PO may need more delay */
|
|
udelay(500);
|
|
udelay(500);
|
|
@@ -764,21 +691,7 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
struct psb_intel_crtc *psb_intel_crtc = to_psb_intel_crtc(crtc);
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
int pipe = psb_intel_crtc->pipe;
|
|
int pipe = psb_intel_crtc->pipe;
|
|
- int fp_reg = MRST_FPA0;
|
|
|
|
- int dpll_reg = MRST_DPLL_A;
|
|
|
|
- int dspcntr_reg = DSPACNTR;
|
|
|
|
- int pipeconf_reg = PIPEACONF;
|
|
|
|
- int htot_reg = HTOTAL_A;
|
|
|
|
- int hblank_reg = HBLANK_A;
|
|
|
|
- int hsync_reg = HSYNC_A;
|
|
|
|
- int vtot_reg = VTOTAL_A;
|
|
|
|
- int vblank_reg = VBLANK_A;
|
|
|
|
- int vsync_reg = VSYNC_A;
|
|
|
|
- int dspsize_reg = DSPASIZE;
|
|
|
|
- int dsppos_reg = DSPAPOS;
|
|
|
|
- int pipesrc_reg = PIPEASRC;
|
|
|
|
- u32 *pipeconf = &dev_priv->pipeconf[pipe];
|
|
|
|
- u32 *dspcntr = &dev_priv->dspcntr[pipe];
|
|
|
|
|
|
+ const struct psb_offset *map = &dev_priv->regmap[pipe];
|
|
int refclk = 0;
|
|
int refclk = 0;
|
|
int clk_n = 0, clk_p2 = 0, clk_byte = 1, clk = 0, m_conv = 0,
|
|
int clk_n = 0, clk_p2 = 0, clk_byte = 1, clk = 0, m_conv = 0,
|
|
clk_tmp = 0;
|
|
clk_tmp = 0;
|
|
@@ -806,45 +719,6 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
- switch (pipe) {
|
|
|
|
- case 0:
|
|
|
|
- break;
|
|
|
|
- case 1:
|
|
|
|
- fp_reg = FPB0;
|
|
|
|
- dpll_reg = DPLL_B;
|
|
|
|
- dspcntr_reg = DSPBCNTR;
|
|
|
|
- pipeconf_reg = PIPEBCONF;
|
|
|
|
- htot_reg = HTOTAL_B;
|
|
|
|
- hblank_reg = HBLANK_B;
|
|
|
|
- hsync_reg = HSYNC_B;
|
|
|
|
- vtot_reg = VTOTAL_B;
|
|
|
|
- vblank_reg = VBLANK_B;
|
|
|
|
- vsync_reg = VSYNC_B;
|
|
|
|
- dspsize_reg = DSPBSIZE;
|
|
|
|
- dsppos_reg = DSPBPOS;
|
|
|
|
- pipesrc_reg = PIPEBSRC;
|
|
|
|
- fp_reg = MDFLD_DPLL_DIV0;
|
|
|
|
- dpll_reg = MDFLD_DPLL_B;
|
|
|
|
- break;
|
|
|
|
- case 2:
|
|
|
|
- dpll_reg = MRST_DPLL_A;
|
|
|
|
- dspcntr_reg = DSPCCNTR;
|
|
|
|
- pipeconf_reg = PIPECCONF;
|
|
|
|
- htot_reg = HTOTAL_C;
|
|
|
|
- hblank_reg = HBLANK_C;
|
|
|
|
- hsync_reg = HSYNC_C;
|
|
|
|
- vtot_reg = VTOTAL_C;
|
|
|
|
- vblank_reg = VBLANK_C;
|
|
|
|
- vsync_reg = VSYNC_C;
|
|
|
|
- dspsize_reg = DSPCSIZE;
|
|
|
|
- dsppos_reg = DSPCPOS;
|
|
|
|
- pipesrc_reg = PIPECSRC;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- DRM_ERROR("Illegal Pipe Number.\n");
|
|
|
|
- return 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
ret = check_fb(crtc->fb);
|
|
ret = check_fb(crtc->fb);
|
|
if (ret)
|
|
if (ret)
|
|
return ret;
|
|
return ret;
|
|
@@ -929,21 +803,21 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
* contained within the displayable area of the screen image
|
|
* contained within the displayable area of the screen image
|
|
* (frame buffer).
|
|
* (frame buffer).
|
|
*/
|
|
*/
|
|
- REG_WRITE(dspsize_reg, ((min(mode->crtc_vdisplay, adjusted_mode->crtc_vdisplay) - 1) << 16)
|
|
|
|
|
|
+ REG_WRITE(map->size, ((min(mode->crtc_vdisplay, adjusted_mode->crtc_vdisplay) - 1) << 16)
|
|
| (min(mode->crtc_hdisplay, adjusted_mode->crtc_hdisplay) - 1));
|
|
| (min(mode->crtc_hdisplay, adjusted_mode->crtc_hdisplay) - 1));
|
|
/* Set the CRTC with encoder mode. */
|
|
/* Set the CRTC with encoder mode. */
|
|
- REG_WRITE(pipesrc_reg, ((mode->crtc_hdisplay - 1) << 16)
|
|
|
|
|
|
+ REG_WRITE(map->src, ((mode->crtc_hdisplay - 1) << 16)
|
|
| (mode->crtc_vdisplay - 1));
|
|
| (mode->crtc_vdisplay - 1));
|
|
} else {
|
|
} else {
|
|
- REG_WRITE(dspsize_reg,
|
|
|
|
|
|
+ REG_WRITE(map->size,
|
|
((mode->crtc_vdisplay - 1) << 16) |
|
|
((mode->crtc_vdisplay - 1) << 16) |
|
|
(mode->crtc_hdisplay - 1));
|
|
(mode->crtc_hdisplay - 1));
|
|
- REG_WRITE(pipesrc_reg,
|
|
|
|
|
|
+ REG_WRITE(map->src,
|
|
((mode->crtc_hdisplay - 1) << 16) |
|
|
((mode->crtc_hdisplay - 1) << 16) |
|
|
(mode->crtc_vdisplay - 1));
|
|
(mode->crtc_vdisplay - 1));
|
|
}
|
|
}
|
|
|
|
|
|
- REG_WRITE(dsppos_reg, 0);
|
|
|
|
|
|
+ REG_WRITE(map->pos, 0);
|
|
|
|
|
|
if (psb_intel_encoder)
|
|
if (psb_intel_encoder)
|
|
drm_connector_property_get_value(connector,
|
|
drm_connector_property_get_value(connector,
|
|
@@ -961,34 +835,34 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
offsetY = (adjusted_mode->crtc_vdisplay -
|
|
offsetY = (adjusted_mode->crtc_vdisplay -
|
|
mode->crtc_vdisplay) / 2;
|
|
mode->crtc_vdisplay) / 2;
|
|
|
|
|
|
- REG_WRITE(htot_reg, (mode->crtc_hdisplay - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->htotal, (mode->crtc_hdisplay - 1) |
|
|
((adjusted_mode->crtc_htotal - 1) << 16));
|
|
((adjusted_mode->crtc_htotal - 1) << 16));
|
|
- REG_WRITE(vtot_reg, (mode->crtc_vdisplay - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->vtotal, (mode->crtc_vdisplay - 1) |
|
|
((adjusted_mode->crtc_vtotal - 1) << 16));
|
|
((adjusted_mode->crtc_vtotal - 1) << 16));
|
|
- REG_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start -
|
|
|
|
|
|
+ REG_WRITE(map->hblank, (adjusted_mode->crtc_hblank_start -
|
|
offsetX - 1) |
|
|
offsetX - 1) |
|
|
((adjusted_mode->crtc_hblank_end - offsetX - 1) << 16));
|
|
((adjusted_mode->crtc_hblank_end - offsetX - 1) << 16));
|
|
- REG_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start -
|
|
|
|
|
|
+ REG_WRITE(map->hsync, (adjusted_mode->crtc_hsync_start -
|
|
offsetX - 1) |
|
|
offsetX - 1) |
|
|
((adjusted_mode->crtc_hsync_end - offsetX - 1) << 16));
|
|
((adjusted_mode->crtc_hsync_end - offsetX - 1) << 16));
|
|
- REG_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start -
|
|
|
|
|
|
+ REG_WRITE(map->vblank, (adjusted_mode->crtc_vblank_start -
|
|
offsetY - 1) |
|
|
offsetY - 1) |
|
|
((adjusted_mode->crtc_vblank_end - offsetY - 1) << 16));
|
|
((adjusted_mode->crtc_vblank_end - offsetY - 1) << 16));
|
|
- REG_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start -
|
|
|
|
|
|
+ REG_WRITE(map->vsync, (adjusted_mode->crtc_vsync_start -
|
|
offsetY - 1) |
|
|
offsetY - 1) |
|
|
((adjusted_mode->crtc_vsync_end - offsetY - 1) << 16));
|
|
((adjusted_mode->crtc_vsync_end - offsetY - 1) << 16));
|
|
} else {
|
|
} else {
|
|
- REG_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->htotal, (adjusted_mode->crtc_hdisplay - 1) |
|
|
((adjusted_mode->crtc_htotal - 1) << 16));
|
|
((adjusted_mode->crtc_htotal - 1) << 16));
|
|
- REG_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->vtotal, (adjusted_mode->crtc_vdisplay - 1) |
|
|
((adjusted_mode->crtc_vtotal - 1) << 16));
|
|
((adjusted_mode->crtc_vtotal - 1) << 16));
|
|
- REG_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->hblank, (adjusted_mode->crtc_hblank_start - 1) |
|
|
((adjusted_mode->crtc_hblank_end - 1) << 16));
|
|
((adjusted_mode->crtc_hblank_end - 1) << 16));
|
|
- REG_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->hsync, (adjusted_mode->crtc_hsync_start - 1) |
|
|
((adjusted_mode->crtc_hsync_end - 1) << 16));
|
|
((adjusted_mode->crtc_hsync_end - 1) << 16));
|
|
- REG_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->vblank, (adjusted_mode->crtc_vblank_start - 1) |
|
|
((adjusted_mode->crtc_vblank_end - 1) << 16));
|
|
((adjusted_mode->crtc_vblank_end - 1) << 16));
|
|
- REG_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
|
|
|
|
|
|
+ REG_WRITE(map->vsync, (adjusted_mode->crtc_vsync_start - 1) |
|
|
((adjusted_mode->crtc_vsync_end - 1) << 16));
|
|
((adjusted_mode->crtc_vsync_end - 1) << 16));
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1000,12 +874,12 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
}
|
|
}
|
|
|
|
|
|
/* setup pipeconf */
|
|
/* setup pipeconf */
|
|
- *pipeconf = PIPEACONF_ENABLE; /* FIXME_JLIU7 REG_READ(pipeconf_reg); */
|
|
|
|
|
|
+ dev_priv->pipeconf[pipe] = PIPEACONF_ENABLE; /* FIXME_JLIU7 REG_READ(pipeconf_reg); */
|
|
|
|
|
|
/* Set up the display plane register */
|
|
/* Set up the display plane register */
|
|
- *dspcntr = REG_READ(dspcntr_reg);
|
|
|
|
- *dspcntr |= pipe << DISPPLANE_SEL_PIPE_POS;
|
|
|
|
- *dspcntr |= DISPLAY_PLANE_ENABLE;
|
|
|
|
|
|
+ dev_priv->dspcntr[pipe] = REG_READ(map->cntr);
|
|
|
|
+ dev_priv->dspcntr[pipe] |= pipe << DISPPLANE_SEL_PIPE_POS;
|
|
|
|
+ dev_priv->dspcntr[pipe] |= DISPLAY_PLANE_ENABLE;
|
|
|
|
|
|
if (is_mipi2)
|
|
if (is_mipi2)
|
|
goto mrst_crtc_mode_set_exit;
|
|
goto mrst_crtc_mode_set_exit;
|
|
@@ -1070,21 +944,21 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
clock.p1, m_conv);
|
|
clock.p1, m_conv);
|
|
}
|
|
}
|
|
|
|
|
|
- dpll = REG_READ(dpll_reg);
|
|
|
|
|
|
+ dpll = REG_READ(map->dpll);
|
|
|
|
|
|
if (dpll & DPLL_VCO_ENABLE) {
|
|
if (dpll & DPLL_VCO_ENABLE) {
|
|
dpll &= ~DPLL_VCO_ENABLE;
|
|
dpll &= ~DPLL_VCO_ENABLE;
|
|
- REG_WRITE(dpll_reg, dpll);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, dpll);
|
|
|
|
+ REG_READ(map->dpll);
|
|
|
|
|
|
/* FIXME jliu7 check the DPLL lock bit PIPEACONF[29] */
|
|
/* FIXME jliu7 check the DPLL lock bit PIPEACONF[29] */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
|
|
|
|
/* reset M1, N1 & P1 */
|
|
/* reset M1, N1 & P1 */
|
|
- REG_WRITE(fp_reg, 0);
|
|
|
|
|
|
+ REG_WRITE(map->fp0, 0);
|
|
dpll &= ~MDFLD_P1_MASK;
|
|
dpll &= ~MDFLD_P1_MASK;
|
|
- REG_WRITE(dpll_reg, dpll);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, dpll);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
}
|
|
}
|
|
@@ -1093,7 +967,7 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
* enable the VCO */
|
|
* enable the VCO */
|
|
if (dpll & MDFLD_PWR_GATE_EN) {
|
|
if (dpll & MDFLD_PWR_GATE_EN) {
|
|
dpll &= ~MDFLD_PWR_GATE_EN;
|
|
dpll &= ~MDFLD_PWR_GATE_EN;
|
|
- REG_WRITE(dpll_reg, dpll);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, dpll);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
}
|
|
}
|
|
@@ -1134,18 +1008,18 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
fp = 0x000000c1;
|
|
fp = 0x000000c1;
|
|
}
|
|
}
|
|
|
|
|
|
- REG_WRITE(fp_reg, fp);
|
|
|
|
- REG_WRITE(dpll_reg, dpll);
|
|
|
|
|
|
+ REG_WRITE(map->fp0, fp);
|
|
|
|
+ REG_WRITE(map->dpll, dpll);
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
/* FIXME_MDFLD PO - change 500 to 1 after PO */
|
|
udelay(500);
|
|
udelay(500);
|
|
|
|
|
|
dpll |= DPLL_VCO_ENABLE;
|
|
dpll |= DPLL_VCO_ENABLE;
|
|
- REG_WRITE(dpll_reg, dpll);
|
|
|
|
- REG_READ(dpll_reg);
|
|
|
|
|
|
+ REG_WRITE(map->dpll, dpll);
|
|
|
|
+ REG_READ(map->dpll);
|
|
|
|
|
|
/* wait for DSI PLL to lock */
|
|
/* wait for DSI PLL to lock */
|
|
while (timeout < 20000 &&
|
|
while (timeout < 20000 &&
|
|
- !(REG_READ(pipeconf_reg) & PIPECONF_DSIPLL_LOCK)) {
|
|
|
|
|
|
+ !(REG_READ(map->conf) & PIPECONF_DSIPLL_LOCK)) {
|
|
udelay(150);
|
|
udelay(150);
|
|
timeout++;
|
|
timeout++;
|
|
}
|
|
}
|
|
@@ -1155,11 +1029,11 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
|
|
|
|
|
dev_dbg(dev->dev, "is_mipi = 0x%x\n", is_mipi);
|
|
dev_dbg(dev->dev, "is_mipi = 0x%x\n", is_mipi);
|
|
|
|
|
|
- REG_WRITE(pipeconf_reg, *pipeconf);
|
|
|
|
- REG_READ(pipeconf_reg);
|
|
|
|
|
|
+ REG_WRITE(map->conf, dev_priv->pipeconf[pipe]);
|
|
|
|
+ REG_READ(map->conf);
|
|
|
|
|
|
/* Wait for for the pipe enable to take effect. */
|
|
/* Wait for for the pipe enable to take effect. */
|
|
- REG_WRITE(dspcntr_reg, *dspcntr);
|
|
|
|
|
|
+ REG_WRITE(map->cntr, dev_priv->dspcntr[pipe]);
|
|
psb_intel_wait_for_vblank(dev);
|
|
psb_intel_wait_for_vblank(dev);
|
|
|
|
|
|
mrst_crtc_mode_set_exit:
|
|
mrst_crtc_mode_set_exit:
|