2011-01-24 06:21:54 +00:00
|
|
|
/*
|
|
|
|
* OMAP2plus display device setup / initialization.
|
|
|
|
*
|
2020-07-19 10:30:33 +00:00
|
|
|
* Copyright (C) 2010 Texas Instruments Incorporated - https://www.ti.com/
|
2011-01-24 06:21:54 +00:00
|
|
|
* Senthilvadivu Guruswamy
|
|
|
|
* Sumit Semwal
|
|
|
|
*
|
|
|
|
* 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 "as is" WITHOUT ANY WARRANTY of any
|
|
|
|
* kind, whether express or implied; without even the implied warranty
|
|
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2011-07-31 14:52:44 +00:00
|
|
|
#include <linux/string.h>
|
2011-01-24 06:21:54 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/err.h>
|
2011-12-06 16:50:42 +00:00
|
|
|
#include <linux/delay.h>
|
2013-03-18 13:50:25 +00:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_platform.h>
|
ARM: OMAP2+: DT 'compatible' tweak for displays
As there is no common panel framework in the kernel, we have OMAP
specific panel drivers. However, the DT data should be generic. This
brings the issue that some other platform could use the same panels, and
would need to create a driver with the same 'compatible' string as the
OMAP driver.
In the long run, we have to get a common panel framework. For the time
being, this patch solves the issue:
At early boot time, we go through the DT nodes looking for the panels
the kernel supports for OMAP. For each found node, the 'compatible'
string is prepended with "omapdss,", i.e. "sony,acx565akm" becomes
"omapdss,sony,acx565akm". The OMAP display drivers all have "omapdss,"
at the beginning of their compatible field.
This allows us to have generic DT data, but OMAP specific display
drivers.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Archit Taneja <archit@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
2013-12-19 10:34:19 +00:00
|
|
|
#include <linux/slab.h>
|
2015-02-19 10:42:59 +00:00
|
|
|
#include <linux/mfd/syscon.h>
|
|
|
|
#include <linux/regmap.h>
|
2011-01-24 06:21:54 +00:00
|
|
|
|
2016-05-25 14:53:30 +00:00
|
|
|
#include <linux/platform_data/omapdss.h>
|
2012-10-03 00:41:35 +00:00
|
|
|
#include "omap_hwmod.h"
|
2012-10-03 00:25:48 +00:00
|
|
|
#include "omap_device.h"
|
2011-12-06 16:50:42 +00:00
|
|
|
#include "common.h"
|
2011-01-24 06:21:54 +00:00
|
|
|
|
2012-10-05 20:25:59 +00:00
|
|
|
#include "soc.h"
|
2012-02-24 18:34:35 +00:00
|
|
|
#include "iomap.h"
|
2011-06-15 12:22:47 +00:00
|
|
|
#include "control.h"
|
2011-10-07 00:04:08 +00:00
|
|
|
#include "display.h"
|
2012-10-30 02:57:44 +00:00
|
|
|
#include "prm.h"
|
2011-10-07 00:04:08 +00:00
|
|
|
|
|
|
|
#define DISPC_CONTROL 0x0040
|
|
|
|
#define DISPC_CONTROL2 0x0238
|
2012-06-28 09:44:02 +00:00
|
|
|
#define DISPC_CONTROL3 0x0848
|
2011-10-07 00:04:08 +00:00
|
|
|
#define DISPC_IRQSTATUS 0x0018
|
|
|
|
|
|
|
|
#define DSS_CONTROL 0x40
|
|
|
|
#define DSS_SDI_CONTROL 0x44
|
|
|
|
#define DSS_PLL_CONTROL 0x48
|
|
|
|
|
|
|
|
#define LCD_EN_MASK (0x1 << 0)
|
|
|
|
#define DIGIT_EN_MASK (0x1 << 1)
|
|
|
|
|
|
|
|
#define FRAMEDONE_IRQ_SHIFT 0
|
|
|
|
#define EVSYNC_EVEN_IRQ_SHIFT 2
|
|
|
|
#define EVSYNC_ODD_IRQ_SHIFT 3
|
|
|
|
#define FRAMEDONE2_IRQ_SHIFT 22
|
2012-06-28 09:44:02 +00:00
|
|
|
#define FRAMEDONE3_IRQ_SHIFT 30
|
2011-10-07 00:04:08 +00:00
|
|
|
#define FRAMEDONETV_IRQ_SHIFT 24
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC
|
|
|
|
* reset before deciding that something has gone wrong
|
|
|
|
*/
|
|
|
|
#define FRAMEDONE_IRQ_TIMEOUT 100
|
2011-06-15 12:22:47 +00:00
|
|
|
|
2017-08-11 13:49:11 +00:00
|
|
|
#if defined(CONFIG_FB_OMAP2)
|
2011-01-24 06:21:54 +00:00
|
|
|
static struct platform_device omap_display_device = {
|
|
|
|
.name = "omapdss",
|
|
|
|
.id = -1,
|
|
|
|
.dev = {
|
|
|
|
.platform_data = NULL,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2015-02-19 10:42:59 +00:00
|
|
|
#define OMAP4_DSIPHY_SYSCON_OFFSET 0x78
|
|
|
|
|
|
|
|
static struct regmap *omap4_dsi_mux_syscon;
|
|
|
|
|
2013-12-16 07:14:48 +00:00
|
|
|
static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
|
|
|
|
{
|
|
|
|
u32 enable_mask, enable_shift;
|
|
|
|
u32 pipd_mask, pipd_shift;
|
|
|
|
u32 reg;
|
2019-01-26 06:32:20 +00:00
|
|
|
int ret;
|
2013-12-16 07:14:48 +00:00
|
|
|
|
|
|
|
if (dsi_id == 0) {
|
|
|
|
enable_mask = OMAP4_DSI1_LANEENABLE_MASK;
|
|
|
|
enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT;
|
|
|
|
pipd_mask = OMAP4_DSI1_PIPD_MASK;
|
|
|
|
pipd_shift = OMAP4_DSI1_PIPD_SHIFT;
|
|
|
|
} else if (dsi_id == 1) {
|
|
|
|
enable_mask = OMAP4_DSI2_LANEENABLE_MASK;
|
|
|
|
enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT;
|
|
|
|
pipd_mask = OMAP4_DSI2_PIPD_MASK;
|
|
|
|
pipd_shift = OMAP4_DSI2_PIPD_SHIFT;
|
|
|
|
} else {
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2019-01-26 06:32:20 +00:00
|
|
|
ret = regmap_read(omap4_dsi_mux_syscon,
|
|
|
|
OMAP4_DSIPHY_SYSCON_OFFSET,
|
|
|
|
®);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-12-16 07:14:48 +00:00
|
|
|
|
|
|
|
reg &= ~enable_mask;
|
|
|
|
reg &= ~pipd_mask;
|
|
|
|
|
|
|
|
reg |= (lanes << enable_shift) & enable_mask;
|
|
|
|
reg |= (lanes << pipd_shift) & pipd_mask;
|
|
|
|
|
2015-02-19 10:42:59 +00:00
|
|
|
regmap_write(omap4_dsi_mux_syscon, OMAP4_DSIPHY_SYSCON_OFFSET, reg);
|
2013-12-16 07:14:48 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:03:15 +00:00
|
|
|
static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
|
2011-06-15 12:21:12 +00:00
|
|
|
{
|
2013-12-16 07:14:48 +00:00
|
|
|
if (cpu_is_omap44xx())
|
|
|
|
return omap4_dsi_mux_pads(dsi_id, lane_mask);
|
|
|
|
|
2011-06-15 12:21:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:03:15 +00:00
|
|
|
static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
|
2011-06-15 12:21:12 +00:00
|
|
|
{
|
2013-12-16 07:14:48 +00:00
|
|
|
if (cpu_is_omap44xx())
|
|
|
|
omap4_dsi_mux_pads(dsi_id, 0);
|
2011-06-15 12:21:12 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 09:42:28 +00:00
|
|
|
static enum omapdss_version __init omap_display_get_version(void)
|
|
|
|
{
|
|
|
|
if (cpu_is_omap24xx())
|
|
|
|
return OMAPDSS_VER_OMAP24xx;
|
|
|
|
else if (cpu_is_omap3630())
|
|
|
|
return OMAPDSS_VER_OMAP3630;
|
|
|
|
else if (cpu_is_omap34xx()) {
|
|
|
|
if (soc_is_am35xx()) {
|
|
|
|
return OMAPDSS_VER_AM35xx;
|
|
|
|
} else {
|
|
|
|
if (omap_rev() < OMAP3430_REV_ES3_0)
|
|
|
|
return OMAPDSS_VER_OMAP34xx_ES1;
|
|
|
|
else
|
|
|
|
return OMAPDSS_VER_OMAP34xx_ES3;
|
|
|
|
}
|
|
|
|
} else if (omap_rev() == OMAP4430_REV_ES1_0)
|
|
|
|
return OMAPDSS_VER_OMAP4430_ES1;
|
|
|
|
else if (omap_rev() == OMAP4430_REV_ES2_0 ||
|
|
|
|
omap_rev() == OMAP4430_REV_ES2_1 ||
|
|
|
|
omap_rev() == OMAP4430_REV_ES2_2)
|
|
|
|
return OMAPDSS_VER_OMAP4430_ES2;
|
|
|
|
else if (cpu_is_omap44xx())
|
|
|
|
return OMAPDSS_VER_OMAP4;
|
|
|
|
else if (soc_is_omap54xx())
|
|
|
|
return OMAPDSS_VER_OMAP5;
|
2014-03-24 11:01:51 +00:00
|
|
|
else if (soc_is_am43xx())
|
|
|
|
return OMAPDSS_VER_AM43xx;
|
2014-04-21 10:38:47 +00:00
|
|
|
else if (soc_is_dra7xx())
|
|
|
|
return OMAPDSS_VER_DRA7xx;
|
2012-09-28 09:42:28 +00:00
|
|
|
else
|
|
|
|
return OMAPDSS_VER_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2017-08-11 13:49:11 +00:00
|
|
|
static int __init omapdss_init_fbdev(void)
|
|
|
|
{
|
|
|
|
static struct omap_dss_board_info board_data = {
|
|
|
|
.dsi_enable_pads = omap_dsi_enable_pads,
|
|
|
|
.dsi_disable_pads = omap_dsi_disable_pads,
|
|
|
|
};
|
|
|
|
struct device_node *node;
|
2017-08-23 13:28:19 +00:00
|
|
|
int r;
|
2017-08-11 13:49:11 +00:00
|
|
|
|
|
|
|
board_data.version = omap_display_get_version();
|
|
|
|
if (board_data.version == OMAPDSS_VER_UNKNOWN) {
|
|
|
|
pr_err("DSS not supported on this SoC\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
omap_display_device.dev.platform_data = &board_data;
|
|
|
|
|
|
|
|
r = platform_device_register(&omap_display_device);
|
|
|
|
if (r < 0) {
|
|
|
|
pr_err("Unable to register omapdss device\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create vrfb device */
|
|
|
|
r = omap_init_vrfb();
|
|
|
|
if (r < 0) {
|
|
|
|
pr_err("Unable to register omapvrfb device\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create FB device */
|
|
|
|
r = omap_init_fb();
|
|
|
|
if (r < 0) {
|
|
|
|
pr_err("Unable to register omapfb device\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create V4L2 display device */
|
|
|
|
r = omap_init_vout();
|
|
|
|
if (r < 0) {
|
|
|
|
pr_err("Unable to register omap_vout device\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add DSI info for omap4 */
|
|
|
|
node = of_find_node_by_name(NULL, "omap4_padconf_global");
|
|
|
|
if (node)
|
|
|
|
omap4_dsi_mux_syscon = syscon_node_to_regmap(node);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-10 11:16:51 +00:00
|
|
|
|
|
|
|
static const char * const omapdss_compat_names[] __initconst = {
|
|
|
|
"ti,omap2-dss",
|
|
|
|
"ti,omap3-dss",
|
|
|
|
"ti,omap4-dss",
|
|
|
|
"ti,omap5-dss",
|
|
|
|
"ti,dra7-dss",
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct device_node * __init omapdss_find_dss_of_node(void)
|
2017-08-11 13:49:11 +00:00
|
|
|
{
|
2018-11-10 11:16:51 +00:00
|
|
|
struct device_node *node;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(omapdss_compat_names); ++i) {
|
|
|
|
node = of_find_compatible_node(NULL, NULL,
|
|
|
|
omapdss_compat_names[i]);
|
|
|
|
if (node)
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2017-08-11 13:49:11 +00:00
|
|
|
}
|
2018-11-10 11:16:51 +00:00
|
|
|
|
|
|
|
static int __init omapdss_init_of(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct device_node *node;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
|
|
|
|
/* only create dss helper devices if dss is enabled in the .dts */
|
|
|
|
|
|
|
|
node = omapdss_find_dss_of_node();
|
|
|
|
if (!node)
|
|
|
|
return 0;
|
|
|
|
|
2019-02-23 13:20:42 +00:00
|
|
|
if (!of_device_is_available(node)) {
|
|
|
|
of_node_put(node);
|
2018-11-10 11:16:51 +00:00
|
|
|
return 0;
|
2019-02-23 13:20:42 +00:00
|
|
|
}
|
2018-11-10 11:16:51 +00:00
|
|
|
|
|
|
|
pdev = of_find_device_by_node(node);
|
|
|
|
|
|
|
|
if (!pdev) {
|
|
|
|
pr_err("Unable to find DSS platform device\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = of_platform_populate(node, NULL, NULL, &pdev->dev);
|
2021-11-16 06:27:26 +00:00
|
|
|
put_device(&pdev->dev);
|
2018-11-10 11:16:51 +00:00
|
|
|
if (r) {
|
|
|
|
pr_err("Unable to populate DSS submodule devices\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return omapdss_init_fbdev();
|
|
|
|
}
|
|
|
|
omap_device_initcall(omapdss_init_of);
|
2017-08-11 13:49:11 +00:00
|
|
|
#endif /* CONFIG_FB_OMAP2 */
|
|
|
|
|
2011-10-07 00:04:08 +00:00
|
|
|
static void dispc_disable_outputs(void)
|
|
|
|
{
|
|
|
|
u32 v, irq_mask = 0;
|
2012-06-28 09:44:02 +00:00
|
|
|
bool lcd_en, digit_en, lcd2_en = false, lcd3_en = false;
|
2011-10-07 00:04:08 +00:00
|
|
|
int i;
|
|
|
|
struct omap_dss_dispc_dev_attr *da;
|
|
|
|
struct omap_hwmod *oh;
|
|
|
|
|
|
|
|
oh = omap_hwmod_lookup("dss_dispc");
|
|
|
|
if (!oh) {
|
|
|
|
WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!oh->dev_attr) {
|
|
|
|
pr_err("display: could not disable outputs during reset due to missing dev_attr\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr;
|
|
|
|
|
|
|
|
/* store value of LCDENABLE and DIGITENABLE bits */
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL);
|
|
|
|
lcd_en = v & LCD_EN_MASK;
|
|
|
|
digit_en = v & DIGIT_EN_MASK;
|
|
|
|
|
|
|
|
/* store value of LCDENABLE for LCD2 */
|
|
|
|
if (da->manager_count > 2) {
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL2);
|
|
|
|
lcd2_en = v & LCD_EN_MASK;
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:44:02 +00:00
|
|
|
/* store value of LCDENABLE for LCD3 */
|
|
|
|
if (da->manager_count > 3) {
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL3);
|
|
|
|
lcd3_en = v & LCD_EN_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(lcd_en | digit_en | lcd2_en | lcd3_en))
|
2011-10-07 00:04:08 +00:00
|
|
|
return; /* no managers currently enabled */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If any manager was enabled, we need to disable it before
|
|
|
|
* DSS clocks are disabled or DISPC module is reset
|
|
|
|
*/
|
|
|
|
if (lcd_en)
|
|
|
|
irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT;
|
|
|
|
|
|
|
|
if (digit_en) {
|
|
|
|
if (da->has_framedonetv_irq) {
|
|
|
|
irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT;
|
|
|
|
} else {
|
|
|
|
irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT |
|
|
|
|
1 << EVSYNC_ODD_IRQ_SHIFT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lcd2_en)
|
|
|
|
irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT;
|
2012-06-28 09:44:02 +00:00
|
|
|
if (lcd3_en)
|
|
|
|
irq_mask |= 1 << FRAMEDONE3_IRQ_SHIFT;
|
2011-10-07 00:04:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* clear any previous FRAMEDONE, FRAMEDONETV,
|
2012-06-28 09:44:02 +00:00
|
|
|
* EVSYNC_EVEN/ODD, FRAMEDONE2 or FRAMEDONE3 interrupts
|
2011-10-07 00:04:08 +00:00
|
|
|
*/
|
|
|
|
omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS);
|
|
|
|
|
|
|
|
/* disable LCD and TV managers */
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL);
|
|
|
|
v &= ~(LCD_EN_MASK | DIGIT_EN_MASK);
|
|
|
|
omap_hwmod_write(v, oh, DISPC_CONTROL);
|
|
|
|
|
|
|
|
/* disable LCD2 manager */
|
|
|
|
if (da->manager_count > 2) {
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL2);
|
|
|
|
v &= ~LCD_EN_MASK;
|
|
|
|
omap_hwmod_write(v, oh, DISPC_CONTROL2);
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:44:02 +00:00
|
|
|
/* disable LCD3 manager */
|
|
|
|
if (da->manager_count > 3) {
|
|
|
|
v = omap_hwmod_read(oh, DISPC_CONTROL3);
|
|
|
|
v &= ~LCD_EN_MASK;
|
|
|
|
omap_hwmod_write(v, oh, DISPC_CONTROL3);
|
|
|
|
}
|
|
|
|
|
2011-10-07 00:04:08 +00:00
|
|
|
i = 0;
|
|
|
|
while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) !=
|
|
|
|
irq_mask) {
|
|
|
|
i++;
|
|
|
|
if (i > FRAMEDONE_IRQ_TIMEOUT) {
|
2012-06-28 09:44:02 +00:00
|
|
|
pr_err("didn't get FRAMEDONE1/2/3 or TV interrupt\n");
|
2011-10-07 00:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
mdelay(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-08 10:16:13 +00:00
|
|
|
int omap_dss_reset(struct omap_hwmod *oh)
|
|
|
|
{
|
|
|
|
struct omap_hwmod_opt_clk *oc;
|
|
|
|
int c = 0;
|
|
|
|
int i, r;
|
|
|
|
|
|
|
|
if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) {
|
|
|
|
pr_err("dss_core: hwmod data doesn't contain reset data\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
|
2020-11-04 06:45:05 +00:00
|
|
|
clk_prepare_enable(oc->_clk);
|
2011-11-08 10:16:13 +00:00
|
|
|
|
2011-10-07 00:04:08 +00:00
|
|
|
dispc_disable_outputs();
|
|
|
|
|
|
|
|
/* clear SDI registers */
|
|
|
|
if (cpu_is_omap3430()) {
|
|
|
|
omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL);
|
|
|
|
omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* clear DSS_CONTROL register to switch DSS clock sources to
|
|
|
|
* PRCM clock, if any
|
|
|
|
*/
|
|
|
|
omap_hwmod_write(0x0, oh, DSS_CONTROL);
|
|
|
|
|
2011-11-08 10:16:13 +00:00
|
|
|
omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs)
|
|
|
|
& SYSS_RESETDONE_MASK),
|
|
|
|
MAX_MODULE_SOFTRESET_WAIT, c);
|
|
|
|
|
|
|
|
if (c == MAX_MODULE_SOFTRESET_WAIT)
|
2014-09-13 18:31:16 +00:00
|
|
|
pr_warn("dss_core: waiting for reset to finish failed\n");
|
2011-11-08 10:16:13 +00:00
|
|
|
else
|
|
|
|
pr_debug("dss_core: softreset done\n");
|
|
|
|
|
|
|
|
for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
|
2020-11-04 06:45:05 +00:00
|
|
|
clk_disable_unprepare(oc->_clk);
|
2011-11-08 10:16:13 +00:00
|
|
|
|
|
|
|
r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|