parent
f37c24d35f
commit
c00fd42353
@ -0,0 +1,34 @@ |
||||
Index: linux-3.1/drivers/video/omap/dispc.c
|
||||
===================================================================
|
||||
--- linux-3.1.orig/drivers/video/omap/dispc.c 2011-10-30 21:14:30.228268542 +0100
|
||||
+++ linux-3.1/drivers/video/omap/dispc.c 2011-10-30 21:14:49.416119695 +0100
|
||||
@@ -922,14 +922,14 @@ static int get_dss_clocks(void)
|
||||
return PTR_ERR(dispc.dss_ick);
|
||||
}
|
||||
|
||||
- dispc.dss1_fck = clk_get(&dispc.fbdev->dssdev->dev, "fck");
|
||||
+ dispc.dss1_fck = clk_get(&dispc.fbdev->dssdev->dev, "dss1_fck");
|
||||
if (IS_ERR(dispc.dss1_fck)) {
|
||||
dev_err(dispc.fbdev->dev, "can't get dss1_fck\n");
|
||||
clk_put(dispc.dss_ick);
|
||||
return PTR_ERR(dispc.dss1_fck);
|
||||
}
|
||||
|
||||
- dispc.dss_54m_fck = clk_get(&dispc.fbdev->dssdev->dev, "tv_clk");
|
||||
+ dispc.dss_54m_fck = clk_get(&dispc.fbdev->dssdev->dev, "dss_54m_fck");
|
||||
if (IS_ERR(dispc.dss_54m_fck)) {
|
||||
dev_err(dispc.fbdev->dev, "can't get tv_fck\n");
|
||||
clk_put(dispc.dss_ick);
|
||||
Index: linux-3.1/drivers/video/omap/rfbi.c
|
||||
===================================================================
|
||||
--- linux-3.1.orig/drivers/video/omap/rfbi.c 2011-10-30 21:14:30.220268604 +0100
|
||||
+++ linux-3.1/drivers/video/omap/rfbi.c 2011-10-30 21:14:49.416119695 +0100
|
||||
@@ -90,7 +90,7 @@ static int rfbi_get_clocks(void)
|
||||
return PTR_ERR(rfbi.dss_ick);
|
||||
}
|
||||
|
||||
- rfbi.dss1_fck = clk_get(&rfbi.fbdev->dssdev->dev, "fck");
|
||||
+ rfbi.dss1_fck = clk_get(&rfbi.fbdev->dssdev->dev, "dss1_fck");
|
||||
if (IS_ERR(rfbi.dss1_fck)) {
|
||||
dev_err(rfbi.fbdev->dev, "can't get dss1_fck\n");
|
||||
clk_put(rfbi.dss_ick);
|
@ -0,0 +1,30 @@ |
||||
Index: linux-3.1/arch/arm/mach-omap2/omap_hwmod.c
|
||||
===================================================================
|
||||
--- linux-3.1.orig/arch/arm/mach-omap2/omap_hwmod.c 2011-10-30 21:20:19.205515660 +0100
|
||||
+++ linux-3.1/arch/arm/mach-omap2/omap_hwmod.c 2011-10-30 21:28:16.769945954 +0100
|
||||
@@ -145,6 +145,8 @@
|
||||
#include <plat/omap_hwmod.h>
|
||||
#include <plat/prcm.h>
|
||||
|
||||
+#include <asm/mach-types.h>
|
||||
+
|
||||
#include "cm2xxx_3xxx.h"
|
||||
#include "cminst44xx.h"
|
||||
#include "prm2xxx_3xxx.h"
|
||||
@@ -1704,6 +1706,16 @@ static int _setup(struct omap_hwmod *oh,
|
||||
|
||||
oh->_state = _HWMOD_STATE_INITIALIZED;
|
||||
|
||||
+ if (machine_is_nokia770() ||
|
||||
+ machine_is_nokia_n800() ||
|
||||
+ machine_is_nokia_n810() ||
|
||||
+ machine_is_nokia_n810_wimax()) {
|
||||
+ /* Nokia N-series workaround: Don't reset any hwmod. Some drivers expect
|
||||
+ * the NOLO bootloader initializations to be effective. */
|
||||
+ oh->flags |= HWMOD_INIT_NO_RESET;
|
||||
+ printk_once(KERN_INFO "Nokia N-series HWMOD_INIT_NO_RESET workaround enabled\n");
|
||||
+ }
|
||||
+
|
||||
/*
|
||||
* In the case of hwmod with hardreset that should not be
|
||||
* de-assert at boot time, we have to keep the module
|
Loading…
Reference in new issue