From: Øyvind H. <go...@us...> - 2010-04-26 07:09:54
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 56a21c9cb1e4785e2ca3aac16c7a6bb17874d9aa (commit) via e0285dbe73594b640d9db2473821413097cbafc4 (commit) from 4f1296d1510715b5504f39909dadae79698aa27a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 56a21c9cb1e4785e2ca3aac16c7a6bb17874d9aa Author: Marek Vasut <mar...@gm...> Date: Mon Apr 26 03:34:03 2010 +0200 Add Voipac PXA270 module support This patch adds support for the Voipac PXA270 module. Including NOR flash. Signed-off-by: Marek Vasut <mar...@gm...> diff --git a/tcl/board/voipac.cfg b/tcl/board/voipac.cfg new file mode 100644 index 0000000..c59277e --- /dev/null +++ b/tcl/board/voipac.cfg @@ -0,0 +1,12 @@ +# Config for Voipac PXA270/PXA270M module. + +set CHIPNAME voipac +source [find target/pxa270.cfg] + +# The board supports separate reset lines +# Override this in the interface config for parallel dongles +reset_config trst_and_srst separate + +# flash bank <driver> <base> <size> <chip_width> <bus_width> +flash bank $_CHIPNAME.flash0 cfi 0x00000000 0x2000000 2 2 $_TARGETNAME +flash bank $_CHIPNAME.flash1 cfi 0x02000000 0x2000000 2 2 $_TARGETNAME commit e0285dbe73594b640d9db2473821413097cbafc4 Author: Marek Vasut <mar...@gm...> Date: Mon Apr 26 03:08:00 2010 +0200 Add VPACLink interface definition This patch adds definition file for the Voipac VPACLink JTAG adaptor. The adaptor is combined JTAG/UART device. Signed-off-by: Marek Vasut <mar...@gm...> diff --git a/tcl/interface/vpaclink.cfg b/tcl/interface/vpaclink.cfg new file mode 100644 index 0000000..a4795d3 --- /dev/null +++ b/tcl/interface/vpaclink.cfg @@ -0,0 +1,10 @@ +# +# Voipac VPACLink +# +# http://voipac.com/27M-JTG-000 +# + +interface ft2232 +ft2232_device_desc "VPACLink A" +ft2232_layout oocdlink +ft2232_vid_pid 0x0403 0x6010 ----------------------------------------------------------------------- Summary of changes: tcl/board/voipac.cfg | 12 ++++++++++++ tcl/interface/vpaclink.cfg | 10 ++++++++++ 2 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 tcl/board/voipac.cfg create mode 100644 tcl/interface/vpaclink.cfg hooks/post-receive -- Main OpenOCD repository |