]> git.sur5r.net Git - openocd/commitdiff
Support for Freescale LS102x SAP
authorEsben Haabendal <esben@haabendal.dk>
Tue, 10 Nov 2015 10:44:29 +0000 (11:44 +0100)
committerPaul Fertser <fercerpav@gmail.com>
Thu, 23 Jun 2016 06:37:36 +0000 (07:37 +0100)
The SAP in LS102x SoC's from Freescale is able to read and write to all
physical memory locations, independently of CPU cores and DAP.

This implementation is 100% based on reverse-engineering of JTAG
communication with an LS1021A SAP using a JTAG debugger with SAP support.

And as such, this code is for now "works-for-me", pending verification
by other OpenOCD users, or even better, actual information from Freescale
on the SAP interface.

Change-Id: Ibb30945e017894da5c402f9f633fc513bed4e68c
Signed-off-by: Esben Haabendal <esben@haabendal.dk>
Reviewed-on: http://openocd.zylin.com/3096
Tested-by: jenkins
Reviewed-by: Paul Fertser <fercerpav@gmail.com>
README
doc/openocd.texi
src/target/Makefile.am
src/target/ls1_sap.c [new file with mode: 0644]
src/target/target.c

diff --git a/README b/README
index 11ea2db3b2896d21d8f179e84ca34c62c5e0723a..df4bc3b0cc43f73badefc8ec0d231da703390dbd 100644 (file)
--- a/README
+++ b/README
@@ -119,7 +119,7 @@ Wiggler, XDS100v2, Xverve.
 Debug targets
 -------------
 
-ARM11, ARM7, ARM9, AVR32, Cortex-A, Cortex-R, Cortex-M,
+ARM11, ARM7, ARM9, AVR32, Cortex-A, Cortex-R, Cortex-M, LS102x-SAP,
 Feroceon/Dragonite, DSP563xx, DSP5680xx, FA526, MIPS EJTAG, NDS32,
 XScale, Intel Quark.
 
index ae926970be69a9a5e8edcffad173c85e76c31645..30a2a4613f9b5a9b7109469fab5651bec0d1600d 100644 (file)
@@ -4059,6 +4059,8 @@ compact Thumb2 instruction set.
 not a CPU type. It is based on the ARMv5 architecture.
 @item @code{openrisc} -- this is an OpenRISC 1000 core.
 The current implementation supports three JTAG TAP cores:
