[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 0/3] Introduce sdtrig ISA extension
From: |
Himanshu Chauhan |
Subject: |
[PATCH v4 0/3] Introduce sdtrig ISA extension |
Date: |
Wed, 13 Mar 2024 11:39:28 +0530 |
All the CPUs may or may not implement the debug triggers. Some CPUs
may implement only debug specification v0.13 and not sdtrig ISA
extension.
This patchset, adds sdtrig ISA as an extension which can be turned on or off by
sdtrig=<true/false> option. It is turned off by default.
When debug is true and sdtrig is false, the behaviour is as defined in debug
specification v0.13. If sdtrig is turned on, the behaviour is as defined
in the sdtrig ISA extension.
The "sdtrig" string is concatenated to ISA string when debug or sdtrig is
enabled.
Changes from v1:
- Replaced the debug property with ext_sdtrig
- Marked it experimenatal by naming it x-sdtrig
- x-sdtrig is added to ISA string
- Reversed the patch order
Changes from v2:
- Mark debug property as deprecated and replace internally with sdtrig
extension
- setting/unsetting debug property shows warning and sets/unsets ext_sdtrig
- sdtrig is added to ISA string as RISC-V debug specification is frozen
Changes from v3:
- debug propery is not deprecated but it is superceded by sdtrig extension
- Mcontrol6 support is not published when only debug property is turned
on as debug spec v0.13 doesn't define mcontrol6 match triggers.
- Enabling sdtrig extension turns of debug property and a warning is printed.
This doesn't break debug specification implemenation since sdtrig is
backward compatible with debug specification.
- Disable debug property and enable sdtrig by default for Ventana's Veyron
CPUs.
Himanshu Chauhan (3):
target/riscv: Enable mcontrol6 triggers only when sdtrig is selected
target/riscv: Expose sdtrig ISA extension
target/riscv: Enable sdtrig for Ventana's Veyron CPUs
target/riscv/cpu.c | 14 ++++++-
target/riscv/cpu_cfg.h | 1 +
target/riscv/csr.c | 2 +-
target/riscv/debug.c | 92 +++++++++++++++++++++++++-----------------
target/riscv/machine.c | 2 +-
5 files changed, 70 insertions(+), 41 deletions(-)
--
2.34.1
- [PATCH v4 0/3] Introduce sdtrig ISA extension,
Himanshu Chauhan <=
- [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Himanshu Chauhan, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Andrew Jones, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Himanshu Chauhan, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Andrew Jones, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Himanshu Chauhan, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Andrew Jones, 2024/03/13
- Re: [PATCH v4 2/3] target/riscv: Expose sdtrig ISA extension, Himanshu Chauhan, 2024/03/13
[PATCH v4 3/3] target/riscv: Enable sdtrig for Ventana's Veyron CPUs, Himanshu Chauhan, 2024/03/13
[PATCH v4 1/3] target/riscv: Enable mcontrol6 triggers only when sdtrig is selected, Himanshu Chauhan, 2024/03/13