
On OMAP3, the pixel clock for the LCD manager was derived through DISPC_FCLK as: Lcd Pixel clock = DISPC_FCLK / lcd / pcd Where lcd and pcd are divisors in the DISPC_DIVISOR register. On OMAP4, the pixel clocks for LCD1 and LCD2 managers are derived from 2 new clocks named LCD1_CLK and LCD2_CLK. The pixel clocks are calculated as: Lcd_o Pixel clock = LCDo_CLK / lcdo /pcdo, o = 1, 2 Where lcdo and pcdo registers are divisors in DISPC_DIVISORo registers. LCD1_CLK and LCD2_CLK can have DSS_FCLK, and the M4 divider clocks of DSI1 PLL and DSI2 PLL as clock sources respectively. Introduce functions to select and get the clock source for these new clocks. Modify DISPC functions get the correct lck and pck rates based on the clock source of these clocks. Since OMAP2/3 don't have these clocks, force OMAP2/3 to always have the LCD_CLK source as DSS_CLK_SRC_FCK by introducing a dss feature. Introduce clock source names for OMAP4 and some register field changes in DSS_CTRL on OMAP4. Currently, LCD2_CLK can only have DSS_FCLK as its clock source as DSI2 PLL functionality hasn't been introduced yet. BUG for now if DSI2 PLL is selected as clock. Signed-off-by: Archit Taneja <archit@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
321 lines
9.3 KiB
C
321 lines
9.3 KiB
C
/*
|
|
* linux/drivers/video/omap2/dss/dss_features.c
|
|
*
|
|
* Copyright (C) 2010 Texas Instruments
|
|
* Author: Archit Taneja <archit@ti.com>
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/types.h>
|
|
#include <linux/err.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include <plat/display.h>
|
|
#include <plat/cpu.h>
|
|
|
|
#include "dss.h"
|
|
#include "dss_features.h"
|
|
|
|
/* Defines a generic omap register field */
|
|
struct dss_reg_field {
|
|
enum dss_feat_reg_field id;
|
|
u8 start, end;
|
|
};
|
|
|
|
struct omap_dss_features {
|
|
const struct dss_reg_field *reg_fields;
|
|
const int num_reg_fields;
|
|
|
|
const u32 has_feature;
|
|
|
|
const int num_mgrs;
|
|
const int num_ovls;
|
|
const unsigned long max_dss_fck;
|
|
const enum omap_display_type *supported_displays;
|
|
const enum omap_color_mode *supported_color_modes;
|
|
const struct dss_clk_source_name *clksrc_names;
|
|
};
|
|
|
|
/* This struct is assigned to one of the below during initialization */
|
|
static struct omap_dss_features *omap_current_dss_features;
|
|
|
|
static const struct dss_reg_field omap2_dss_reg_fields[] = {
|
|
{ FEAT_REG_FIRHINC, 11, 0 },
|
|
{ FEAT_REG_FIRVINC, 27, 16 },
|
|
{ FEAT_REG_FIFOLOWTHRESHOLD, 8, 0 },
|
|
{ FEAT_REG_FIFOHIGHTHRESHOLD, 24, 16 },
|
|
{ FEAT_REG_FIFOSIZE, 8, 0 },
|
|
{ FEAT_REG_HORIZONTALACCU, 9, 0 },
|
|
{ FEAT_REG_VERTICALACCU, 25, 16 },
|
|
{ FEAT_REG_DISPC_CLK_SWITCH, 0, 0 },
|
|
};
|
|
|
|
static const struct dss_reg_field omap3_dss_reg_fields[] = {
|
|
{ FEAT_REG_FIRHINC, 12, 0 },
|
|
{ FEAT_REG_FIRVINC, 28, 16 },
|
|
{ FEAT_REG_FIFOLOWTHRESHOLD, 11, 0 },
|
|
{ FEAT_REG_FIFOHIGHTHRESHOLD, 27, 16 },
|
|
{ FEAT_REG_FIFOSIZE, 10, 0 },
|
|
{ FEAT_REG_HORIZONTALACCU, 9, 0 },
|
|
{ FEAT_REG_VERTICALACCU, 25, 16 },
|
|
{ FEAT_REG_DISPC_CLK_SWITCH, 0, 0 },
|
|
};
|
|
|
|
static const struct dss_reg_field omap4_dss_reg_fields[] = {
|
|
{ FEAT_REG_FIRHINC, 12, 0 },
|
|
{ FEAT_REG_FIRVINC, 28, 16 },
|
|
{ FEAT_REG_FIFOLOWTHRESHOLD, 15, 0 },
|
|
{ FEAT_REG_FIFOHIGHTHRESHOLD, 31, 16 },
|
|
{ FEAT_REG_FIFOSIZE, 15, 0 },
|
|
{ FEAT_REG_HORIZONTALACCU, 10, 0 },
|
|
{ FEAT_REG_VERTICALACCU, 26, 16 },
|
|
{ FEAT_REG_DISPC_CLK_SWITCH, 9, 8 },
|
|
};
|
|
|
|
static const enum omap_display_type omap2_dss_supported_displays[] = {
|
|
/* OMAP_DSS_CHANNEL_LCD */
|
|
OMAP_DISPLAY_TYPE_DPI | OMAP_DISPLAY_TYPE_DBI,
|
|
|
|
/* OMAP_DSS_CHANNEL_DIGIT */
|
|
OMAP_DISPLAY_TYPE_VENC,
|
|
};
|
|
|
|
static const enum omap_display_type omap3430_dss_supported_displays[] = {
|
|
/* OMAP_DSS_CHANNEL_LCD */
|
|
OMAP_DISPLAY_TYPE_DPI | OMAP_DISPLAY_TYPE_DBI |
|
|
OMAP_DISPLAY_TYPE_SDI | OMAP_DISPLAY_TYPE_DSI,
|
|
|
|
/* OMAP_DSS_CHANNEL_DIGIT */
|
|
OMAP_DISPLAY_TYPE_VENC,
|
|
};
|
|
|
|
static const enum omap_display_type omap3630_dss_supported_displays[] = {
|
|
/* OMAP_DSS_CHANNEL_LCD */
|
|
OMAP_DISPLAY_TYPE_DPI | OMAP_DISPLAY_TYPE_DBI |
|
|
OMAP_DISPLAY_TYPE_DSI,
|
|
|
|
/* OMAP_DSS_CHANNEL_DIGIT */
|
|
OMAP_DISPLAY_TYPE_VENC,
|
|
};
|
|
|
|
static const enum omap_display_type omap4_dss_supported_displays[] = {
|
|
/* OMAP_DSS_CHANNEL_LCD */
|
|
OMAP_DISPLAY_TYPE_DBI | OMAP_DISPLAY_TYPE_DSI,
|
|
|
|
/* OMAP_DSS_CHANNEL_DIGIT */
|
|
OMAP_DISPLAY_TYPE_VENC,
|
|
|
|
/* OMAP_DSS_CHANNEL_LCD2 */
|
|
OMAP_DISPLAY_TYPE_DPI | OMAP_DISPLAY_TYPE_DBI |
|
|
OMAP_DISPLAY_TYPE_DSI,
|
|
};
|
|
|
|
static const enum omap_color_mode omap2_dss_supported_color_modes[] = {
|
|
/* OMAP_DSS_GFX */
|
|
OMAP_DSS_COLOR_CLUT1 | OMAP_DSS_COLOR_CLUT2 |
|
|
OMAP_DSS_COLOR_CLUT4 | OMAP_DSS_COLOR_CLUT8 |
|
|
OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_RGB16 |
|
|
OMAP_DSS_COLOR_RGB24U | OMAP_DSS_COLOR_RGB24P,
|
|
|
|
/* OMAP_DSS_VIDEO1 */
|
|
OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U |
|
|
OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_YUV2 |
|
|
OMAP_DSS_COLOR_UYVY,
|
|
|
|
/* OMAP_DSS_VIDEO2 */
|
|
OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U |
|
|
OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_YUV2 |
|
|
OMAP_DSS_COLOR_UYVY,
|
|
};
|
|
|
|
static const enum omap_color_mode omap3_dss_supported_color_modes[] = {
|
|
/* OMAP_DSS_GFX */
|
|
OMAP_DSS_COLOR_CLUT1 | OMAP_DSS_COLOR_CLUT2 |
|
|
OMAP_DSS_COLOR_CLUT4 | OMAP_DSS_COLOR_CLUT8 |
|
|
OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_ARGB16 |
|
|
OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U |
|
|
OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_ARGB32 |
|
|
OMAP_DSS_COLOR_RGBA32 | OMAP_DSS_COLOR_RGBX32,
|
|
|
|
/* OMAP_DSS_VIDEO1 */
|
|
OMAP_DSS_COLOR_RGB24U | OMAP_DSS_COLOR_RGB24P |
|
|
OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_RGB16 |
|
|
OMAP_DSS_COLOR_YUV2 | OMAP_DSS_COLOR_UYVY,
|
|
|
|
/* OMAP_DSS_VIDEO2 */
|
|
OMAP_DSS_COLOR_RGB12U | OMAP_DSS_COLOR_ARGB16 |
|
|
OMAP_DSS_COLOR_RGB16 | OMAP_DSS_COLOR_RGB24U |
|
|
OMAP_DSS_COLOR_RGB24P | OMAP_DSS_COLOR_YUV2 |
|
|
OMAP_DSS_COLOR_UYVY | OMAP_DSS_COLOR_ARGB32 |
|
|
OMAP_DSS_COLOR_RGBA32 | OMAP_DSS_COLOR_RGBX32,
|
|
};
|
|
|
|
static const struct dss_clk_source_name omap2_dss_clk_source_names[] = {
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC, "N/A" },
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DSI, "N/A" },
|
|
{ DSS_CLK_SRC_FCK, "DSS_FCLK1" },
|
|
};
|
|
|
|
static const struct dss_clk_source_name omap3_dss_clk_source_names[] = {
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC, "DSI1_PLL_FCLK" },
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DSI, "DSI2_PLL_FCLK" },
|
|
{ DSS_CLK_SRC_FCK, "DSS1_ALWON_FCLK" },
|
|
};
|
|
|
|
static const struct dss_clk_source_name omap4_dss_clk_source_names[] = {
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC, "PLL1_CLK1" },
|
|
{ DSS_CLK_SRC_DSI_PLL_HSDIV_DSI, "PLL1_CLK2" },
|
|
{ DSS_CLK_SRC_FCK, "DSS_FCLK" },
|
|
};
|
|
|
|
/* OMAP2 DSS Features */
|
|
static struct omap_dss_features omap2_dss_features = {
|
|
.reg_fields = omap2_dss_reg_fields,
|
|
.num_reg_fields = ARRAY_SIZE(omap2_dss_reg_fields),
|
|
|
|
.has_feature =
|
|
FEAT_LCDENABLEPOL | FEAT_LCDENABLESIGNAL |
|
|
FEAT_PCKFREEENABLE | FEAT_FUNCGATED |
|
|
FEAT_ROWREPEATENABLE | FEAT_RESIZECONF,
|
|
|
|
.num_mgrs = 2,
|
|
.num_ovls = 3,
|
|
.max_dss_fck = 173000000,
|
|
.supported_displays = omap2_dss_supported_displays,
|
|
.supported_color_modes = omap2_dss_supported_color_modes,
|
|
.clksrc_names = omap2_dss_clk_source_names,
|
|
};
|
|
|
|
/* OMAP3 DSS Features */
|
|
static struct omap_dss_features omap3430_dss_features = {
|
|
.reg_fields = omap3_dss_reg_fields,
|
|
.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),
|
|
|
|
.has_feature =
|
|
FEAT_GLOBAL_ALPHA | FEAT_LCDENABLEPOL |
|
|
FEAT_LCDENABLESIGNAL | FEAT_PCKFREEENABLE |
|
|
FEAT_FUNCGATED | FEAT_ROWREPEATENABLE |
|
|
FEAT_LINEBUFFERSPLIT | FEAT_RESIZECONF,
|
|
|
|
.num_mgrs = 2,
|
|
.num_ovls = 3,
|
|
.max_dss_fck = 173000000,
|
|
.supported_displays = omap3430_dss_supported_displays,
|
|
.supported_color_modes = omap3_dss_supported_color_modes,
|
|
.clksrc_names = omap3_dss_clk_source_names,
|
|
};
|
|
|
|
static struct omap_dss_features omap3630_dss_features = {
|
|
.reg_fields = omap3_dss_reg_fields,
|
|
.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),
|
|
|
|
.has_feature =
|
|
FEAT_GLOBAL_ALPHA | FEAT_LCDENABLEPOL |
|
|
FEAT_LCDENABLESIGNAL | FEAT_PCKFREEENABLE |
|
|
FEAT_PRE_MULT_ALPHA | FEAT_FUNCGATED |
|
|
FEAT_ROWREPEATENABLE | FEAT_LINEBUFFERSPLIT |
|
|
FEAT_RESIZECONF,
|
|
|
|
.num_mgrs = 2,
|
|
.num_ovls = 3,
|
|
.max_dss_fck = 173000000,
|
|
.supported_displays = omap3630_dss_supported_displays,
|
|
.supported_color_modes = omap3_dss_supported_color_modes,
|
|
.clksrc_names = omap3_dss_clk_source_names,
|
|
};
|
|
|
|
/* OMAP4 DSS Features */
|
|
static struct omap_dss_features omap4_dss_features = {
|
|
.reg_fields = omap4_dss_reg_fields,
|
|
.num_reg_fields = ARRAY_SIZE(omap4_dss_reg_fields),
|
|
|
|
.has_feature =
|
|
FEAT_GLOBAL_ALPHA | FEAT_PRE_MULT_ALPHA |
|
|
FEAT_MGR_LCD2 | FEAT_GLOBAL_ALPHA_VID1 |
|
|
FEAT_CORE_CLK_DIV | FEAT_LCD_CLK_SRC,
|
|
|
|
.num_mgrs = 3,
|
|
.num_ovls = 3,
|
|
.max_dss_fck = 186000000,
|
|
.supported_displays = omap4_dss_supported_displays,
|
|
.supported_color_modes = omap3_dss_supported_color_modes,
|
|
.clksrc_names = omap4_dss_clk_source_names,
|
|
};
|
|
|
|
/* Functions returning values related to a DSS feature */
|
|
int dss_feat_get_num_mgrs(void)
|
|
{
|
|
return omap_current_dss_features->num_mgrs;
|
|
}
|
|
|
|
int dss_feat_get_num_ovls(void)
|
|
{
|
|
return omap_current_dss_features->num_ovls;
|
|
}
|
|
|
|
/* Max supported DSS FCK in Hz */
|
|
unsigned long dss_feat_get_max_dss_fck(void)
|
|
{
|
|
return omap_current_dss_features->max_dss_fck;
|
|
}
|
|
|
|
enum omap_display_type dss_feat_get_supported_displays(enum omap_channel channel)
|
|
{
|
|
return omap_current_dss_features->supported_displays[channel];
|
|
}
|
|
|
|
enum omap_color_mode dss_feat_get_supported_color_modes(enum omap_plane plane)
|
|
{
|
|
return omap_current_dss_features->supported_color_modes[plane];
|
|
}
|
|
|
|
bool dss_feat_color_mode_supported(enum omap_plane plane,
|
|
enum omap_color_mode color_mode)
|
|
{
|
|
return omap_current_dss_features->supported_color_modes[plane] &
|
|
color_mode;
|
|
}
|
|
|
|
const char *dss_feat_get_clk_source_name(enum dss_clk_source id)
|
|
{
|
|
return omap_current_dss_features->clksrc_names[id].clksrc_name;
|
|
}
|
|
|
|
/* DSS has_feature check */
|
|
bool dss_has_feature(enum dss_feat_id id)
|
|
{
|
|
return omap_current_dss_features->has_feature & id;
|
|
}
|
|
|
|
void dss_feat_get_reg_field(enum dss_feat_reg_field id, u8 *start, u8 *end)
|
|
{
|
|
if (id >= omap_current_dss_features->num_reg_fields)
|
|
BUG();
|
|
|
|
*start = omap_current_dss_features->reg_fields[id].start;
|
|
*end = omap_current_dss_features->reg_fields[id].end;
|
|
}
|
|
|
|
void dss_features_init(void)
|
|
{
|
|
if (cpu_is_omap24xx())
|
|
omap_current_dss_features = &omap2_dss_features;
|
|
else if (cpu_is_omap3630())
|
|
omap_current_dss_features = &omap3630_dss_features;
|
|
else if (cpu_is_omap34xx())
|
|
omap_current_dss_features = &omap3430_dss_features;
|
|
else
|
|
omap_current_dss_features = &omap4_dss_features;
|
|
}
|