+@item @code{ls1_sap} -- this is the SAP on NXP LS102x CPUs,
+allowing access to physical memory addresses independently of CPU cores.
 @itemize @minus
 @item @code{OpenCores TAP} (See: @url{http://opencores.org/project,jtag})
 @item @code{Altera Virtual JTAG TAP} (See: @url{http://www.altera.com/literature/ug/ug_virtualjtag.pdf})
index 1f4cbba42388cf01c7a68e1aba665bb1ce2c0bee..5b6916dd855c492969242cba5fde248b8079bb27 100644 (file)
@@ -82,7 +82,8 @@ ARMV7_SRC = \
        armv7m_trace.c \
        cortex_m.c \
        armv7a.c \
-       cortex_a.c
+       cortex_a.c \
+       ls1_sap.c
 
 ARM_DEBUG_SRC = \
        arm_dpm.c \
diff --git a/src/target/ls1_sap.c b/src/target/ls1_sap.c
new file mode 100644 (file)
index 0000000..944e725
--- /dev/null
@@ -0,0 +1,243 @@
+/***************************************************************************
+ *   Copyright (C) 2015 by Esben Haabendal                                 *
+ *   eha@deif.com                                                          *
+ *                                                                         *
+ *   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.                          *
+ ***************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "target.h"
+#include "target_type.h"
+
+#include <jtag/jtag.h>
+
+struct ls1_sap {
+       struct jtag_tap *tap;
+};
+
+static int ls1_sap_target_create(struct target *target, Jim_Interp *interp)
+{
+       struct ls1_sap *ls1_sap = calloc(1, sizeof(struct ls1_sap));
+
+       ls1_sap->tap = target->tap;
+       target->arch_info = ls1_sap;
+
+       return ERROR_OK;
+}
+
+static int ls1_sap_init_target(struct command_context *cmd_ctx, struct target *target)
+{
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_arch_state(struct target *target)
+{
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_poll(struct target *target)
+{
+       if ((target->state == TARGET_UNKNOWN) ||
+           (target->state == TARGET_RUNNING) ||
+           (target->state == TARGET_DEBUG_RUNNING))
+               target->state = TARGET_HALTED;
+
+       return ERROR_OK;
+}
+
+static int ls1_sap_halt(struct target *target)
+{
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_resume(struct target *target, int current, uint32_t address,
+               int handle_breakpoints, int debug_execution)
+{
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_step(struct target *target, int current, uint32_t address,
+                               int handle_breakpoints)
+{
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_assert_reset(struct target *target)
+{
+       target->state = TARGET_RESET;
+
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static int ls1_sap_deassert_reset(struct target *target)
+{
+       target->state = TARGET_RUNNING;
+
+       LOG_DEBUG("%s", __func__);
+       return ERROR_OK;
+}
+
+static void ls1_sap_set_instr(struct jtag_tap *tap, uint32_t new_instr)
+{
+       struct scan_field field;
+
+       if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) == new_instr)
+               return;
+
+       field.num_bits = tap->ir_length;
+       uint8_t *t = calloc(DIV_ROUND_UP(field.num_bits, 8), 1);
+       field.out_value = t;
+       buf_set_u32(t, 0, field.num_bits, new_instr);
+       field.in_value = NULL;
+       jtag_add_ir_scan(tap, &field, TAP_IDLE);
+       free(t);
+}
+
+static void ls1_sap_set_addr_high(struct jtag_tap *tap, uint16_t addr_high)
+{
+       struct scan_field field;
+       uint8_t buf[2];
+
+       ls1_sap_set_instr(tap, 0x21);
+
+       field.num_bits = 16;
+       field.out_value = buf;
+       buf_set_u32(buf, 0, 16, addr_high);
+       field.in_value = NULL;
+       field.check_value = NULL;
+       field.check_mask = NULL;
+       jtag_add_dr_scan(tap, 1, &field, TAP_IDLE);
+}
+
+static void ls1_sap_memory_cmd(struct jtag_tap *tap, uint32_t address,
+                              int32_t size, int read)
+{
+       struct scan_field field;
+       uint8_t cmd[8];
+
+       ls1_sap_set_instr(tap, 0x24);
+
+       field.num_bits = 64;
+       field.out_value = cmd;
+       buf_set_u64(cmd, 0, 9, 0);
+       buf_set_u64(cmd, 9, 3, size);
+       buf_set_u64(cmd, 12, 1, !!read);
+       buf_set_u64(cmd, 13, 3, 0);
+       buf_set_u64(cmd, 16, 32, address);
+       buf_set_u64(cmd, 48, 16, 0);
+       field.in_value = NULL;
+       field.check_value = NULL;
+       field.check_mask = NULL;
+       jtag_add_dr_scan(tap, 1, &field, TAP_IDLE);
+}
+
+static void ls1_sap_memory_read(struct jtag_tap *tap, uint32_t size,
+                               uint8_t *value)
+{
+       struct scan_field field;
+
+       ls1_sap_set_instr(tap, 0x25);
+
+       field.num_bits = 8 * size;
+       field.out_value = NULL;
+       field.in_value = value;
+       field.check_value = NULL;
+       field.check_mask = NULL;
+       jtag_add_dr_scan(tap, 1, &field, TAP_IDLE);
+}
+
+static void ls1_sap_memory_write(struct jtag_tap *tap, uint32_t size,
+                                const uint8_t *value)
+{
+       struct scan_field field;
+
+       ls1_sap_set_instr(tap, 0x25);
+
+       field.num_bits = 8 * size;
+       field.out_value = value;
+       field.in_value = NULL;
+       field.check_value = NULL;
+       field.check_mask = NULL;
+       jtag_add_dr_scan(tap, 1, &field, TAP_IDLE);
+}
+
+static int ls1_sap_read_memory(struct target *target, uint32_t address,
+                              uint32_t size, uint32_t count, uint8_t *buffer)
+{
+       LOG_DEBUG("Reading memory at physical address 0x%" PRIx32
+                 "; size %" PRId32 "; count %" PRId32, address, size, count);
+
+       if (count == 0 || buffer == NULL)
+               return ERROR_COMMAND_SYNTAX_ERROR;
+
+       ls1_sap_set_addr_high(target->tap, 0);
+
+       while (count--) {
+               ls1_sap_memory_cmd(target->tap, address, size, 1);
+               ls1_sap_memory_read(target->tap, size, buffer);
+               address += size;
+               buffer += size;
+       }
+
+       return jtag_execute_queue();
+}
+
+static int ls1_sap_write_memory(struct target *target, uint32_t address,
+                               uint32_t size, uint32_t count,
+                               const uint8_t *buffer)
+{
+       LOG_DEBUG("Writing memory at physical address 0x%" PRIx32
+                 "; size %" PRId32 "; count %" PRId32, address, size, count);
+
+
+       if (count == 0 || buffer == NULL)
+               return ERROR_COMMAND_SYNTAX_ERROR;
+
+       ls1_sap_set_addr_high(target->tap, 0);
+
+       while (count--) {
+               ls1_sap_memory_cmd(target->tap, address, size, 0);
+               ls1_sap_memory_write(target->tap, size, buffer);
+               address += size;
+               buffer += size;
+       }
+
+       return jtag_execute_queue();
+}
+
+struct target_type ls1_sap_target = {
+       .name = "ls1_sap",
+
+       .target_create = ls1_sap_target_create,
+       .init_target = ls1_sap_init_target,
+
+       .poll = ls1_sap_poll,
+       .arch_state = ls1_sap_arch_state,
+
+       .halt = ls1_sap_halt,
+       .resume = ls1_sap_resume,
+       .step = ls1_sap_step,
+
+       .assert_reset = ls1_sap_assert_reset,
+       .deassert_reset = ls1_sap_deassert_reset,
+
+       .read_memory = ls1_sap_read_memory,
+       .write_memory = ls1_sap_write_memory,
+};
index d6558c49a92e3a4474d7613df807c8f00fa51719..d71828c0fc7aeccb59cac2b4d02da015a983277e 100644 (file)
@@ -90,6 +90,7 @@ extern struct target_type cortexm_target;
 extern struct target_type cortexa_target;
 extern struct target_type cortexr4_target;
 extern struct target_type arm11_target;
+extern struct target_type ls1_sap_target;
 extern struct target_type mips_m4k_target;
 extern struct target_type avr_target;
 extern struct target_type dsp563xx_target;
@@ -120,6 +121,7 @@ static struct target_type *target_types[] = {
        &cortexa_target,
        &cortexr4_target,
        &arm11_target,
+       &ls1_sap_target,
        &mips_m4k_target,
        &avr_target,
        &dsp563xx_target,