[PATCH 1/2] lib: utils: Implement "64bit-mmio" property parsing
Anup Patel
Anup.Patel at wdc.com
Sat Apr 17 12:25:30 BST 2021
> -----Original Message-----
> From: opensbi <opensbi-bounces at lists.infradead.org> On Behalf Of
> guoren at kernel.org
> Sent: 13 April 2021 09:14
> To: guoren at kernel.org; Alistair Francis <Alistair.Francis at wdc.com>;
> anup at brainfault.org
> Cc: opensbi at lists.infradead.org; Guo Ren <guoren at linux.alibaba.com>;
> Anup Patel <Anup.Patel at wdc.com>; Xiang W <wxjstz at 126.com>
> Subject: [PATCH 1/2] lib: utils: Implement "64bit-mmio" property parsing
>
> From: Guo Ren <guoren at linux.alibaba.com>
>
> Figure out CLINT has_64bit_mmio from DT node and using antonym for
> compatibility.
>
> Signed-off-by: Guo Ren <guoren at linux.alibaba.com>
> Cc: Anup Patel <anup.patel at wdc.com>
> Cc: Xiang W <wxjstz at 126.com>
Looks good to me.
Reviewed-by: Anup Patel <anup.patel at wdc.com>
Regards,
Anup
> ---
> lib/utils/fdt/fdt_helper.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c index
> bf19ff9..909de01 100644
> --- a/lib/utils/fdt/fdt_helper.c
> +++ b/lib/utils/fdt/fdt_helper.c
> @@ -442,8 +442,9 @@ int fdt_parse_clint_node(void *fdt, int nodeoffset,
> bool for_timer,
> if (clint->hart_count < count)
> clint->hart_count = count;
>
> - /* TODO: We should figure-out CLINT has_64bit_mmio from DT node
> */
> clint->has_64bit_mmio = TRUE;
> + if (fdt_getprop(fdt, nodeoffset, "clint,has-no-64bit-mmio", &count))
> + clint->has_64bit_mmio = FALSE;
>
> return 0;
> }
> --
> 2.7.4
>
>
> --
> opensbi mailing list
> opensbi at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/opensbi
More information about the opensbi
mailing list