[PATCH V4 2/2] lib: sbi: Add runtime bug detection for csr_read_num/csr_write_num/misa_string
Anup Patel
anup at brainfault.org
Wed Sep 22 01:27:05 PDT 2021
On Thu, Sep 16, 2021 at 10:03 AM Xiang W <wxjstz at 126.com> wrote:
Please try to write some description here and keep the patch subject
within the 80 character limit.
>
> Signed-off-by: Xiang W <wxjstz at 126.com>
Otherwise it looks good to me.
Reviewed-by: Anup Patel <anup.patel at wdc.com>
I have updated patch subject and description at the time of merging
this patch. Applied this patch to the riscv/opensbi repo.
Regards,
Anup
> ---
> lib/sbi/riscv_asm.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/lib/sbi/riscv_asm.c b/lib/sbi/riscv_asm.c
> index 4c24a51..281e50a 100644
> --- a/lib/sbi/riscv_asm.c
> +++ b/lib/sbi/riscv_asm.c
> @@ -11,6 +11,7 @@
> #include <sbi/riscv_encoding.h>
> #include <sbi/sbi_error.h>
> #include <sbi/sbi_platform.h>
> +#include <sbi/sbi_console.h>
>
> /* determine CPU extension, return non-zero support */
> int misa_extension_imp(char ext)
> @@ -75,6 +76,7 @@ void misa_string(int xlen, char *out, unsigned int out_sz)
> out[pos++] = '8';
> break;
> default:
> + BUG();
> return;
> }
> }
> @@ -134,6 +136,7 @@ unsigned long csr_read_num(int csr_num)
> #endif
>
> default:
> + BUG();
> break;
> };
>
> @@ -197,6 +200,7 @@ void csr_write_num(int csr_num, unsigned long val)
> switchcase_csr_write_16(CSR_MHPMEVENT16, val)
>
> default:
> + BUG();
> break;
> };
>
> --
> 2.30.2
>
>
> --
> opensbi mailing list
> opensbi at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/opensbi
More information about the opensbi
mailing list