Browse Source

omap4430: Add JRC TAPID for PandaBoard REV EA1 (PEAP platforms)

PandaBoard REV EA1 (Panda Early Adopter Program) has a different ID.
This patch add alternate REV EA1 TAP id to configuration file

Signed-off-by: Luca Ellero <lroluk@gmail.com>
tags/v0.5.0-rc1
Luca Ellero 13 years ago
committed by Øyvind Harboe
parent
commit
6684b35346
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      tcl/target/omap4430.cfg

+ 12
- 2
tcl/target/omap4430.cfg View File

@@ -54,11 +54,21 @@ jtag configure $_CHIPNAME.m30_dap -event tap-enable \
if { [info exists JRC_TAPID ] } { if { [info exists JRC_TAPID ] } {
set _JRC_TAPID $JRC_TAPID set _JRC_TAPID $JRC_TAPID
} else { } else {
set _JRC_TAPID 0x3b95c02f
set _JRC_TAPID 0x3b95c02f
set _JRC_TAPID2 0x1b85202f
} }


# PandaBoard REV EA1 (PEAP platforms)
if { [info exists JRC_TAPID2 ] } {
set _JRC_TAPID2 $JRC_TAPID2
} else {
set _JRC_TAPID2 0x1b85202f
}



jtag newtap $_CHIPNAME jrc -irlen 6 -ircapture 0x1 -irmask 0x3f \ jtag newtap $_CHIPNAME jrc -irlen 6 -ircapture 0x1 -irmask 0x3f \
-expected-id $_JRC_TAPID
-expected-id $_JRC_TAPID -expected-id $_JRC_TAPID2


# Required by ICEpick to power-up the debug domain # Required by ICEpick to power-up the debug domain
jtag configure $_CHIPNAME.jrc -event post-reset "runtest 200" jtag configure $_CHIPNAME.jrc -event post-reset "runtest 200"


Loading…
Cancel
Save