dtb_head.h 372 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef _RT_DTB_HEAD_H
  7. #define _RT_DTB_HEAD_H
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <stdbool.h>
  11. #include <stdlib.h>
  12. void *get_fdt_blob(void);
  13. struct dtb_node *get_dtb_node_head(void);
  14. bool dtb_node_active(void);
  15. int device_tree_setup(void *mem_addr);
  16. #endif