board.h 580 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-04-16 bigmagic first version
  9. */
  10. #ifndef BOARD_H__
  11. #define BOARD_H__
  12. #include <stdint.h>
  13. #include "raspi4.h"
  14. #include "mmu.h"
  15. #include "ioremap.h"
  16. extern unsigned char __bss_start;
  17. extern unsigned char __bss_end;
  18. #define RT_HW_HEAP_BEGIN (void*)&__bss_end
  19. #define RT_HW_HEAP_END (void*)(RT_HW_HEAP_BEGIN + 64 * 1024 * 1024)
  20. void rt_hw_board_init(void);
  21. extern rt_mmu_info mmu_info;
  22. #endif