Add support for running the display output at 15Hz.
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
index 562f04e..52a10ec 100644
--- a/arch/arm/mach-omap2/board-omap4panda.c
+++ b/arch/arm/mach-omap2/board-omap4panda.c
@@ -16,6 +16,8 @@
* published by the Free Software Foundation.
*/
+#define USE_15HZ
+
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
@@ -620,11 +622,19 @@
},
.dsi = {
+#ifndef USE_15HZ
.regn = 16,
.regm = 180,
.regm_dispc = 5, //m4reg
.regm_dsi = 5, //m5rev
.lp_clk_div = 10,
+#else
+ .regn = 16,
+ .regm = 60,
+ .regm_dispc = 5, //m4reg
+ .regm_dsi = 5, //m5rev
+ .lp_clk_div = 4,
+#endif
.dsi_fclk_src = OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
},
},