blob: 5333656a1519dee9f5e6851a171036dd7ad1334a [file] [log] [blame]
/* Copyright (c) 2011-2015, 2017-2018, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <mdp3.h>
#include <debug.h>
#include <reg.h>
#include <msm_panel.h>
#include <err.h>
#include <target/display.h>
#include <platform/timer.h>
#include <platform/iomap.h>
#define BIT(bit) (1 << (bit))
static int mdp_rev;
/**
* mdp3_get_panic_lut_cfg() - calculate panic and robust lut mask
* @panel_width: Panel width
*
* DMA buffer has 16 fill levels. Which needs to configured as safe
* and panic levels based on panel resolutions.
* No. of fill levels used = ((panel active width * 8) / 512).
* Roundoff the use fill levels if needed.
* half of the total fill levels used will be treated as panic levels.
* Roundoff panic levels if total used fill levels are odd.
*
* Sample calculation for 720p display:
* Fill levels used = (720 * 8) / 512 = 12.5 after round off 13.
* panic levels = 13 / 2 = 6.5 after roundoff 7.
* Panic mask = 0x3FFF (2 bits per level)
* Robust mask = 0xFF80 (1 bit per level)
*/
unsigned long long mdp3_get_panic_lut_cfg(int panel_width)
{
unsigned int fill_levels = (((panel_width * 8) / 512) + 1);
unsigned int panic_mask = 0;
unsigned int robust_mask = 0;
int i = 0;
unsigned long long panic_config = 0;
int panic_levels = 0;
panic_levels = fill_levels/2;
if (fill_levels % 2)
panic_levels++;
for (i = 0; i < panic_levels; i++) {
panic_mask |= (BIT((i * 2) + 1) | BIT(i * 2));
robust_mask |= BIT(i);
}
panic_config = (~robust_mask);
panic_config = panic_config << 32;
panic_config |= panic_mask;
return panic_config;
}
int mdp_dsi_video_config(struct msm_panel_info *pinfo,
struct fbcon_config *fb)
{
unsigned long hsync_period;
unsigned long vsync_period;
unsigned long vsync_period_intmd;
struct lcdc_panel_info *lcdc = NULL;
int ystride = 3;
int mdp_rev = mdp_get_revision();
unsigned long long panic_config = mdp3_get_panic_lut_cfg(pinfo->xres);
if (pinfo == NULL)
return ERR_INVALID_ARGS;
lcdc = &(pinfo->lcdc);
if (lcdc == NULL)
return ERR_INVALID_ARGS;
dprintf(SPEW, "MDP3.0.3 for DSI Video Mode\n");
hsync_period = pinfo->xres + lcdc->h_front_porch + \
lcdc->h_back_porch + 1;
vsync_period_intmd = pinfo->yres + lcdc->v_front_porch + \
lcdc->v_back_porch + 1;
if (mdp_rev == MDP_REV_304 || mdp_rev == MDP_REV_305) {
hsync_period += lcdc->h_pulse_width - 1;
vsync_period_intmd += lcdc->v_pulse_width - 1;
}
vsync_period = vsync_period_intmd * hsync_period;
/* Program QOS remapper settings */
writel(0x1A9, MDP_DMA_P_QOS_REMAPPER);
writel(0x0, MDP_DMA_P_WATERMARK_0);
writel(0x0, MDP_DMA_P_WATERMARK_1);
writel(0x0, MDP_DMA_P_WATERMARK_2);
writel((panic_config & 0xFFFF), MDP_PANIC_LUT0);
writel(((panic_config >> 16) & 0xFFFF) , MDP_PANIC_LUT1);
writel(((panic_config >> 32) & 0xFFFF), MDP_ROBUST_LUT);
writel(0x1, MDP_PANIC_ROBUST_CTRL);
dprintf(INFO, "Panic Lut0 %x Lut1 %x Robest %x\n",
(panic_config & 0xFFFF), ((panic_config >> 16) & 0xFFFF),
((panic_config >> 32) & 0xFFFF));
// ------------- programming MDP_DMA_P_CONFIG ---------------------
writel(0x1800bf, MDP_DMA_P_CONFIG); // rgb888
writel(0x00000000, MDP_DMA_P_OUT_XY);
writel(pinfo->yres << 16 | pinfo->xres, MDP_DMA_P_SIZE);
writel((uint32_t)fb->base, MDP_DMA_P_BUF_ADDR);
writel(pinfo->xres * ystride, MDP_DMA_P_BUF_Y_STRIDE);
writel(hsync_period << 16 | lcdc->h_pulse_width, \
MDP_DSI_VIDEO_HSYNC_CTL);
writel(vsync_period, MDP_DSI_VIDEO_VSYNC_PERIOD);
writel(lcdc->v_pulse_width * hsync_period, \
MDP_DSI_VIDEO_VSYNC_PULSE_WIDTH);
if (mdp_rev == MDP_REV_304 || mdp_rev == MDP_REV_305) {
writel((pinfo->xres + lcdc->h_back_porch + \
lcdc->h_pulse_width - 1) << 16 | \
lcdc->h_back_porch + lcdc->h_pulse_width, \
MDP_DSI_VIDEO_DISPLAY_HCTL);
writel((lcdc->v_back_porch + lcdc->v_pulse_width) \
* hsync_period, MDP_DSI_VIDEO_DISPLAY_V_START);
writel(vsync_period - lcdc->v_front_porch * hsync_period - 1,
MDP_DSI_VIDEO_DISPLAY_V_END);
} else {
writel((pinfo->xres + lcdc->h_back_porch - 1) << 16 | \
lcdc->h_back_porch, MDP_DSI_VIDEO_DISPLAY_HCTL);
writel(lcdc->v_back_porch * hsync_period, \
MDP_DSI_VIDEO_DISPLAY_V_START);
writel((pinfo->yres + lcdc->v_back_porch) * hsync_period,
MDP_DSI_VIDEO_DISPLAY_V_END);
}
writel(0x00ABCDEF, MDP_DSI_VIDEO_BORDER_CLR);
writel(0x00000000, MDP_DSI_VIDEO_HSYNC_SKEW);
writel(0x00000000, MDP_DSI_VIDEO_CTL_POLARITY);
writel(0x70000000, MDP_DSI_VIDEO_TEST_CTL);
// end of cmd mdp
return 0;
}
int mdp_dsi_cmd_config(struct msm_panel_info *pinfo,
struct fbcon_config *fb)
{
int ret = 0;
unsigned short pack_pattern = 0x21;
unsigned char ystride = 3;
unsigned int sync_cfg;
unsigned long long panic_config = 0;
const uint32_t vsync_hz = 19200000; /* Vsync Clock 19.2 HMz */
/* Auto refresh fps = Panel fps / frame num */
/* Auto refresh frame num = 60/10 = 6fps */
const uint32_t autorefresh_framenum = 10;
if (pinfo == NULL)
return ERR_INVALID_ARGS;
/* Program QOS remapper settings */
writel(0x1A9, MDP_DMA_P_QOS_REMAPPER);
writel(0x0, MDP_DMA_P_WATERMARK_0);
writel(0x0, MDP_DMA_P_WATERMARK_1);
writel(0x0, MDP_DMA_P_WATERMARK_2);
panic_config = mdp3_get_panic_lut_cfg(pinfo->xres);
writel((panic_config & 0xFFFF), MDP_PANIC_LUT0);
writel(((panic_config >> 16) & 0xFFFF) , MDP_PANIC_LUT1);
writel(((panic_config >> 32) & 0xFFFF), MDP_ROBUST_LUT);
writel(0x1, MDP_PANIC_ROBUST_CTRL);
dprintf(INFO, "Panic Lut0 %x Lut1 %x Robest %x\n",
(panic_config & 0xFFFF), ((panic_config >> 16) & 0xFFFF),
((panic_config >> 32) & 0xFFFF));
writel(0x03ffffff, MDP_INTR_ENABLE);
// ------------- programming MDP_DMA_P_CONFIG ---------------------
writel(pack_pattern << 8 | 0x3f | (0 << 25)| (1 << 19) | (1 << 7) ,
MDP_DMA_P_CONFIG); /* rgb888 */
writel(0x00000000, MDP_DMA_P_OUT_XY);
writel(pinfo->yres << 16 | pinfo->xres, MDP_DMA_P_SIZE);
writel((uint32_t)fb->base, MDP_DMA_P_BUF_ADDR);
writel(pinfo->xres * ystride, MDP_DMA_P_BUF_Y_STRIDE);
writel(0x10, MDP_DSI_CMD_MODE_ID_MAP);
writel(0x11, MDP_DSI_CMD_MODE_TRIGGER_EN);
/* Enable Auto refresh */
sync_cfg = (pinfo->yres - 1) << 21;
sync_cfg |= BIT(19);
sync_cfg |= vsync_hz / (pinfo->yres * 60);
writel(sync_cfg, MDP_SYNC_CONFIG_0);
writel((BIT(28) | autorefresh_framenum),
MDP_AUTOREFRESH_CONFIG_P);
mdelay(10);
return ret;
}
void mdp_disable(void)
{
if (!target_cont_splash_screen())
writel(0x00000000, MDP_DSI_VIDEO_EN);
}
int mdp_dsi_video_off(void)
{
if (!target_cont_splash_screen()) {
mdp_disable();
mdelay(60);
}
writel(0x00000000, MDP_INTR_ENABLE);
writel(0x01ffffff, MDP_INTR_CLEAR);
return NO_ERROR;
}
int mdp_dsi_cmd_off(void)
{
if (!target_cont_splash_screen()) {
mdp_dma_off();
/*
* Allow sometime for the DMA channel to
* stop the data transfer
*/
mdelay(10);
}
/* Disable Auto refresh */
if (readl(MDP_AUTOREFRESH_CONFIG_P))
writel(0, MDP_AUTOREFRESH_CONFIG_P);
writel(0x00000000, MDP_INTR_ENABLE);
writel(0x01ffffff, MDP_INTR_CLEAR);
return NO_ERROR;
}
void mdp_set_revision(int rev)
{
mdp_rev = rev;
}
int mdp_get_revision(void)
{
return mdp_rev;
}
int mdp_dsi_video_on(struct msm_panel_info *pinfo)
{
int ret = 0;
writel(0x00000001, MDP_DSI_VIDEO_EN);
return ret;
}
int mdp_dma_on(struct msm_panel_info *pinfo)
{
int ret = 0;
mdelay(100);
writel(0x00000001, MDP_DMA_P_START);
return ret;
}
int mdp_dma_off()
{
int ret = 0;
if (!target_cont_splash_screen())
writel(0x00000000, MDP_DMA_P_START);
return ret;
}
int mdp_edp_config(struct msm_panel_info *pinfo, struct fbcon_config *fb)
{
return NO_ERROR;
}
int mdp_edp_on(struct msm_panel_info *pinfo)
{
return NO_ERROR;
}
int mdp_edp_off(void)
{
return NO_ERROR;
}
int mdss_hdmi_config(struct msm_panel_info *pinfo, struct fbcon_config *fb)
{
return NO_ERROR;
}
int mdss_hdmi_on(struct msm_panel_info *pinfo)
{
return NO_ERROR;
}
int mdss_hdmi_off(void)
{
return NO_ERROR;
}