[PATCH v1 2/3] lib: fdt: Don't use sbi_string functions
Chang, Abner (HPS SW/FW Technologist)
abner.chang at hpe.com
Tue May 18 01:36:24 BST 2021
After addressing Xiang's comment.
Reviewed-by: Abner Chang <abner.chang at hpe.com>
> -----Original Message-----
> From: Xiang W [mailto:wxjstz at 126.com]
> Sent: Monday, May 17, 2021 9:54 PM
> To: Schaefer, Daniel <daniel.schaefer at hpe.com>; opensbi at lists.infradead.org
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang at hpe.com>; Anup
> Patel <Anup.Patel at wdc.com>
> Subject: Re: [PATCH v1 2/3] lib: fdt: Don't use sbi_string functions
>
> 在 2021-05-17一的 19:33 +0800,Daniel Schaefer写道:
> > When SBI is built by external firmware, we need to use their
> > functions,
> > defined in libfdt_env.h.
> > Just like 2cfd2fc9048806353298a1b967abf985901e36e8
> >
> > Cc: Abner Chang <abner.chang at hpe.com>
> > Cc: Anup Patel <Anup.Patel at wdc.com>
> > Signed-off-by: Daniel Schaefer <daniel.schaefer at hpe.com>
> Look good to me.
>
> but lost sbi_memcpy in line 340.
>
> Regards
> Xiang W
> > ---
> > lib/utils/fdt/fdt_domain.c | 7 ++++---
> > 1 file changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/lib/utils/fdt/fdt_domain.c b/lib/utils/fdt/fdt_domain.c
> > index 95c195d65238..c1f6a8c8a10b 100644
> > --- a/lib/utils/fdt/fdt_domain.c
> > +++ b/lib/utils/fdt/fdt_domain.c
> > @@ -9,6 +9,7 @@
> > */
> >
> > #include <libfdt.h>
> > +#include <libfdt_env.h>
> > #include <sbi/sbi_domain.h>
> > #include <sbi/sbi_error.h>
> > #include <sbi/sbi_hartmask.h>
> > @@ -95,7 +96,7 @@ static int __fixup_find_domain_offset(void *fdt,
> > int doff, void *p)
> > {
> > struct __fixup_find_domain_offset_info *fdo = p;
> >
> > - if (!sbi_strcmp(fdo->name, fdt_get_name(fdt, doff, NULL)))
> > + if (!strcmp(fdo->name, fdt_get_name(fdt, doff, NULL)))
> > *fdo->doffset = doff;
> >
> > return 0;
> > @@ -287,7 +288,7 @@ static int __fdt_parse_domain(void *fdt, int
> > domain_offset, void *opaque)
> > regions = &fdt_regions[fdt_domains_count][0];
> >
> > /* Read DT node name */
> > - sbi_strncpy(dom->name, fdt_get_name(fdt, domain_offset, NULL),
> > + strncpy(dom->name, fdt_get_name(fdt, domain_offset, NULL),
> > sizeof(dom->name));
> > dom->name[sizeof(dom->name) - 1] = '\0';
> >
> > @@ -313,7 +314,7 @@ static int __fdt_parse_domain(void *fdt, int
> > domain_offset, void *opaque)
> >
> > /* Setup memregions from DT */
> > val32 = 0;
> > - sbi_memset(regions, 0,
> > + memset(regions, 0,
> > sizeof(*regions) * (FDT_DOMAIN_REGION_MAX_COUNT +
> > 1));
> > dom->regions = regions;
> > err = fdt_iterate_each_memregion(fdt, domain_offset, &val32,
> > --
> > 2.30.1
> >
> >
More information about the opensbi
mailing list