aboutsummaryrefslogtreecommitdiff
path: root/src/target/quark_x10xx.c
diff options
context:
space:
mode:
authorAdrian Burns <adrian.burns@intel.com>2014-02-06 17:11:15 +0000
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-02-11 13:07:29 +0000
commit1338cf60b91c582fa4b27d5226ab4374117be415 (patch)
tree1dbf81001fe7a650372b88c7c979c62b121d47f5 /src/target/quark_x10xx.c
parent005d85d56cfed72326f73e93eae105840b21645d (diff)
downloadriscv-openocd-1338cf60b91c582fa4b27d5226ab4374117be415.zip
riscv-openocd-1338cf60b91c582fa4b27d5226ab4374117be415.tar.gz
riscv-openocd-1338cf60b91c582fa4b27d5226ab4374117be415.tar.bz2
quark_x10xx: add new target quark_x10xx
Intel Quark X10xx SoC debug support added Lakemont version 1 (LMT1) is the x86 core in Quark X10xx SoC Generic x86 32-bit code is in x86_32_common.c/h Change-Id: If2bf77275cd0277a82558cd9895b4c66155cf368 Signed-off-by: adrian.burns@intel.com Reviewed-on: http://openocd.zylin.com/1829 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'src/target/quark_x10xx.c')
-rw-r--r--src/target/quark_x10xx.c97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/target/quark_x10xx.c b/src/target/quark_x10xx.c
new file mode 100644
index 0000000..05818b7
--- /dev/null
+++ b/src/target/quark_x10xx.c
@@ -0,0 +1,97 @@
+/*
+ * Copyright(c) 2013 Intel Corporation.
+ *
+ * Adrian Burns (adrian.burns@intel.com)
+ * Thomas Faust (thomas.faust@intel.com)
+ * Ivan De Cesaris (ivan.de.cesaris@intel.com)
+ * Julien Carreno (julien.carreno@intel.com)
+ * Jeffrey Maxwell (jeffrey.r.maxwell@intel.com)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of version 2 of the GNU General Public License as
+ * published by the Free Software Foundation.
+ *
+ * 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., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Contact Information:
+ * Intel Corporation
+ */
+
+/*
+ * @file
+ * Debugger for Intel Quark SoC X1000
+ * Intel Quark X10xx is the first product in the Quark family of SoCs.
+ * It is an IA-32 (Pentium x86 ISA) compatible SoC. The core CPU in the
+ * X10xx is codenamed Lakemont. Lakemont version 1 (LMT1) is used in X10xx.
+ * The CPU TAP (Lakemont TAP) is used for software debug and the CLTAP is
+ * used for SoC level operations.
+ * Useful docs are here: https://communities.intel.com/community/makers/documentation
+ * Intel Quark SoC X1000 OpenOCD/GDB/Eclipse App Note (web search for doc num 330015)
+ * Intel Quark SoC X1000 Debug Operations User Guide (web search for doc num 329866)
+ * Intel Quark SoC X1000 Datasheet (web search for doc num 329676)
+ *
+ * This file implements any Quark SoC specific features such as resetbreak (TODO)
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <helper/log.h>
+
+#include "target.h"
+#include "target_type.h"
+#include "lakemont.h"
+#include "x86_32_common.h"
+
+int quark_x10xx_target_create(struct target *t, Jim_Interp *interp)
+{
+ struct x86_32_common *x86_32 = calloc(1, sizeof(struct x86_32_common));
+ if (x86_32 == NULL) {
+ LOG_ERROR("%s out of memory", __func__);
+ return ERROR_FAIL;
+ }
+ x86_32_common_init_arch_info(t, x86_32);
+ lakemont_init_arch_info(t, x86_32);
+ return ERROR_OK;
+}
+
+int quark_x10xx_init_target(struct command_context *cmd_ctx, struct target *t)
+{
+ return lakemont_init_target(cmd_ctx, t);
+}
+
+struct target_type quark_x10xx_target = {
+ .name = "quark_x10xx",
+ /* Quark X1000 SoC */
+ .target_create = quark_x10xx_target_create,
+ .init_target = quark_x10xx_init_target,
+ /* lakemont probemode specific code */
+ .poll = lakemont_poll,
+ .arch_state = lakemont_arch_state,
+ .halt = lakemont_halt,
+ .resume = lakemont_resume,
+ .step = lakemont_step,
+ .assert_reset = lakemont_reset_assert,
+ .deassert_reset = lakemont_reset_deassert,
+ /* common x86 code */
+ .commands = x86_32_command_handlers,
+ .get_gdb_reg_list = x86_32_get_gdb_reg_list,
+ .read_memory = x86_32_common_read_memory,
+ .write_memory = x86_32_common_write_memory,
+ .add_breakpoint = x86_32_common_add_breakpoint,
+ .remove_breakpoint = x86_32_common_remove_breakpoint,
+ .add_watchpoint = x86_32_common_add_watchpoint,
+ .remove_watchpoint = x86_32_common_remove_watchpoint,
+ .virt2phys = x86_32_common_virt2phys,
+ .read_phys_memory = x86_32_common_read_phys_mem,
+ .write_phys_memory = x86_32_common_write_phys_mem,
+ .mmu = x86_32_common_mmu,
+};