cbmem: Enable AArch64 support
TEST=on Chromebook Kevin with 64bit userland, it works well. Change-Id: If16065000214c6cff9c14a14c5b5f44faca38153 Signed-off-by: Adam Kallai <kadam@inf.u-szeged.hu> Reviewed-on: https://review.coreboot.org/c/29978 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
8885529e15
commit
66c22508c7
|
@ -1123,7 +1123,7 @@ static void print_usage(const char *name, int exit_code)
|
||||||
exit(exit_code);
|
exit(exit_code);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __arm__
|
#if defined(__arm__) || defined(__aarch64__)
|
||||||
static void dt_update_cells(const char *name, int *addr_cells_ptr,
|
static void dt_update_cells(const char *name, int *addr_cells_ptr,
|
||||||
int *size_cells_ptr)
|
int *size_cells_ptr)
|
||||||
{
|
{
|
||||||
|
@ -1236,7 +1236,7 @@ static char *dt_find_compat(const char *parent, const char *compat,
|
||||||
closedir(dir);
|
closedir(dir);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* __arm__ */
|
#endif /* defined(__arm__) || defined(__aarch64__) */
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
|
@ -1339,7 +1339,7 @@ int main(int argc, char** argv)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __arm__
|
#if defined(__arm__) || defined(__aarch64__)
|
||||||
int addr_cells, size_cells;
|
int addr_cells, size_cells;
|
||||||
char *coreboot_node = dt_find_compat("/proc/device-tree", "coreboot",
|
char *coreboot_node = dt_find_compat("/proc/device-tree", "coreboot",
|
||||||
&addr_cells, &size_cells);
|
&addr_cells, &size_cells);
|
||||||
|
|
Loading…
Reference in New Issue