diff options
Diffstat (limited to 'include/sbi_utils/fdt/fdt_helper.h')
-rw-r--r-- | include/sbi_utils/fdt/fdt_helper.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sbi_utils/fdt/fdt_helper.h b/include/sbi_utils/fdt/fdt_helper.h index 72fb167..1b780fb 100644 --- a/include/sbi_utils/fdt/fdt_helper.h +++ b/include/sbi_utils/fdt/fdt_helper.h @@ -54,6 +54,11 @@ int fdt_parse_plic_node(void *fdt, int nodeoffset, struct plic_data *plic); int fdt_parse_plic(void *fdt, struct plic_data *plic, const char *compat); +struct clint_data; + +int fdt_parse_clint_node(void *fdt, int nodeoffset, bool for_timer, + struct clint_data *clint); + int fdt_parse_compat_addr(void *fdt, unsigned long *addr, const char *compatible); |