mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
2177f80076
Duplicate patches between PSP and 3.2.17 have been dropped from the 3.2.17 series Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
53 lines
2.1 KiB
Diff
53 lines
2.1 KiB
Diff
From c0d0663f26ba8ed987704a454a360b1a5997e1d7 Mon Sep 17 00:00:00 2001
|
|
From: Archit Taneja <archit@ti.com>
|
|
Date: Thu, 19 Apr 2012 17:39:16 +0530
|
|
Subject: [PATCH 02/56] ARM: OMAP: Revert "ARM: OMAP: ctrl: Fix CONTROL_DSIPHY
|
|
register fields"
|
|
|
|
commit 08ca7444f589bedf9ad5d82883e5d0754852d73b upstream.
|
|
|
|
This reverts commit 46f8c3c7e95c0d30d95911e7975ddc4f93b3e237.
|
|
|
|
The commit above swapped the DSI1_PPID and DSI2_PPID register fields in
|
|
CONTROL_DSIPHY to be in sync with the newer public OMAP TRMs(after version V).
|
|
|
|
With this commit, contention errors were reported on DSI lanes some OMAP4 SDPs.
|
|
After probing the DSI lanes on OMAP4 SDP, it was seen that setting bits in the
|
|
DSI2_PPID field was pulling up voltage on DSI1 lanes, and DSI1_PPID field was
|
|
pulling up voltage on DSI2 lanes.
|
|
|
|
This proves that the current version of OMAP4 TRM is incorrect, swap the
|
|
position of register fields according to the older TRM versions as they were
|
|
correct.
|
|
|
|
Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
|
Signed-off-by: Archit Taneja <archit@ti.com>
|
|
Signed-off-by: Tony Lindgren <tony@atomide.com>
|
|
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
|
|
---
|
|
.../include/mach/ctrl_module_pad_core_44xx.h | 8 ++++----
|
|
1 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h b/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h
|
|
index 1e2d332..c88420d 100644
|
|
--- a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h
|
|
+++ b/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h
|
|
@@ -941,10 +941,10 @@
|
|
#define OMAP4_DSI2_LANEENABLE_MASK (0x7 << 29)
|
|
#define OMAP4_DSI1_LANEENABLE_SHIFT 24
|
|
#define OMAP4_DSI1_LANEENABLE_MASK (0x1f << 24)
|
|
-#define OMAP4_DSI2_PIPD_SHIFT 19
|
|
-#define OMAP4_DSI2_PIPD_MASK (0x1f << 19)
|
|
-#define OMAP4_DSI1_PIPD_SHIFT 14
|
|
-#define OMAP4_DSI1_PIPD_MASK (0x1f << 14)
|
|
+#define OMAP4_DSI1_PIPD_SHIFT 19
|
|
+#define OMAP4_DSI1_PIPD_MASK (0x1f << 19)
|
|
+#define OMAP4_DSI2_PIPD_SHIFT 14
|
|
+#define OMAP4_DSI2_PIPD_MASK (0x1f << 14)
|
|
|
|
/* CONTROL_MCBSPLP */
|
|
#define OMAP4_ALBCTRLRX_FSX_SHIFT 31
|
|
--
|
|
1.7.7.6
|
|
|