mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-21 18:57:16 +08:00
1. PSCI port to system power. 2. Support builtin fdt. 3. Update system aspace size. 4. Support DMA memory probe. 5. Fixup not backtrace in Serror for device bus fault. Signed-off-by: GuEe-GUI <2991707448@qq.com>
21 lines
371 B
ArmAsm
Executable File
21 lines
371 B
ArmAsm
Executable File
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-08-24 GuEe-GUI first version
|
|
*/
|
|
|
|
#include <rtconfig.h>
|
|
|
|
.data
|
|
|
|
.align 8
|
|
.globl rt_hw_builtin_fdt
|
|
rt_hw_builtin_fdt:
|
|
#ifdef RT_BUILTIN_FDT_PATH
|
|
.incbin RT_BUILTIN_FDT_PATH
|
|
#endif
|