2009-08-07 12:15:50 +02:00
|
|
|
/*
|
|
|
|
* linux/drivers/video/omap2/dss/dpi.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
|
|
|
|
*
|
|
|
|
* Some code and ideas taken from drivers/video/omap/ driver
|
|
|
|
* by Imre Deak.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DSS_SUBSYS_NAME "DPI"
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/delay.h>
|
2010-02-04 16:03:41 +01:00
|
|
|
#include <linux/err.h>
|
2009-08-07 12:15:50 +02:00
|
|
|
#include <linux/errno.h>
|
2010-02-04 16:03:41 +01:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/regulator/consumer.h>
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
#include <plat/display.h>
|
|
|
|
#include <plat/cpu.h>
|
|
|
|
|
|
|
|
#include "dss.h"
|
|
|
|
|
|
|
|
static struct {
|
2010-02-04 16:03:41 +01:00
|
|
|
struct regulator *vdds_dsi_reg;
|
2009-08-07 12:15:50 +02:00
|
|
|
} dpi;
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
2010-12-02 12:27:11 +01:00
|
|
|
static int dpi_set_dsi_clk(struct omap_dss_device *dssdev, bool is_tft,
|
|
|
|
unsigned long pck_req, unsigned long *fck, int *lck_div,
|
|
|
|
int *pck_div)
|
2009-08-07 12:15:50 +02:00
|
|
|
{
|
|
|
|
struct dsi_clock_info dsi_cinfo;
|
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = dsi_pll_calc_clock_div_pck(is_tft, pck_req, &dsi_cinfo,
|
|
|
|
&dispc_cinfo);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = dsi_pll_set_clock_div(&dsi_cinfo);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2011-01-06 06:14:10 +01:00
|
|
|
dss_select_dispc_clk_source(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-12-02 12:27:11 +01:00
|
|
|
r = dispc_set_clock_div(dssdev->manager->id, &dispc_cinfo);
|
2009-08-07 12:15:50 +02:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
*fck = dsi_cinfo.dsi1_pll_fclk;
|
|
|
|
*lck_div = dispc_cinfo.lck_div;
|
|
|
|
*pck_div = dispc_cinfo.pck_div;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2010-12-02 12:27:11 +01:00
|
|
|
static int dpi_set_dispc_clk(struct omap_dss_device *dssdev, bool is_tft,
|
|
|
|
unsigned long pck_req, unsigned long *fck, int *lck_div,
|
|
|
|
int *pck_div)
|
2009-08-07 12:15:50 +02:00
|
|
|
{
|
|
|
|
struct dss_clock_info dss_cinfo;
|
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = dss_calc_clock_div(is_tft, pck_req, &dss_cinfo, &dispc_cinfo);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = dss_set_clock_div(&dss_cinfo);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2010-12-02 12:27:11 +01:00
|
|
|
r = dispc_set_clock_div(dssdev->manager->id, &dispc_cinfo);
|
2009-08-07 12:15:50 +02:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
*fck = dss_cinfo.fck;
|
|
|
|
*lck_div = dispc_cinfo.lck_div;
|
|
|
|
*pck_div = dispc_cinfo.pck_div;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int dpi_set_mode(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
struct omap_video_timings *t = &dssdev->panel.timings;
|
|
|
|
int lck_div, pck_div;
|
|
|
|
unsigned long fck;
|
|
|
|
unsigned long pck;
|
|
|
|
bool is_tft;
|
|
|
|
int r = 0;
|
|
|
|
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-12-02 12:27:11 +01:00
|
|
|
dispc_set_pol_freq(dssdev->manager->id, dssdev->panel.config,
|
|
|
|
dssdev->panel.acbi, dssdev->panel.acb);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
is_tft = (dssdev->panel.config & OMAP_DSS_LCD_TFT) != 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
2010-12-02 12:27:11 +01:00
|
|
|
r = dpi_set_dsi_clk(dssdev, is_tft, t->pixel_clock * 1000, &fck,
|
|
|
|
&lck_div, &pck_div);
|
2009-08-07 12:15:50 +02:00
|
|
|
#else
|
2010-12-02 12:27:11 +01:00
|
|
|
r = dpi_set_dispc_clk(dssdev, is_tft, t->pixel_clock * 1000, &fck,
|
|
|
|
&lck_div, &pck_div);
|
2009-08-07 12:15:50 +02:00
|
|
|
#endif
|
|
|
|
if (r)
|
|
|
|
goto err0;
|
|
|
|
|
|
|
|
pck = fck / lck_div / pck_div / 1000;
|
|
|
|
|
|
|
|
if (pck != t->pixel_clock) {
|
|
|
|
DSSWARN("Could not find exact pixel clock. "
|
|
|
|
"Requested %d kHz, got %lu kHz\n",
|
|
|
|
t->pixel_clock, pck);
|
|
|
|
|
|
|
|
t->pixel_clock = pck;
|
|
|
|
}
|
|
|
|
|
2010-12-02 12:27:10 +01:00
|
|
|
dispc_set_lcd_timings(dssdev->manager->id, t);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
err0:
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dpi_basic_init(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
bool is_tft;
|
|
|
|
|
|
|
|
is_tft = (dssdev->panel.config & OMAP_DSS_LCD_TFT) != 0;
|
|
|
|
|
2010-12-02 12:27:10 +01:00
|
|
|
dispc_set_parallel_interface_mode(dssdev->manager->id,
|
|
|
|
OMAP_DSS_PARALLELMODE_BYPASS);
|
|
|
|
dispc_set_lcd_display_type(dssdev->manager->id, is_tft ?
|
|
|
|
OMAP_DSS_LCD_DISPLAY_TFT : OMAP_DSS_LCD_DISPLAY_STN);
|
|
|
|
dispc_set_tft_data_lines(dssdev->manager->id,
|
|
|
|
dssdev->phy.dpi.data_lines);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-12 14:12:07 +01:00
|
|
|
int omapdss_dpi_display_enable(struct omap_dss_device *dssdev)
|
2009-08-07 12:15:50 +02:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = omap_dss_start_device(dssdev);
|
|
|
|
if (r) {
|
|
|
|
DSSERR("failed to start device\n");
|
|
|
|
goto err0;
|
|
|
|
}
|
|
|
|
|
2010-02-04 16:03:41 +01:00
|
|
|
if (cpu_is_omap34xx()) {
|
|
|
|
r = regulator_enable(dpi.vdds_dsi_reg);
|
|
|
|
if (r)
|
2010-01-12 14:12:07 +01:00
|
|
|
goto err1;
|
2010-02-04 16:03:41 +01:00
|
|
|
}
|
|
|
|
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
r = dpi_basic_init(dssdev);
|
|
|
|
if (r)
|
2010-01-12 14:12:07 +01:00
|
|
|
goto err2;
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_enable(DSS_CLK_SYSCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
r = dsi_pll_init(dssdev, 0, 1);
|
|
|
|
if (r)
|
2010-01-12 14:12:07 +01:00
|
|
|
goto err3;
|
2009-08-07 12:15:50 +02:00
|
|
|
#endif
|
|
|
|
r = dpi_set_mode(dssdev);
|
|
|
|
if (r)
|
2010-01-12 14:12:07 +01:00
|
|
|
goto err4;
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
mdelay(2);
|
|
|
|
|
2010-01-08 16:14:53 +01:00
|
|
|
dssdev->manager->enable(dssdev->manager);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2010-01-12 14:12:07 +01:00
|
|
|
err4:
|
2009-08-07 12:15:50 +02:00
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
|
|
|
dsi_pll_uninit();
|
2010-01-12 14:12:07 +01:00
|
|
|
err3:
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_disable(DSS_CLK_SYSCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
#endif
|
2010-02-04 16:03:41 +01:00
|
|
|
err2:
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
|
2010-02-04 16:03:41 +01:00
|
|
|
if (cpu_is_omap34xx())
|
|
|
|
regulator_disable(dpi.vdds_dsi_reg);
|
2009-08-07 12:15:50 +02:00
|
|
|
err1:
|
|
|
|
omap_dss_stop_device(dssdev);
|
|
|
|
err0:
|
|
|
|
return r;
|
|
|
|
}
|
2010-01-12 14:12:07 +01:00
|
|
|
EXPORT_SYMBOL(omapdss_dpi_display_enable);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-01-12 14:12:07 +01:00
|
|
|
void omapdss_dpi_display_disable(struct omap_dss_device *dssdev)
|
2009-08-07 12:15:50 +02:00
|
|
|
{
|
2010-01-08 16:14:53 +01:00
|
|
|
dssdev->manager->disable(dssdev->manager);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
2011-01-06 06:14:10 +01:00
|
|
|
dss_select_dispc_clk_source(DSS_CLK_SRC_FCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
dsi_pll_uninit();
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_disable(DSS_CLK_SYSCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
#endif
|
|
|
|
|
2011-01-31 17:27:44 +01:00
|
|
|
dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-02-04 16:03:41 +01:00
|
|
|
if (cpu_is_omap34xx())
|
|
|
|
regulator_disable(dpi.vdds_dsi_reg);
|
|
|
|
|
2009-08-07 12:15:50 +02:00
|
|
|
omap_dss_stop_device(dssdev);
|
|
|
|
}
|
2010-01-12 14:12:07 +01:00
|
|
|
EXPORT_SYMBOL(omapdss_dpi_display_disable);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-01-20 11:11:25 +01:00
|
|
|
void dpi_set_timings(struct omap_dss_device *dssdev,
|
2009-08-07 12:15:50 +02:00
|
|
|
struct omap_video_timings *timings)
|
|
|
|
{
|
|
|
|
DSSDBG("dpi_set_timings\n");
|
|
|
|
dssdev->panel.timings = *timings;
|
|
|
|
if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) {
|
|
|
|
dpi_set_mode(dssdev);
|
2010-12-02 12:27:12 +01:00
|
|
|
dispc_go(dssdev->manager->id);
|
2009-08-07 12:15:50 +02:00
|
|
|
}
|
|
|
|
}
|
2010-01-20 11:11:25 +01:00
|
|
|
EXPORT_SYMBOL(dpi_set_timings);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2010-01-20 11:11:25 +01:00
|
|
|
int dpi_check_timings(struct omap_dss_device *dssdev,
|
2009-08-07 12:15:50 +02:00
|
|
|
struct omap_video_timings *timings)
|
|
|
|
{
|
|
|
|
bool is_tft;
|
|
|
|
int r;
|
|
|
|
int lck_div, pck_div;
|
|
|
|
unsigned long fck;
|
|
|
|
unsigned long pck;
|
|
|
|
|
|
|
|
if (!dispc_lcd_timings_ok(timings))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (timings->pixel_clock == 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
is_tft = (dssdev->panel.config & OMAP_DSS_LCD_TFT) != 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
|
|
|
|
{
|
|
|
|
struct dsi_clock_info dsi_cinfo;
|
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
r = dsi_pll_calc_clock_div_pck(is_tft,
|
|
|
|
timings->pixel_clock * 1000,
|
|
|
|
&dsi_cinfo, &dispc_cinfo);
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
fck = dsi_cinfo.dsi1_pll_fclk;
|
|
|
|
lck_div = dispc_cinfo.lck_div;
|
|
|
|
pck_div = dispc_cinfo.pck_div;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
struct dss_clock_info dss_cinfo;
|
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
r = dss_calc_clock_div(is_tft, timings->pixel_clock * 1000,
|
|
|
|
&dss_cinfo, &dispc_cinfo);
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
fck = dss_cinfo.fck;
|
|
|
|
lck_div = dispc_cinfo.lck_div;
|
|
|
|
pck_div = dispc_cinfo.pck_div;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pck = fck / lck_div / pck_div / 1000;
|
|
|
|
|
|
|
|
timings->pixel_clock = pck;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-01-20 11:11:25 +01:00
|
|
|
EXPORT_SYMBOL(dpi_check_timings);
|
2009-08-07 12:15:50 +02:00
|
|
|
|
|
|
|
int dpi_init_display(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
DSSDBG("init_display\n");
|
|
|
|
|
2011-02-22 14:53:46 +01:00
|
|
|
if (cpu_is_omap34xx() && dpi.vdds_dsi_reg == NULL) {
|
|
|
|
struct regulator *vdds_dsi;
|
2009-08-07 12:15:50 +02:00
|
|
|
|
2011-02-22 14:53:46 +01:00
|
|
|
vdds_dsi = dss_get_vdds_dsi();
|
|
|
|
|
|
|
|
if (IS_ERR(vdds_dsi)) {
|
2010-02-04 16:03:41 +01:00
|
|
|
DSSERR("can't get VDDS_DSI regulator\n");
|
2011-02-22 14:53:46 +01:00
|
|
|
return PTR_ERR(vdds_dsi);
|
2010-02-04 16:03:41 +01:00
|
|
|
}
|
2011-02-22 14:53:46 +01:00
|
|
|
|
|
|
|
dpi.vdds_dsi_reg = vdds_dsi;
|
2010-02-04 16:03:41 +01:00
|
|
|
}
|
|
|
|
|
2009-08-07 12:15:50 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-02-22 14:53:46 +01:00
|
|
|
int dpi_init(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-07 12:15:50 +02:00
|
|
|
void dpi_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|