Re: [PATCH 1/2] target/riscv: Export sdtrig as an extension and ISA string

2024-01-11 Thread Alistair Francis
On Wed, Jan 10, 2024 at 2:03 PM Himanshu Chauhan wrote: > > This patch makes the debug trigger (sdtrig) capability > as an extension and exports it as an ISA string. The sdtrig > extension may or may not be implemented in a system. The > -cpu rv64,sdtrig= > option can be used to dynamicaly

[PATCH 1/2] target/riscv: Export sdtrig as an extension and ISA string

2024-01-09 Thread Himanshu Chauhan
This patch makes the debug trigger (sdtrig) capability as an extension and exports it as an ISA string. The sdtrig extension may or may not be implemented in a system. The -cpu rv64,sdtrig= option can be used to dynamicaly turn sdtrig extension on or off. Signed-off-by: Himanshu Chauhan -