This is an automated email from Gerrit.

"Tarek BOCHKATI <[email protected]>" just uploaded a new patch set to 
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6951

-- gerrit

commit 47fb271c84e04e318ad4eae8ae787e98bc93d43f
Author: Tarek BOCHKATI <[email protected]>
Date:   Thu Apr 28 04:04:32 2022 +0100

    cortex_m: support Cortex-M85
    
    Change-Id: I76b9fdb7f29120b0e4ebb95ac9ac67fddf2235aa
    Signed-off-by: Tarek BOCHKATI <[email protected]>

diff --git a/src/target/cortex_m.c b/src/target/cortex_m.c
index 55446a9de2..df42e42ef1 100644
--- a/src/target/cortex_m.c
+++ b/src/target/cortex_m.c
@@ -114,6 +114,12 @@ static const struct cortex_m_part_info cortex_m_parts[] = {
                .arch = ARM_ARCH_V8M,
                .flags = CORTEX_M_F_HAS_FPV5,
        },
+       {
+               .partno = CORTEX_M85_PARTNO,
+               .name = "Cortex-M85",
+               .arch = ARM_ARCH_V8M,
+               .flags = CORTEX_M_F_HAS_FPV5,
+       },
 };
 
 /* forward declarations */
diff --git a/src/target/cortex_m.h b/src/target/cortex_m.h
index 5554014162..e9f255b613 100644
--- a/src/target/cortex_m.h
+++ b/src/target/cortex_m.h
@@ -57,6 +57,7 @@ enum cortex_m_partno {
        CORTEX_M33_PARTNO  = 0xD21,
        CORTEX_M35P_PARTNO = 0xD31,
        CORTEX_M55_PARTNO  = 0xD22,
+       CORTEX_M85_PARTNO  = 0xD23,
 };
 
 /* Relevant Cortex-M flags, used in struct cortex_m_part_info.flags */

-- 

Reply via email to