Re: [PATCH v5 13/23] target/riscv: Implement AIA mtopi, stopi, and vstopi CSRs

2021-12-22 Thread Anup Patel
On Tue, Dec 21, 2021 at 12:18 PM Alistair Francis wrote: > > On Sat, Dec 11, 2021 at 2:34 PM Anup Patel wrote: > > > > The AIA specification introduces new [m|s|vs]topi CSRs for > > reporting pending local IRQ number and associated IRQ priority. > > > > Signed-off-by: Anup Patel > > --- > > tar

Re: [PATCH v5 13/23] target/riscv: Implement AIA mtopi, stopi, and vstopi CSRs

2021-12-20 Thread Alistair Francis
On Sat, Dec 11, 2021 at 2:34 PM Anup Patel wrote: > > The AIA specification introduces new [m|s|vs]topi CSRs for > reporting pending local IRQ number and associated IRQ priority. > > Signed-off-by: Anup Patel > --- > target/riscv/csr.c | 155 + > 1 fil

[PATCH v5 13/23] target/riscv: Implement AIA mtopi, stopi, and vstopi CSRs

2021-12-10 Thread Anup Patel
The AIA specification introduces new [m|s|vs]topi CSRs for reporting pending local IRQ number and associated IRQ priority. Signed-off-by: Anup Patel --- target/riscv/csr.c | 155 + 1 file changed, 155 insertions(+) diff --git a/target/riscv/csr.c b/ta