2009-11-03 16:23:50 +07:00
|
|
|
/*
|
|
|
|
* linux/drivers/video/omap2/dss/dss.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 "DSS"
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2013-12-16 20:13:24 +07:00
|
|
|
#include <linux/module.h>
|
2009-11-03 16:23:50 +07:00
|
|
|
#include <linux/io.h>
|
2011-07-11 00:20:26 +07:00
|
|
|
#include <linux/export.h>
|
2009-11-03 16:23:50 +07:00
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/clk.h>
|
2011-05-23 15:51:18 +07:00
|
|
|
#include <linux/platform_device.h>
|
2011-05-27 14:52:19 +07:00
|
|
|
#include <linux/pm_runtime.h>
|
2012-07-11 20:06:18 +07:00
|
|
|
#include <linux/gfp.h>
|
2012-09-28 17:54:35 +07:00
|
|
|
#include <linux/sizes.h>
|
2013-12-16 20:13:24 +07:00
|
|
|
#include <linux/of.h>
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2011-05-11 18:05:07 +07:00
|
|
|
#include <video/omapdss.h>
|
2012-02-25 01:34:35 +07:00
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
#include "dss.h"
|
2011-02-24 19:18:50 +07:00
|
|
|
#include "dss_features.h"
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
#define DSS_SZ_REGS SZ_512
|
|
|
|
|
|
|
|
struct dss_reg {
|
|
|
|
u16 idx;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DSS_REG(idx) ((const struct dss_reg) { idx })
|
|
|
|
|
|
|
|
#define DSS_REVISION DSS_REG(0x0000)
|
|
|
|
#define DSS_SYSCONFIG DSS_REG(0x0010)
|
|
|
|
#define DSS_SYSSTATUS DSS_REG(0x0014)
|
|
|
|
#define DSS_CONTROL DSS_REG(0x0040)
|
|
|
|
#define DSS_SDI_CONTROL DSS_REG(0x0044)
|
|
|
|
#define DSS_PLL_CONTROL DSS_REG(0x0048)
|
|
|
|
#define DSS_SDI_STATUS DSS_REG(0x005C)
|
|
|
|
|
|
|
|
#define REG_GET(idx, start, end) \
|
|
|
|
FLD_GET(dss_read_reg(idx), start, end)
|
|
|
|
|
|
|
|
#define REG_FLD_MOD(idx, val, start, end) \
|
|
|
|
dss_write_reg(idx, FLD_MOD(dss_read_reg(idx), val, start, end))
|
|
|
|
|
2012-02-17 22:58:04 +07:00
|
|
|
static int dss_runtime_get(void);
|
|
|
|
static void dss_runtime_put(void);
|
|
|
|
|
2012-07-11 20:06:18 +07:00
|
|
|
struct dss_features {
|
|
|
|
u8 fck_div_max;
|
|
|
|
u8 dss_fck_multiplier;
|
2013-11-01 16:38:04 +07:00
|
|
|
const char *parent_clk_name;
|
2012-09-21 16:09:54 +07:00
|
|
|
int (*dpi_select_source)(enum omap_channel channel);
|
2012-07-11 20:06:18 +07:00
|
|
|
};
|
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
static struct {
|
2011-01-24 13:21:57 +07:00
|
|
|
struct platform_device *pdev;
|
2009-11-03 16:23:50 +07:00
|
|
|
void __iomem *base;
|
2011-05-27 14:52:19 +07:00
|
|
|
|
2013-11-01 16:38:04 +07:00
|
|
|
struct clk *parent_clk;
|
2011-05-27 14:52:19 +07:00
|
|
|
struct clk *dss_clk;
|
2012-12-12 15:37:03 +07:00
|
|
|
unsigned long dss_clk_rate;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
unsigned long cache_req_pck;
|
|
|
|
unsigned long cache_prate;
|
|
|
|
struct dispc_clock_info cache_dispc_cinfo;
|
|
|
|
|
2011-05-12 18:56:29 +07:00
|
|
|
enum omap_dss_clk_source dsi_clk_source[MAX_NUM_DSI];
|
2011-04-12 15:22:23 +07:00
|
|
|
enum omap_dss_clk_source dispc_clk_source;
|
|
|
|
enum omap_dss_clk_source lcd_clk_source[MAX_DSS_LCD_MANAGERS];
|
2010-01-08 23:00:36 +07:00
|
|
|
|
2011-06-01 19:56:39 +07:00
|
|
|
bool ctx_valid;
|
2009-11-03 16:23:50 +07:00
|
|
|
u32 ctx[DSS_SZ_REGS / sizeof(u32)];
|
2012-07-11 20:06:18 +07:00
|
|
|
|
|
|
|
const struct dss_features *feat;
|
2009-11-03 16:23:50 +07:00
|
|
|
} dss;
|
|
|
|
|
2011-03-15 11:28:21 +07:00
|
|
|
static const char * const dss_generic_clk_source_names[] = {
|
2011-04-12 15:22:23 +07:00
|
|
|
[OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC] = "DSI_PLL_HSDIV_DISPC",
|
|
|
|
[OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI] = "DSI_PLL_HSDIV_DSI",
|
|
|
|
[OMAP_DSS_CLK_SRC_FCK] = "DSS_FCK",
|
2011-11-30 22:34:52 +07:00
|
|
|
[OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC] = "DSI_PLL2_HSDIV_DISPC",
|
|
|
|
[OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DSI] = "DSI_PLL2_HSDIV_DSI",
|
2011-03-02 13:27:25 +07:00
|
|
|
};
|
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
static inline void dss_write_reg(const struct dss_reg idx, u32 val)
|
|
|
|
{
|
|
|
|
__raw_writel(val, dss.base + idx.idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 dss_read_reg(const struct dss_reg idx)
|
|
|
|
{
|
|
|
|
return __raw_readl(dss.base + idx.idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SR(reg) \
|
|
|
|
dss.ctx[(DSS_##reg).idx / sizeof(u32)] = dss_read_reg(DSS_##reg)
|
|
|
|
#define RR(reg) \
|
|
|
|
dss_write_reg(DSS_##reg, dss.ctx[(DSS_##reg).idx / sizeof(u32)])
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
static void dss_save_context(void)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2011-05-27 14:52:19 +07:00
|
|
|
DSSDBG("dss_save_context\n");
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
SR(CONTROL);
|
|
|
|
|
2011-02-24 19:18:50 +07:00
|
|
|
if (dss_feat_get_supported_displays(OMAP_DSS_CHANNEL_LCD) &
|
|
|
|
OMAP_DISPLAY_TYPE_SDI) {
|
|
|
|
SR(SDI_CONTROL);
|
|
|
|
SR(PLL_CONTROL);
|
|
|
|
}
|
2011-06-01 19:56:39 +07:00
|
|
|
|
|
|
|
dss.ctx_valid = true;
|
|
|
|
|
|
|
|
DSSDBG("context saved\n");
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
static void dss_restore_context(void)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2011-05-27 14:52:19 +07:00
|
|
|
DSSDBG("dss_restore_context\n");
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2011-06-01 19:56:39 +07:00
|
|
|
if (!dss.ctx_valid)
|
|
|
|
return;
|
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
RR(CONTROL);
|
|
|
|
|
2011-02-24 19:18:50 +07:00
|
|
|
if (dss_feat_get_supported_displays(OMAP_DSS_CHANNEL_LCD) &
|
|
|
|
OMAP_DISPLAY_TYPE_SDI) {
|
|
|
|
RR(SDI_CONTROL);
|
|
|
|
RR(PLL_CONTROL);
|
|
|
|
}
|
2011-06-01 19:56:39 +07:00
|
|
|
|
|
|
|
DSSDBG("context restored\n");
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef SR
|
|
|
|
#undef RR
|
|
|
|
|
2012-07-20 18:48:49 +07:00
|
|
|
void dss_sdi_init(int datapairs)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
|
|
|
BUG_ON(datapairs > 3 || datapairs < 1);
|
|
|
|
|
|
|
|
l = dss_read_reg(DSS_SDI_CONTROL);
|
|
|
|
l = FLD_MOD(l, 0xf, 19, 15); /* SDI_PDIV */
|
|
|
|
l = FLD_MOD(l, datapairs-1, 3, 2); /* SDI_PRSEL */
|
|
|
|
l = FLD_MOD(l, 2, 1, 0); /* SDI_BWSEL */
|
|
|
|
dss_write_reg(DSS_SDI_CONTROL, l);
|
|
|
|
|
|
|
|
l = dss_read_reg(DSS_PLL_CONTROL);
|
|
|
|
l = FLD_MOD(l, 0x7, 25, 22); /* SDI_PLL_FREQSEL */
|
|
|
|
l = FLD_MOD(l, 0xb, 16, 11); /* SDI_PLL_REGN */
|
|
|
|
l = FLD_MOD(l, 0xb4, 10, 1); /* SDI_PLL_REGM */
|
|
|
|
dss_write_reg(DSS_PLL_CONTROL, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dss_sdi_enable(void)
|
|
|
|
{
|
|
|
|
unsigned long timeout;
|
|
|
|
|
|
|
|
dispc_pck_free_enable(1);
|
|
|
|
|
|
|
|
/* Reset SDI PLL */
|
|
|
|
REG_FLD_MOD(DSS_PLL_CONTROL, 1, 18, 18); /* SDI_PLL_SYSRESET */
|
|
|
|
udelay(1); /* wait 2x PCLK */
|
|
|
|
|
|
|
|
/* Lock SDI PLL */
|
|
|
|
REG_FLD_MOD(DSS_PLL_CONTROL, 1, 28, 28); /* SDI_PLL_GOBIT */
|
|
|
|
|
|
|
|
/* Waiting for PLL lock request to complete */
|
|
|
|
timeout = jiffies + msecs_to_jiffies(500);
|
|
|
|
while (dss_read_reg(DSS_SDI_STATUS) & (1 << 6)) {
|
|
|
|
if (time_after_eq(jiffies, timeout)) {
|
|
|
|
DSSERR("PLL lock request timed out\n");
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clearing PLL_GO bit */
|
|
|
|
REG_FLD_MOD(DSS_PLL_CONTROL, 0, 28, 28);
|
|
|
|
|
|
|
|
/* Waiting for PLL to lock */
|
|
|
|
timeout = jiffies + msecs_to_jiffies(500);
|
|
|
|
while (!(dss_read_reg(DSS_SDI_STATUS) & (1 << 5))) {
|
|
|
|
if (time_after_eq(jiffies, timeout)) {
|
|
|
|
DSSERR("PLL lock timed out\n");
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dispc_lcd_enable_signal(1);
|
|
|
|
|
|
|
|
/* Waiting for SDI reset to complete */
|
|
|
|
timeout = jiffies + msecs_to_jiffies(500);
|
|
|
|
while (!(dss_read_reg(DSS_SDI_STATUS) & (1 << 2))) {
|
|
|
|
if (time_after_eq(jiffies, timeout)) {
|
|
|
|
DSSERR("SDI reset timed out\n");
|
|
|
|
goto err2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err2:
|
|
|
|
dispc_lcd_enable_signal(0);
|
|
|
|
err1:
|
|
|
|
/* Reset SDI PLL */
|
|
|
|
REG_FLD_MOD(DSS_PLL_CONTROL, 0, 18, 18); /* SDI_PLL_SYSRESET */
|
|
|
|
|
|
|
|
dispc_pck_free_enable(0);
|
|
|
|
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dss_sdi_disable(void)
|
|
|
|
{
|
|
|
|
dispc_lcd_enable_signal(0);
|
|
|
|
|
|
|
|
dispc_pck_free_enable(0);
|
|
|
|
|
|
|
|
/* Reset SDI PLL */
|
|
|
|
REG_FLD_MOD(DSS_PLL_CONTROL, 0, 18, 18); /* SDI_PLL_SYSRESET */
|
|
|
|
}
|
|
|
|
|
2011-04-12 15:22:23 +07:00
|
|
|
const char *dss_get_generic_clk_source_name(enum omap_dss_clk_source clk_src)
|
2011-03-02 13:27:25 +07:00
|
|
|
{
|
2011-03-15 11:28:21 +07:00
|
|
|
return dss_generic_clk_source_names[clk_src];
|
2011-03-02 13:27:25 +07:00
|
|
|
}
|
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
void dss_dump_clocks(struct seq_file *s)
|
|
|
|
{
|
2011-03-14 19:28:57 +07:00
|
|
|
const char *fclk_name, *fclk_real_name;
|
|
|
|
unsigned long fclk_rate;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
if (dss_runtime_get())
|
|
|
|
return;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
seq_printf(s, "- DSS -\n");
|
|
|
|
|
2011-04-12 15:22:23 +07:00
|
|
|
fclk_name = dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_FCK);
|
|
|
|
fclk_real_name = dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_FCK);
|
2011-05-27 14:52:19 +07:00
|
|
|
fclk_rate = clk_get_rate(dss.dss_clk);
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2013-11-01 16:36:10 +07:00
|
|
|
seq_printf(s, "%s (%s) = %lu\n",
|
|
|
|
fclk_name, fclk_real_name,
|
|
|
|
fclk_rate);
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
dss_runtime_put();
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
2012-03-02 23:01:07 +07:00
|
|
|
static void dss_dump_regs(struct seq_file *s)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
|
|
|
#define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dss_read_reg(r))
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
if (dss_runtime_get())
|
|
|
|
return;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
DUMPREG(DSS_REVISION);
|
|
|
|
DUMPREG(DSS_SYSCONFIG);
|
|
|
|
DUMPREG(DSS_SYSSTATUS);
|
|
|
|
DUMPREG(DSS_CONTROL);
|
2011-02-24 19:18:50 +07:00
|
|
|
|
|
|
|
if (dss_feat_get_supported_displays(OMAP_DSS_CHANNEL_LCD) &
|
|
|
|
OMAP_DISPLAY_TYPE_SDI) {
|
|
|
|
DUMPREG(DSS_SDI_CONTROL);
|
|
|
|
DUMPREG(DSS_PLL_CONTROL);
|
|
|
|
DUMPREG(DSS_SDI_STATUS);
|
|
|
|
}
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
dss_runtime_put();
|
2009-11-03 16:23:50 +07:00
|
|
|
#undef DUMPREG
|
|
|
|
}
|
|
|
|
|
OMAPDSS: hide dss_select_dispc_clk_source()
dss.c currently exposes functions to configure the dispc source clock
and lcd source clock. There are configured separately from the output
drivers.
However, there is no safe way for the output drivers to handle dispc
clock, as it's shared between the outputs. Thus, if, say, the DSI driver
sets up DSI PLL and configures both the dispc and lcd clock sources to
that DSI PLL, the resulting dispc clock could be too low for, say, HDMI.
Thus the output drivers should really only be concerned about the lcd
clock, which is what the output drivers actually use. There's lot to do
to clean up the dss clock handling, but this patch takes one step
forward and removes the use of dss_select_dispc_clk_source() from the
output drivers.
After this patch, the output drivers only configure the lcd source
clock. On omap4+ the dispc src clock is never changed from the default
PRCM source. On omap3, where the dispc and lcd clocks are actually the
same, setting the lcd clock source sets the dispc clock source.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2012-10-22 20:58:36 +07:00
|
|
|
static void dss_select_dispc_clk_source(enum omap_dss_clk_source clk_src)
|
2010-01-08 23:00:36 +07:00
|
|
|
{
|
2011-05-12 18:56:26 +07:00
|
|
|
struct platform_device *dsidev;
|
2010-01-08 23:00:36 +07:00
|
|
|
int b;
|
2011-03-08 18:50:35 +07:00
|
|
|
u8 start, end;
|
2010-01-08 23:00:36 +07:00
|
|
|
|
2011-03-08 18:50:34 +07:00
|
|
|
switch (clk_src) {
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_FCK:
|
2011-03-08 18:50:34 +07:00
|
|
|
b = 0;
|
|
|
|
break;
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC:
|
2011-03-08 18:50:34 +07:00
|
|
|
b = 1;
|
2011-05-12 18:56:26 +07:00
|
|
|
dsidev = dsi_get_dsidev_from_id(0);
|
|
|
|
dsi_wait_pll_hsdiv_dispc_active(dsidev);
|
2011-03-08 18:50:34 +07:00
|
|
|
break;
|
2011-05-12 18:56:29 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC:
|
|
|
|
b = 2;
|
|
|
|
dsidev = dsi_get_dsidev_from_id(1);
|
|
|
|
dsi_wait_pll_hsdiv_dispc_active(dsidev);
|
|
|
|
break;
|
2011-03-08 18:50:34 +07:00
|
|
|
default:
|
|
|
|
BUG();
|
2012-05-18 15:47:02 +07:00
|
|
|
return;
|
2011-03-08 18:50:34 +07:00
|
|
|
}
|
2010-06-09 19:28:12 +07:00
|
|
|
|
2011-03-08 18:50:35 +07:00
|
|
|
dss_feat_get_reg_field(FEAT_REG_DISPC_CLK_SWITCH, &start, &end);
|
|
|
|
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, b, start, end); /* DISPC_CLK_SWITCH */
|
2010-01-08 23:00:36 +07:00
|
|
|
|
|
|
|
dss.dispc_clk_source = clk_src;
|
|
|
|
}
|
|
|
|
|
2011-05-12 18:56:29 +07:00
|
|
|
void dss_select_dsi_clk_source(int dsi_module,
|
|
|
|
enum omap_dss_clk_source clk_src)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2011-05-12 18:56:26 +07:00
|
|
|
struct platform_device *dsidev;
|
2012-05-07 18:21:35 +07:00
|
|
|
int b, pos;
|
2010-01-08 23:00:36 +07:00
|
|
|
|
2011-03-08 18:50:34 +07:00
|
|
|
switch (clk_src) {
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_FCK:
|
2011-03-08 18:50:34 +07:00
|
|
|
b = 0;
|
|
|
|
break;
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI:
|
2011-05-12 18:56:29 +07:00
|
|
|
BUG_ON(dsi_module != 0);
|
2011-03-08 18:50:34 +07:00
|
|
|
b = 1;
|
2011-05-12 18:56:26 +07:00
|
|
|
dsidev = dsi_get_dsidev_from_id(0);
|
|
|
|
dsi_wait_pll_hsdiv_dsi_active(dsidev);
|
2011-03-08 18:50:34 +07:00
|
|
|
break;
|
2011-05-12 18:56:29 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DSI:
|
|
|
|
BUG_ON(dsi_module != 1);
|
|
|
|
b = 1;
|
|
|
|
dsidev = dsi_get_dsidev_from_id(1);
|
|
|
|
dsi_wait_pll_hsdiv_dsi_active(dsidev);
|
|
|
|
break;
|
2011-03-08 18:50:34 +07:00
|
|
|
default:
|
|
|
|
BUG();
|
2012-05-18 15:47:02 +07:00
|
|
|
return;
|
2011-03-08 18:50:34 +07:00
|
|
|
}
|
2010-06-09 19:28:12 +07:00
|
|
|
|
2012-05-07 18:21:35 +07:00
|
|
|
pos = dsi_module == 0 ? 1 : 10;
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, b, pos, pos); /* DSIx_CLK_SWITCH */
|
2010-01-08 23:00:36 +07:00
|
|
|
|
2011-05-12 18:56:29 +07:00
|
|
|
dss.dsi_clk_source[dsi_module] = clk_src;
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
2011-03-08 18:50:35 +07:00
|
|
|
void dss_select_lcd_clk_source(enum omap_channel channel,
|
2011-04-12 15:22:23 +07:00
|
|
|
enum omap_dss_clk_source clk_src)
|
2011-03-08 18:50:35 +07:00
|
|
|
{
|
2011-05-12 18:56:26 +07:00
|
|
|
struct platform_device *dsidev;
|
2011-03-08 18:50:35 +07:00
|
|
|
int b, ix, pos;
|
|
|
|
|
OMAPDSS: hide dss_select_dispc_clk_source()
dss.c currently exposes functions to configure the dispc source clock
and lcd source clock. There are configured separately from the output
drivers.
However, there is no safe way for the output drivers to handle dispc
clock, as it's shared between the outputs. Thus, if, say, the DSI driver
sets up DSI PLL and configures both the dispc and lcd clock sources to
that DSI PLL, the resulting dispc clock could be too low for, say, HDMI.
Thus the output drivers should really only be concerned about the lcd
clock, which is what the output drivers actually use. There's lot to do
to clean up the dss clock handling, but this patch takes one step
forward and removes the use of dss_select_dispc_clk_source() from the
output drivers.
After this patch, the output drivers only configure the lcd source
clock. On omap4+ the dispc src clock is never changed from the default
PRCM source. On omap3, where the dispc and lcd clocks are actually the
same, setting the lcd clock source sets the dispc clock source.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2012-10-22 20:58:36 +07:00
|
|
|
if (!dss_has_feature(FEAT_LCD_CLK_SRC)) {
|
|
|
|
dss_select_dispc_clk_source(clk_src);
|
2011-03-08 18:50:35 +07:00
|
|
|
return;
|
OMAPDSS: hide dss_select_dispc_clk_source()
dss.c currently exposes functions to configure the dispc source clock
and lcd source clock. There are configured separately from the output
drivers.
However, there is no safe way for the output drivers to handle dispc
clock, as it's shared between the outputs. Thus, if, say, the DSI driver
sets up DSI PLL and configures both the dispc and lcd clock sources to
that DSI PLL, the resulting dispc clock could be too low for, say, HDMI.
Thus the output drivers should really only be concerned about the lcd
clock, which is what the output drivers actually use. There's lot to do
to clean up the dss clock handling, but this patch takes one step
forward and removes the use of dss_select_dispc_clk_source() from the
output drivers.
After this patch, the output drivers only configure the lcd source
clock. On omap4+ the dispc src clock is never changed from the default
PRCM source. On omap3, where the dispc and lcd clocks are actually the
same, setting the lcd clock source sets the dispc clock source.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2012-10-22 20:58:36 +07:00
|
|
|
}
|
2011-03-08 18:50:35 +07:00
|
|
|
|
|
|
|
switch (clk_src) {
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_FCK:
|
2011-03-08 18:50:35 +07:00
|
|
|
b = 0;
|
|
|
|
break;
|
2011-04-12 15:22:23 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC:
|
2011-03-08 18:50:35 +07:00
|
|
|
BUG_ON(channel != OMAP_DSS_CHANNEL_LCD);
|
|
|
|
b = 1;
|
2011-05-12 18:56:26 +07:00
|
|
|
dsidev = dsi_get_dsidev_from_id(0);
|
|
|
|
dsi_wait_pll_hsdiv_dispc_active(dsidev);
|
2011-03-08 18:50:35 +07:00
|
|
|
break;
|
2011-05-12 18:56:29 +07:00
|
|
|
case OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC:
|
2012-06-29 12:13:13 +07:00
|
|
|
BUG_ON(channel != OMAP_DSS_CHANNEL_LCD2 &&
|
|
|
|
channel != OMAP_DSS_CHANNEL_LCD3);
|
2011-05-12 18:56:29 +07:00
|
|
|
b = 1;
|
|
|
|
dsidev = dsi_get_dsidev_from_id(1);
|
|
|
|
dsi_wait_pll_hsdiv_dispc_active(dsidev);
|
|
|
|
break;
|
2011-03-08 18:50:35 +07:00
|
|
|
default:
|
|
|
|
BUG();
|
2012-05-18 15:47:02 +07:00
|
|
|
return;
|
2011-03-08 18:50:35 +07:00
|
|
|
}
|
|
|
|
|
2012-06-29 12:13:13 +07:00
|
|
|
pos = channel == OMAP_DSS_CHANNEL_LCD ? 0 :
|
|
|
|
(channel == OMAP_DSS_CHANNEL_LCD2 ? 12 : 19);
|
2011-03-08 18:50:35 +07:00
|
|
|
REG_FLD_MOD(DSS_CONTROL, b, pos, pos); /* LCDx_CLK_SWITCH */
|
|
|
|
|
2012-06-29 12:13:13 +07:00
|
|
|
ix = channel == OMAP_DSS_CHANNEL_LCD ? 0 :
|
|
|
|
(channel == OMAP_DSS_CHANNEL_LCD2 ? 1 : 2);
|
2011-03-08 18:50:35 +07:00
|
|
|
dss.lcd_clk_source[ix] = clk_src;
|
|
|
|
}
|
|
|
|
|
2011-04-12 15:22:23 +07:00
|
|
|
enum omap_dss_clk_source dss_get_dispc_clk_source(void)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2010-01-08 23:00:36 +07:00
|
|
|
return dss.dispc_clk_source;
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
2011-05-12 18:56:29 +07:00
|
|
|
enum omap_dss_clk_source dss_get_dsi_clk_source(int dsi_module)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2011-05-12 18:56:29 +07:00
|
|
|
return dss.dsi_clk_source[dsi_module];
|
2009-11-03 16:23:50 +07:00
|
|
|
}
|
|
|
|
|
2011-04-12 15:22:23 +07:00
|
|
|
enum omap_dss_clk_source dss_get_lcd_clk_source(enum omap_channel channel)
|
2011-03-08 18:50:35 +07:00
|
|
|
{
|
2011-03-31 14:53:35 +07:00
|
|
|
if (dss_has_feature(FEAT_LCD_CLK_SRC)) {
|
2012-06-29 12:13:13 +07:00
|
|
|
int ix = channel == OMAP_DSS_CHANNEL_LCD ? 0 :
|
|
|
|
(channel == OMAP_DSS_CHANNEL_LCD2 ? 1 : 2);
|
2011-03-31 14:53:35 +07:00
|
|
|
return dss.lcd_clk_source[ix];
|
|
|
|
} else {
|
|
|
|
/* LCD_CLK source is the same as DISPC_FCLK source for
|
|
|
|
* OMAP2 and OMAP3 */
|
|
|
|
return dss.dispc_clk_source;
|
|
|
|
}
|
2011-03-08 18:50:35 +07:00
|
|
|
}
|
|
|
|
|
2013-10-31 21:41:57 +07:00
|
|
|
bool dss_div_calc(unsigned long pck, unsigned long fck_min,
|
|
|
|
dss_div_calc_func func, void *data)
|
2013-03-05 21:34:05 +07:00
|
|
|
{
|
|
|
|
int fckd, fckd_start, fckd_stop;
|
|
|
|
unsigned long fck;
|
|
|
|
unsigned long fck_hw_max;
|
|
|
|
unsigned long fckd_hw_max;
|
|
|
|
unsigned long prate;
|
2013-04-10 18:47:38 +07:00
|
|
|
unsigned m;
|
2013-03-05 21:34:05 +07:00
|
|
|
|
2013-10-31 21:42:13 +07:00
|
|
|
fck_hw_max = dss_feat_get_param_max(FEAT_PARAM_DSS_FCK);
|
|
|
|
|
2013-11-01 16:38:04 +07:00
|
|
|
if (dss.parent_clk == NULL) {
|
2013-10-31 21:42:13 +07:00
|
|
|
unsigned pckd;
|
|
|
|
|
|
|
|
pckd = fck_hw_max / pck;
|
|
|
|
|
|
|
|
fck = pck * pckd;
|
|
|
|
|
|
|
|
fck = clk_round_rate(dss.dss_clk, fck);
|
|
|
|
|
2013-10-31 19:44:23 +07:00
|
|
|
return func(fck, data);
|
2013-03-05 21:34:05 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
fckd_hw_max = dss.feat->fck_div_max;
|
|
|
|
|
2013-04-10 18:47:38 +07:00
|
|
|
m = dss.feat->dss_fck_multiplier;
|
2013-10-31 21:06:38 +07:00
|
|
|
prate = clk_get_rate(dss.parent_clk);
|
2013-03-05 21:34:05 +07:00
|
|
|
|
|
|
|
fck_min = fck_min ? fck_min : 1;
|
|
|
|
|
2013-04-10 18:47:38 +07:00
|
|
|
fckd_start = min(prate * m / fck_min, fckd_hw_max);
|
|
|
|
fckd_stop = max(DIV_ROUND_UP(prate * m, fck_hw_max), 1ul);
|
2013-03-05 21:34:05 +07:00
|
|
|
|
|
|
|
for (fckd = fckd_start; fckd >= fckd_stop; --fckd) {
|
2014-02-13 16:36:22 +07:00
|
|
|
fck = DIV_ROUND_UP(prate, fckd) * m;
|
2013-03-05 21:34:05 +07:00
|
|
|
|
2013-10-31 19:44:23 +07:00
|
|
|
if (func(fck, data))
|
2013-03-05 21:34:05 +07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-31 19:44:23 +07:00
|
|
|
int dss_set_fck_rate(unsigned long rate)
|
2009-11-03 16:23:50 +07:00
|
|
|
{
|
2013-10-31 21:06:38 +07:00
|
|
|
int r;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2013-10-31 21:06:38 +07:00
|
|
|
DSSDBG("set fck to %lu\n", rate);
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2013-10-31 21:06:38 +07:00
|
|
|
r = clk_set_rate(dss.dss_clk, rate);
|
|
|
|
if (r)
|
|
|
|
return r;
|
2009-11-03 16:23:50 +07:00
|
|
|
|
2012-12-12 15:37:03 +07:00
|
|
|
dss.dss_clk_rate = clk_get_rate(dss.dss_clk);
|
|
|
|
|
2013-10-31 19:44:23 +07:00
|
|
|
WARN_ONCE(dss.dss_clk_rate != rate,
|
2013-04-10 18:47:38 +07:00
|
|
|
"clk rate mismatch: %lu != %lu", dss.dss_clk_rate,
|
2013-10-31 19:44:23 +07:00
|
|
|
rate);
|
2009-11-03 16:23:50 +07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-12 15:37:03 +07:00
|
|
|
unsigned long dss_get_dispc_clk_rate(void)
|
|
|
|
{
|
|
|
|
return dss.dss_clk_rate;
|
|
|
|
}
|
|
|
|
|
2012-10-22 20:35:41 +07:00
|
|
|
static int dss_setup_default_clock(void)
|
|
|
|
{
|
|
|
|
unsigned long max_dss_fck, prate;
|
2013-10-31 19:44:23 +07:00
|
|
|
unsigned long fck;
|
2012-10-22 20:35:41 +07:00
|
|
|
unsigned fck_div;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
max_dss_fck = dss_feat_get_param_max(FEAT_PARAM_DSS_FCK);
|
|
|
|
|
2013-10-31 21:42:13 +07:00
|
|
|
if (dss.parent_clk == NULL) {
|
|
|
|
fck = clk_round_rate(dss.dss_clk, max_dss_fck);
|
|
|
|
} else {
|
|
|
|
prate = clk_get_rate(dss.parent_clk);
|
2012-10-22 20:35:41 +07:00
|
|
|
|
2013-10-31 21:42:13 +07:00
|
|
|
fck_div = DIV_ROUND_UP(prate * dss.feat->dss_fck_multiplier,
|
|
|
|
max_dss_fck);
|
2014-02-13 16:36:22 +07:00
|
|
|
fck = DIV_ROUND_UP(prate, fck_div) * dss.feat->dss_fck_multiplier;
|
2013-10-31 21:42:13 +07:00
|
|
|
}
|
2012-10-22 20:35:41 +07:00
|
|
|
|
2013-10-31 19:44:23 +07:00
|
|
|
r = dss_set_fck_rate(fck);
|
2012-10-22 20:35:41 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-03 16:23:50 +07:00
|
|
|
void dss_set_venc_output(enum omap_dss_venc_type type)
|
|
|
|
{
|
|
|
|
int l = 0;
|
|
|
|
|
|
|
|
if (type == OMAP_DSS_VENC_TYPE_COMPOSITE)
|
|
|
|
l = 0;
|
|
|
|
else if (type == OMAP_DSS_VENC_TYPE_SVIDEO)
|
|
|
|
l = 1;
|
|
|
|
else
|
|
|
|
BUG();
|
|
|
|
|
|
|
|
/* venc out selection. 0 = comp, 1 = svideo */
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, l, 6, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dss_set_dac_pwrdn_bgz(bool enable)
|
|
|
|
{
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, enable, 5, 5); /* DAC Power-Down Control */
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:56:40 +07:00
|
|
|
void dss_select_hdmi_venc_clk_source(enum dss_hdmi_venc_clk_source_select src)
|
2011-03-09 18:01:38 +07:00
|
|
|
{
|
2012-08-01 19:56:40 +07:00
|
|
|
enum omap_display_type dp;
|
|
|
|
dp = dss_feat_get_supported_displays(OMAP_DSS_CHANNEL_DIGIT);
|
|
|
|
|
|
|
|
/* Complain about invalid selections */
|
|
|
|
WARN_ON((src == DSS_VENC_TV_CLK) && !(dp & OMAP_DISPLAY_TYPE_VENC));
|
|
|
|
WARN_ON((src == DSS_HDMI_M_PCLK) && !(dp & OMAP_DISPLAY_TYPE_HDMI));
|
|
|
|
|
|
|
|
/* Select only if we have options */
|
|
|
|
if ((dp & OMAP_DISPLAY_TYPE_VENC) && (dp & OMAP_DISPLAY_TYPE_HDMI))
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, src, 15, 15); /* VENC_HDMI_SWITCH */
|
2011-03-09 18:01:38 +07:00
|
|
|
}
|
|
|
|
|
2011-08-31 18:33:31 +07:00
|
|
|
enum dss_hdmi_venc_clk_source_select dss_get_hdmi_venc_clk_source(void)
|
|
|
|
{
|
|
|
|
enum omap_display_type displays;
|
|
|
|
|
|
|
|
displays = dss_feat_get_supported_displays(OMAP_DSS_CHANNEL_DIGIT);
|
|
|
|
if ((displays & OMAP_DISPLAY_TYPE_HDMI) == 0)
|
|
|
|
return DSS_VENC_TV_CLK;
|
|
|
|
|
2012-08-01 19:56:40 +07:00
|
|
|
if ((displays & OMAP_DISPLAY_TYPE_VENC) == 0)
|
|
|
|
return DSS_HDMI_M_PCLK;
|
|
|
|
|
2011-08-31 18:33:31 +07:00
|
|
|
return REG_GET(DSS_CONTROL, 15, 15);
|
|
|
|
}
|
|
|
|
|
2012-09-21 16:09:54 +07:00
|
|
|
static int dss_dpi_select_source_omap2_omap3(enum omap_channel channel)
|
|
|
|
{
|
|
|
|
if (channel != OMAP_DSS_CHANNEL_LCD)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_dpi_select_source_omap4(enum omap_channel channel)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
switch (channel) {
|
|
|
|
case OMAP_DSS_CHANNEL_LCD2:
|
|
|
|
val = 0;
|
|
|
|
break;
|
|
|
|
case OMAP_DSS_CHANNEL_DIGIT:
|
|
|
|
val = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, val, 17, 17);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_dpi_select_source_omap5(enum omap_channel channel)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
switch (channel) {
|
|
|
|
case OMAP_DSS_CHANNEL_LCD:
|
|
|
|
val = 1;
|
|
|
|
break;
|
|
|
|
case OMAP_DSS_CHANNEL_LCD2:
|
|
|
|
val = 2;
|
|
|
|
break;
|
|
|
|
case OMAP_DSS_CHANNEL_LCD3:
|
|
|
|
val = 3;
|
|
|
|
break;
|
|
|
|
case OMAP_DSS_CHANNEL_DIGIT:
|
|
|
|
val = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, val, 17, 16);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dss_dpi_select_source(enum omap_channel channel)
|
|
|
|
{
|
|
|
|
return dss.feat->dpi_select_source(channel);
|
|
|
|
}
|
|
|
|
|
2011-01-24 13:21:58 +07:00
|
|
|
static int dss_get_clocks(void)
|
|
|
|
{
|
2011-05-27 14:52:19 +07:00
|
|
|
struct clk *clk;
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2013-04-08 15:55:00 +07:00
|
|
|
clk = devm_clk_get(&dss.pdev->dev, "fck");
|
2011-05-27 14:52:19 +07:00
|
|
|
if (IS_ERR(clk)) {
|
|
|
|
DSSERR("can't get clock fck\n");
|
2013-04-08 15:55:00 +07:00
|
|
|
return PTR_ERR(clk);
|
2011-03-01 15:42:14 +07:00
|
|
|
}
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
dss.dss_clk = clk;
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2013-11-01 16:38:04 +07:00
|
|
|
if (dss.feat->parent_clk_name) {
|
|
|
|
clk = clk_get(NULL, dss.feat->parent_clk_name);
|
2012-11-22 02:48:51 +07:00
|
|
|
if (IS_ERR(clk)) {
|
2013-11-01 16:38:04 +07:00
|
|
|
DSSERR("Failed to get %s\n", dss.feat->parent_clk_name);
|
2013-04-08 15:55:00 +07:00
|
|
|
return PTR_ERR(clk);
|
2012-11-22 02:48:51 +07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
clk = NULL;
|
2011-05-16 17:43:04 +07:00
|
|
|
}
|
|
|
|
|
2013-11-01 16:38:04 +07:00
|
|
|
dss.parent_clk = clk;
|
2011-05-16 17:43:04 +07:00
|
|
|
|
2011-01-24 13:21:58 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dss_put_clocks(void)
|
|
|
|
{
|
2013-11-01 16:38:04 +07:00
|
|
|
if (dss.parent_clk)
|
|
|
|
clk_put(dss.parent_clk);
|
2011-01-24 13:21:58 +07:00
|
|
|
}
|
|
|
|
|
2012-02-17 22:58:04 +07:00
|
|
|
static int dss_runtime_get(void)
|
2011-01-24 13:21:58 +07:00
|
|
|
{
|
2011-05-27 14:52:19 +07:00
|
|
|
int r;
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
DSSDBG("dss_runtime_get\n");
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
r = pm_runtime_get_sync(&dss.pdev->dev);
|
|
|
|
WARN_ON(r < 0);
|
|
|
|
return r < 0 ? r : 0;
|
2011-01-24 13:21:58 +07:00
|
|
|
}
|
|
|
|
|
2012-02-17 22:58:04 +07:00
|
|
|
static void dss_runtime_put(void)
|
2011-01-24 13:21:58 +07:00
|
|
|
{
|
2011-05-27 14:52:19 +07:00
|
|
|
int r;
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
DSSDBG("dss_runtime_put\n");
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2012-01-23 18:23:08 +07:00
|
|
|
r = pm_runtime_put_sync(&dss.pdev->dev);
|
2012-06-27 20:37:18 +07:00
|
|
|
WARN_ON(r < 0 && r != -ENOSYS && r != -EBUSY);
|
2011-01-24 13:21:58 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DEBUGFS */
|
2012-09-29 12:55:42 +07:00
|
|
|
#if defined(CONFIG_OMAP2_DSS_DEBUGFS)
|
2011-01-24 13:21:58 +07:00
|
|
|
void dss_debug_dump_clocks(struct seq_file *s)
|
|
|
|
{
|
|
|
|
dss_dump_clocks(s);
|
|
|
|
dispc_dump_clocks(s);
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_DSI
|
|
|
|
dsi_dump_clocks(s);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-21 16:03:31 +07:00
|
|
|
static const struct dss_features omap24xx_dss_feats __initconst = {
|
2013-11-01 16:26:43 +07:00
|
|
|
/*
|
|
|
|
* fck div max is really 16, but the divider range has gaps. The range
|
|
|
|
* from 1 to 6 has no gaps, so let's use that as a max.
|
|
|
|
*/
|
|
|
|
.fck_div_max = 6,
|
2012-09-21 16:03:31 +07:00
|
|
|
.dss_fck_multiplier = 2,
|
2013-10-31 21:06:38 +07:00
|
|
|
.parent_clk_name = "core_ck",
|
2012-09-21 16:09:54 +07:00
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap2_omap3,
|
2012-09-21 16:03:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dss_features omap34xx_dss_feats __initconst = {
|
|
|
|
.fck_div_max = 16,
|
|
|
|
.dss_fck_multiplier = 2,
|
2013-10-31 21:06:38 +07:00
|
|
|
.parent_clk_name = "dpll4_ck",
|
2012-09-21 16:09:54 +07:00
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap2_omap3,
|
2012-09-21 16:03:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dss_features omap3630_dss_feats __initconst = {
|
|
|
|
.fck_div_max = 32,
|
|
|
|
.dss_fck_multiplier = 1,
|
2013-10-31 21:06:38 +07:00
|
|
|
.parent_clk_name = "dpll4_ck",
|
2012-09-21 16:09:54 +07:00
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap2_omap3,
|
2012-09-21 16:03:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dss_features omap44xx_dss_feats __initconst = {
|
|
|
|
.fck_div_max = 32,
|
|
|
|
.dss_fck_multiplier = 1,
|
2013-10-31 21:06:38 +07:00
|
|
|
.parent_clk_name = "dpll_per_x2_ck",
|
2012-09-21 16:09:54 +07:00
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap4,
|
2012-09-21 16:03:31 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dss_features omap54xx_dss_feats __initconst = {
|
|
|
|
.fck_div_max = 64,
|
|
|
|
.dss_fck_multiplier = 1,
|
2013-10-31 21:06:38 +07:00
|
|
|
.parent_clk_name = "dpll_per_x2_ck",
|
2012-09-21 16:09:54 +07:00
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap5,
|
2012-09-21 16:03:31 +07:00
|
|
|
};
|
|
|
|
|
2014-03-24 18:01:51 +07:00
|
|
|
static const struct dss_features am43xx_dss_feats __initconst = {
|
|
|
|
.fck_div_max = 0,
|
|
|
|
.dss_fck_multiplier = 0,
|
|
|
|
.parent_clk_name = NULL,
|
|
|
|
.dpi_select_source = &dss_dpi_select_source_omap2_omap3,
|
|
|
|
};
|
|
|
|
|
2012-09-28 16:56:00 +07:00
|
|
|
static int __init dss_init_features(struct platform_device *pdev)
|
2012-07-11 20:06:18 +07:00
|
|
|
{
|
|
|
|
const struct dss_features *src;
|
|
|
|
struct dss_features *dst;
|
|
|
|
|
2012-09-28 16:56:00 +07:00
|
|
|
dst = devm_kzalloc(&pdev->dev, sizeof(*dst), GFP_KERNEL);
|
2012-07-11 20:06:18 +07:00
|
|
|
if (!dst) {
|
2012-09-28 16:56:00 +07:00
|
|
|
dev_err(&pdev->dev, "Failed to allocate local DSS Features\n");
|
2012-07-11 20:06:18 +07:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2012-10-18 17:46:29 +07:00
|
|
|
switch (omapdss_get_version()) {
|
2012-09-28 16:56:00 +07:00
|
|
|
case OMAPDSS_VER_OMAP24xx:
|
2012-07-11 20:06:18 +07:00
|
|
|
src = &omap24xx_dss_feats;
|
2012-09-28 16:56:00 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAPDSS_VER_OMAP34xx_ES1:
|
|
|
|
case OMAPDSS_VER_OMAP34xx_ES3:
|
|
|
|
case OMAPDSS_VER_AM35xx:
|
2012-07-11 20:06:18 +07:00
|
|
|
src = &omap34xx_dss_feats;
|
2012-09-28 16:56:00 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAPDSS_VER_OMAP3630:
|
2012-07-11 20:06:18 +07:00
|
|
|
src = &omap3630_dss_feats;
|
2012-09-28 16:56:00 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAPDSS_VER_OMAP4430_ES1:
|
|
|
|
case OMAPDSS_VER_OMAP4430_ES2:
|
|
|
|
case OMAPDSS_VER_OMAP4:
|
2012-07-11 20:06:18 +07:00
|
|
|
src = &omap44xx_dss_feats;
|
2012-09-28 16:56:00 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAPDSS_VER_OMAP5:
|
2012-04-08 18:17:01 +07:00
|
|
|
src = &omap54xx_dss_feats;
|
2012-09-28 16:56:00 +07:00
|
|
|
break;
|
|
|
|
|
2014-03-24 18:01:51 +07:00
|
|
|
case OMAPDSS_VER_AM43xx:
|
|
|
|
src = &am43xx_dss_feats;
|
|
|
|
break;
|
|
|
|
|
2012-09-28 16:56:00 +07:00
|
|
|
default:
|
2012-07-11 20:06:18 +07:00
|
|
|
return -ENODEV;
|
2012-09-28 16:56:00 +07:00
|
|
|
}
|
2012-07-11 20:06:18 +07:00
|
|
|
|
|
|
|
memcpy(dst, src, sizeof(*dst));
|
|
|
|
dss.feat = dst;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-20 16:55:02 +07:00
|
|
|
static int __init dss_init_ports(struct platform_device *pdev)
|
2013-12-16 20:13:24 +07:00
|
|
|
{
|
|
|
|
struct device_node *parent = pdev->dev.of_node;
|
|
|
|
struct device_node *port;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (parent == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
port = omapdss_of_get_next_port(parent, NULL);
|
2014-05-08 16:15:12 +07:00
|
|
|
if (!port)
|
2013-12-16 20:13:24 +07:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
r = of_property_read_u32(port, "reg", ®);
|
|
|
|
if (r)
|
|
|
|
reg = 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_DPI
|
|
|
|
if (reg == 0)
|
|
|
|
dpi_init_port(pdev, port);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_SDI
|
|
|
|
if (reg == 1)
|
|
|
|
sdi_init_port(pdev, port);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} while ((port = omapdss_of_get_next_port(parent, port)) != NULL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-01 14:17:44 +07:00
|
|
|
static void __exit dss_uninit_ports(struct platform_device *pdev)
|
2013-12-16 20:13:24 +07:00
|
|
|
{
|
2014-06-02 15:41:51 +07:00
|
|
|
struct device_node *parent = pdev->dev.of_node;
|
|
|
|
struct device_node *port;
|
|
|
|
|
|
|
|
if (parent == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
port = omapdss_of_get_next_port(parent, NULL);
|
|
|
|
if (!port)
|
|
|
|
return;
|
|
|
|
|
2013-12-16 20:13:24 +07:00
|
|
|
#ifdef CONFIG_OMAP2_DSS_DPI
|
2014-06-02 15:41:51 +07:00
|
|
|
dpi_uninit_port(port);
|
2013-12-16 20:13:24 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_SDI
|
|
|
|
sdi_uninit_port();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-01-24 13:21:57 +07:00
|
|
|
/* DSS HW IP initialisation */
|
2012-02-17 22:41:13 +07:00
|
|
|
static int __init omap_dsshw_probe(struct platform_device *pdev)
|
2011-01-24 13:21:57 +07:00
|
|
|
{
|
2011-05-16 17:52:51 +07:00
|
|
|
struct resource *dss_mem;
|
|
|
|
u32 rev;
|
2011-01-24 13:21:57 +07:00
|
|
|
int r;
|
|
|
|
|
|
|
|
dss.pdev = pdev;
|
|
|
|
|
2012-09-28 16:56:00 +07:00
|
|
|
r = dss_init_features(dss.pdev);
|
2012-07-11 20:06:18 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2011-05-16 17:52:51 +07:00
|
|
|
dss_mem = platform_get_resource(dss.pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (!dss_mem) {
|
|
|
|
DSSERR("can't get IORESOURCE_MEM DSS\n");
|
2012-01-25 18:31:04 +07:00
|
|
|
return -EINVAL;
|
2011-05-16 17:52:51 +07:00
|
|
|
}
|
2012-01-25 18:31:04 +07:00
|
|
|
|
2012-01-24 20:00:45 +07:00
|
|
|
dss.base = devm_ioremap(&pdev->dev, dss_mem->start,
|
|
|
|
resource_size(dss_mem));
|
2011-05-16 17:52:51 +07:00
|
|
|
if (!dss.base) {
|
|
|
|
DSSERR("can't ioremap DSS\n");
|
2012-01-25 18:31:04 +07:00
|
|
|
return -ENOMEM;
|
2011-05-16 17:52:51 +07:00
|
|
|
}
|
|
|
|
|
2011-01-24 13:21:58 +07:00
|
|
|
r = dss_get_clocks();
|
|
|
|
if (r)
|
2012-01-25 18:31:04 +07:00
|
|
|
return r;
|
2011-01-24 13:21:58 +07:00
|
|
|
|
2012-10-22 20:35:41 +07:00
|
|
|
r = dss_setup_default_clock();
|
|
|
|
if (r)
|
|
|
|
goto err_setup_clocks;
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
pm_runtime_enable(&pdev->dev);
|
2011-05-16 17:52:51 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
r = dss_runtime_get();
|
|
|
|
if (r)
|
|
|
|
goto err_runtime_get;
|
2011-05-16 17:52:51 +07:00
|
|
|
|
2012-12-12 15:37:03 +07:00
|
|
|
dss.dss_clk_rate = clk_get_rate(dss.dss_clk);
|
|
|
|
|
2011-05-16 17:52:51 +07:00
|
|
|
/* Select DPLL */
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, 0, 0, 0);
|
|
|
|
|
OMAPDSS: hide dss_select_dispc_clk_source()
dss.c currently exposes functions to configure the dispc source clock
and lcd source clock. There are configured separately from the output
drivers.
However, there is no safe way for the output drivers to handle dispc
clock, as it's shared between the outputs. Thus, if, say, the DSI driver
sets up DSI PLL and configures both the dispc and lcd clock sources to
that DSI PLL, the resulting dispc clock could be too low for, say, HDMI.
Thus the output drivers should really only be concerned about the lcd
clock, which is what the output drivers actually use. There's lot to do
to clean up the dss clock handling, but this patch takes one step
forward and removes the use of dss_select_dispc_clk_source() from the
output drivers.
After this patch, the output drivers only configure the lcd source
clock. On omap4+ the dispc src clock is never changed from the default
PRCM source. On omap3, where the dispc and lcd clocks are actually the
same, setting the lcd clock source sets the dispc clock source.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2012-10-22 20:58:36 +07:00
|
|
|
dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK);
|
|
|
|
|
2011-05-16 17:52:51 +07:00
|
|
|
#ifdef CONFIG_OMAP2_DSS_VENC
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, 1, 4, 4); /* venc dac demen */
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, 1, 3, 3); /* venc clock 4x enable */
|
|
|
|
REG_FLD_MOD(DSS_CONTROL, 0, 2, 2); /* venc clock mode = normal */
|
|
|
|
#endif
|
|
|
|
dss.dsi_clk_source[0] = OMAP_DSS_CLK_SRC_FCK;
|
|
|
|
dss.dsi_clk_source[1] = OMAP_DSS_CLK_SRC_FCK;
|
|
|
|
dss.dispc_clk_source = OMAP_DSS_CLK_SRC_FCK;
|
|
|
|
dss.lcd_clk_source[0] = OMAP_DSS_CLK_SRC_FCK;
|
|
|
|
dss.lcd_clk_source[1] = OMAP_DSS_CLK_SRC_FCK;
|
2011-01-24 13:21:57 +07:00
|
|
|
|
2013-12-16 20:13:24 +07:00
|
|
|
dss_init_ports(pdev);
|
|
|
|
|
2011-05-16 17:52:51 +07:00
|
|
|
rev = dss_read_reg(DSS_REVISION);
|
|
|
|
printk(KERN_INFO "OMAP DSS rev %d.%d\n",
|
|
|
|
FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0));
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
dss_runtime_put();
|
2011-05-16 17:52:51 +07:00
|
|
|
|
2012-03-02 23:01:07 +07:00
|
|
|
dss_debugfs_create_file("dss", dss_dump_regs);
|
|
|
|
|
2011-01-24 13:21:58 +07:00
|
|
|
return 0;
|
2012-02-20 21:57:37 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
err_runtime_get:
|
|
|
|
pm_runtime_disable(&pdev->dev);
|
2012-10-22 20:35:41 +07:00
|
|
|
err_setup_clocks:
|
2011-01-24 13:21:58 +07:00
|
|
|
dss_put_clocks();
|
2011-01-24 13:21:57 +07:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-02-17 22:41:13 +07:00
|
|
|
static int __exit omap_dsshw_remove(struct platform_device *pdev)
|
2011-01-24 13:21:57 +07:00
|
|
|
{
|
2014-06-01 14:17:44 +07:00
|
|
|
dss_uninit_ports(pdev);
|
2013-12-16 20:13:24 +07:00
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
pm_runtime_disable(&pdev->dev);
|
2011-01-24 13:21:58 +07:00
|
|
|
|
|
|
|
dss_put_clocks();
|
2011-05-16 17:52:51 +07:00
|
|
|
|
2011-01-24 13:21:57 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-27 14:52:19 +07:00
|
|
|
static int dss_runtime_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
dss_save_context();
|
2012-03-08 17:52:38 +07:00
|
|
|
dss_set_min_bus_tput(dev, 0);
|
2011-05-27 14:52:19 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_runtime_resume(struct device *dev)
|
|
|
|
{
|
2012-03-08 17:52:38 +07:00
|
|
|
int r;
|
|
|
|
/*
|
|
|
|
* Set an arbitrarily high tput request to ensure OPP100.
|
|
|
|
* What we should really do is to make a request to stay in OPP100,
|
|
|
|
* without any tput requirements, but that is not currently possible
|
|
|
|
* via the PM layer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
r = dss_set_min_bus_tput(dev, 1000000000);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2011-05-26 18:54:05 +07:00
|
|
|
dss_restore_context();
|
2011-05-27 14:52:19 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct dev_pm_ops dss_pm_ops = {
|
|
|
|
.runtime_suspend = dss_runtime_suspend,
|
|
|
|
.runtime_resume = dss_runtime_resume,
|
|
|
|
};
|
|
|
|
|
2013-12-16 20:13:24 +07:00
|
|
|
static const struct of_device_id dss_of_match[] = {
|
|
|
|
{ .compatible = "ti,omap2-dss", },
|
|
|
|
{ .compatible = "ti,omap3-dss", },
|
|
|
|
{ .compatible = "ti,omap4-dss", },
|
2014-04-16 17:16:43 +07:00
|
|
|
{ .compatible = "ti,omap5-dss", },
|
2013-12-16 20:13:24 +07:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(of, dss_of_match);
|
|
|
|
|
2011-01-24 13:21:57 +07:00
|
|
|
static struct platform_driver omap_dsshw_driver = {
|
2012-02-17 22:41:13 +07:00
|
|
|
.remove = __exit_p(omap_dsshw_remove),
|
2011-01-24 13:21:57 +07:00
|
|
|
.driver = {
|
|
|
|
.name = "omapdss_dss",
|
|
|
|
.owner = THIS_MODULE,
|
2011-05-27 14:52:19 +07:00
|
|
|
.pm = &dss_pm_ops,
|
2013-12-16 20:13:24 +07:00
|
|
|
.of_match_table = dss_of_match,
|
2014-10-16 13:54:25 +07:00
|
|
|
.suppress_bind_attrs = true,
|
2011-01-24 13:21:57 +07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-02-17 22:41:13 +07:00
|
|
|
int __init dss_init_platform_driver(void)
|
2011-01-24 13:21:57 +07:00
|
|
|
{
|
2012-03-07 17:53:18 +07:00
|
|
|
return platform_driver_probe(&omap_dsshw_driver, omap_dsshw_probe);
|
2011-01-24 13:21:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void dss_uninit_platform_driver(void)
|
|
|
|
{
|
2012-02-23 20:32:37 +07:00
|
|
|
platform_driver_unregister(&omap_dsshw_driver);
|
2011-01-24 13:21:57 +07:00
|
|
|
}
|