mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
- Added support for ARM926EJ-S based cores
- Added contributors to AUTHORS file - Added link to Joern Kaipf's OOCD-Link git-svn-id: svn://svn.berlios.de/openocd/trunk@126 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
3
AUTHORS
3
AUTHORS
@@ -1 +1,4 @@
|
||||
Dominic Rath <Dominic.Rath@gmx.de>
|
||||
Magnus Lundin <lundin@mlu.mine.nu>
|
||||
Michael Fischer <fischermi@t-online.de>
|
||||
Spencer Oliver <spen@spen-soft.co.uk>
|
||||
|
||||
8
README
8
README
@@ -38,6 +38,9 @@ interface for use with the OpenOCD. Schematics are available at the USBJTAG
|
||||
website, and a homebrew device can easily be built using the FTDI evaluation
|
||||
module DLP2232M.
|
||||
|
||||
* OOCD-Link: http://www.joernonline.de/dw/doku.php?id=en:projects:oocdlink
|
||||
Similar to the USBJTAG, this design comes with free schematics, too.
|
||||
|
||||
* Amontec JTAGkey: www.amontec.com
|
||||
The Amontec JTAGkey offers support for a wide variety of target voltages from
|
||||
1.4V to 5V. It also allows the JTAG lines and reset signals to be tri-stated,
|
||||
@@ -75,11 +78,6 @@ This version of openocd supports the following cores:
|
||||
Support for Intel XScale CPUs (PXA25x, PXA27x and IXP4xx) is currently being
|
||||
developed.
|
||||
|
||||
The OpenOCD is only tested with little-endian targets, but support for
|
||||
big-endian is planned. If you're interested in helping with this (and you
|
||||
happen to have a big-endian ARM7/ARM9 system, feel free to contact
|
||||
Dominic.Rath <at> gmx.de.
|
||||
|
||||
3. Host platforms
|
||||
|
||||
OpenOCD was originally developed on x86-Linux, but has since then been ported
|
||||
|
||||
@@ -3,7 +3,7 @@ METASOURCES = AUTO
|
||||
noinst_LIBRARIES = libtarget.a
|
||||
libtarget_a_SOURCES = target.c register.c breakpoints.c armv4_5.c embeddedice.c etm.c arm7tdmi.c arm9tdmi.c \
|
||||
arm_jtag.c arm7_9_common.c algorithm.c arm920t.c arm720t.c armv4_5_mmu.c armv4_5_cache.c arm_disassembler.c \
|
||||
arm966e.c
|
||||
arm966e.c arm926ejs.c
|
||||
noinst_HEADERS = target.h register.h armv4_5.h embeddedice.h etm.h arm7tdmi.h arm9tdmi.h \
|
||||
arm_jtag.h arm7_9_common.h arm920t.h arm720t.h armv4_5_mmu.h armv4_5_cache.h breakpoints.h algorithm.h \
|
||||
arm_disassembler.h arm966e.h
|
||||
arm_disassembler.h arm966e.h arm926ejs.h
|
||||
|
||||
845
src/target/arm926ejs.c
Normal file
845
src/target/arm926ejs.c
Normal file
File diff suppressed because it is too large
Load Diff
44
src/target/arm926ejs.h
Normal file
44
src/target/arm926ejs.h
Normal file
@@ -0,0 +1,44 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) 2007 by Dominic Rath *
|
||||
* Dominic.Rath@gmx.de *
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU General Public License *
|
||||
* along with this program; if not, write to the *
|
||||
* Free Software Foundation, Inc., *
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
***************************************************************************/
|
||||
#ifndef ARM926EJS_H
|
||||
#define ARM926EJS_H
|
||||
|
||||
#include "target.h"
|
||||
#include "register.h"
|
||||
#include "embeddedice.h"
|
||||
#include "arm_jtag.h"
|
||||
#include "arm9tdmi.h"
|
||||
#include "armv4_5_mmu.h"
|
||||
#include "armv4_5_cache.h"
|
||||
|
||||
#define ARM926EJS_COMMON_MAGIC 0xa926a926
|
||||
|
||||
typedef struct arm926ejs_common_s
|
||||
{
|
||||
int common_magic;
|
||||
armv4_5_mmu_common_t armv4_5_mmu;
|
||||
arm9tdmi_common_t arm9tdmi_common;
|
||||
u32 cp15_control_reg;
|
||||
u32 d_fsr;
|
||||
u32 i_fsr;
|
||||
u32 d_far;
|
||||
} arm926ejs_common_t;
|
||||
|
||||
#endif /* ARM926EJS_H */
|
||||
@@ -76,6 +76,7 @@ extern target_type_t arm720t_target;
|
||||
extern target_type_t arm9tdmi_target;
|
||||
extern target_type_t arm920t_target;
|
||||
extern target_type_t arm966e_target;
|
||||
extern target_type_t arm926ejs_target;
|
||||
|
||||
target_type_t *target_types[] =
|
||||
{
|
||||
@@ -84,6 +85,7 @@ target_type_t *target_types[] =
|
||||
&arm920t_target,
|
||||
&arm720t_target,
|
||||
&arm966e_target,
|
||||
&arm926ejs_target,
|
||||
NULL,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user