Re: [PATCH v9 1/4] target/riscv: Add smstateen support

2022-10-01 Thread mchitale
On Thu, 2022-09-29 at 11:43 +1000, Alistair Francis wrote: > On Thu, Sep 29, 2022 at 10:58 AM weiwei wrote: > > > > On 2022/9/19 14:29, Mayuresh Chitale wrote: > > > Smstateen extension specifies a mechanism to close > > > the potential covert channels that could cause security issues. > > > > >

Re: [PATCH v9 1/4] target/riscv: Add smstateen support

2022-09-28 Thread Alistair Francis
On Thu, Sep 29, 2022 at 10:58 AM weiwei wrote: > > > On 2022/9/19 14:29, Mayuresh Chitale wrote: > > Smstateen extension specifies a mechanism to close > > the potential covert channels that could cause security issues. > > > > This patch adds the CSRs defined in the specification and > > the corr

Re: [PATCH v9 1/4] target/riscv: Add smstateen support

2022-09-28 Thread weiwei
On 2022/9/19 14:29, Mayuresh Chitale wrote: Smstateen extension specifies a mechanism to close the potential covert channels that could cause security issues. This patch adds the CSRs defined in the specification and the corresponding predicates and read/write functions. Signed-off-by: Mayure