Re: [PATCH 0/6] target/riscv: Support Zabha extension

2024-05-26 Thread LIU Zhiwei
On 2024/5/27 1:16, Daniel Henrique Barboza wrote: On 5/25/24 21:37, LIU Zhiwei wrote: On 2024/5/24 19:44, Daniel Henrique Barboza wrote: Hi Zhiwei! On 5/23/24 09:40, LIU Zhiwei wrote: Zabha adds support AMO operations for byte and half word. If zacas has been implemented, zabha also

Re: [PATCH 0/6] target/riscv: Support Zabha extension

2024-05-26 Thread Daniel Henrique Barboza
On 5/25/24 21:37, LIU Zhiwei wrote: On 2024/5/24 19:44, Daniel Henrique Barboza wrote: Hi Zhiwei! On 5/23/24 09:40, LIU Zhiwei wrote: Zabha adds support AMO operations for byte and half word. If zacas has been implemented, zabha also adds support amocas.b and amocas.h. More details is

Re: [PATCH 0/6] target/riscv: Support Zabha extension

2024-05-25 Thread LIU Zhiwei
On 2024/5/24 19:44, Daniel Henrique Barboza wrote: Hi Zhiwei! On 5/23/24 09:40, LIU Zhiwei wrote: Zabha adds support AMO operations for byte and half word. If zacas has been implemented, zabha also adds support amocas.b and amocas.h. More details is on the specification here:

Re: [PATCH 0/6] target/riscv: Support Zabha extension

2024-05-24 Thread Daniel Henrique Barboza
Hi Zhiwei! On 5/23/24 09:40, LIU Zhiwei wrote: Zabha adds support AMO operations for byte and half word. If zacas has been implemented, zabha also adds support amocas.b and amocas.h. More details is on the specification here: https://github.com/riscv/riscv-zabha The implemenation of zabha

[PATCH 0/6] target/riscv: Support Zabha extension

2024-05-23 Thread LIU Zhiwei
Zabha adds support AMO operations for byte and half word. If zacas has been implemented, zabha also adds support amocas.b and amocas.h. More details is on the specification here: https://github.com/riscv/riscv-zabha The implemenation of zabha follows the way of AMOs and zacas. This patch set