aboutsummaryrefslogtreecommitdiff
path: root/src/target/aarch64.h
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2023-03-16 17:52:48 -0700
committerTim Newsome <tim@sifive.com>2023-03-16 18:02:35 -0700
commit868ebdd89ca75a73bffe335395aa1ed522dda660 (patch)
tree95ead6f4982b85a6cc90d5832712523a8ee7b77a /src/target/aarch64.h
parent3387015af01f18cc350c4764fbd533068ed15f3d (diff)
parent1293ddd65713d6551775b67169387622ada477c1 (diff)
downloadriscv-openocd-868ebdd89ca75a73bffe335395aa1ed522dda660.zip
riscv-openocd-868ebdd89ca75a73bffe335395aa1ed522dda660.tar.gz
riscv-openocd-868ebdd89ca75a73bffe335395aa1ed522dda660.tar.bz2
Merge commit '1293ddd65713d6551775b67169387622ada477c1' into from_upstream
This includes https://sourceforge.net/p/openocd/mailman/message/37710818/, which should fix #814. Conflicts: .travis.yml contrib/loaders/flash/stm32/stm32f1x.S contrib/loaders/flash/stm32/stm32f2x.S doc/openocd.texi src/rtos/FreeRTOS.c src/server/gdb_server.c src/target/riscv/riscv-013.c src/target/riscv/riscv.c src/target/riscv/riscv.h src/target/riscv/riscv_semihosting.c tcl/target/esp_common.cfg tcl/target/gd32vf103.cfg tools/scripts/checkpatch.pl Change-Id: I1986c13298ca0dafbe3aecaf1b0b35626525e4eb
Diffstat (limited to 'src/target/aarch64.h')
-rw-r--r--src/target/aarch64.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/src/target/aarch64.h b/src/target/aarch64.h
index b57361f..2721fe7 100644
--- a/src/target/aarch64.h
+++ b/src/target/aarch64.h
@@ -1,19 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
/***************************************************************************
* Copyright (C) 2015 by David Ung *
- * *
- * 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., *
***************************************************************************/
#ifndef OPENOCD_TARGET_AARCH64_H
@@ -21,7 +9,7 @@
#include "armv8.h"
-#define AARCH64_COMMON_MAGIC 0x411fc082
+#define AARCH64_COMMON_MAGIC 0x41413634U
#define CPUDBG_CPUID 0xD00
#define CPUDBG_CTYPR 0xD04
@@ -50,7 +38,9 @@ struct aarch64_brp {
};
struct aarch64_common {
- int common_magic;
+ unsigned int common_magic;
+
+ struct armv8_common armv8_common;
/* Context information */
uint32_t system_control_reg;
@@ -67,8 +57,6 @@ struct aarch64_common {
int wp_num_available;
struct aarch64_brp *wp_list;
- struct armv8_common armv8_common;
-
enum aarch64_isrmasking_mode isrmasking_mode;
};