aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/dm646x.c
diff options
context:
space:
mode:
authorHemant Pedanekar <hemantp@ti.com>2009-09-02 07:19:35 -0400
committerKevin Hilman <khilman@deeprootsystems.com>2009-11-25 13:21:22 -0500
commitf63dd12da29f47c37bbc093abec098538e04357c (patch)
treeef90e4ba33eb0b5697fbadafbb4e031d6847ac63 /arch/arm/mach-davinci/dm646x.c
parent5d36a3321bd77418cc55e05680efc35deeaba3f4 (diff)
davinci: dm646x: Add support for 3.x silicon revision
DM6467 silicon revisions 3.x have variant field in JTAGID register as '1'. This path adds entry for the same in dm646x_ids to be able to boot on boards with 3.x revision chips. Also modifies name for 'variant=0' (revisions 1.0, 1.1). Signed-off-by: Hemant Pedanekar <hemantp@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm646x.c')
-rw-r--r--arch/arm/mach-davinci/dm646x.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c
index 0976049c7b3b..36e4fb4fada8 100644
--- a/arch/arm/mach-davinci/dm646x.c
+++ b/arch/arm/mach-davinci/dm646x.c
@@ -789,7 +789,14 @@ static struct davinci_id dm646x_ids[] = {
789 .part_no = 0xb770, 789 .part_no = 0xb770,
790 .manufacturer = 0x017, 790 .manufacturer = 0x017,
791 .cpu_id = DAVINCI_CPU_ID_DM6467, 791 .cpu_id = DAVINCI_CPU_ID_DM6467,
792 .name = "dm6467", 792 .name = "dm6467_rev1.x",
793 },
794 {
795 .variant = 0x1,
796 .part_no = 0xb770,
797 .manufacturer = 0x017,
798 .cpu_id = DAVINCI_CPU_ID_DM6467,
799 .name = "dm6467_rev3.x",
793 }, 800 },
794}; 801};
795 802