diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-25 08:20:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-25 08:20:22 -0400 |
commit | d202f67db0771247de562af5d6a5df778702857b (patch) | |
tree | 7c48f316e008c90e19b54f93e1ede85bfe237fcb /include/init.h | |
parent | 4d131cdb6762694fc1a66d6b3e39a82f9ec691cf (diff) | |
parent | 691132e850539cb0956a106933d5bde37470bfc7 (diff) |
Merge branch '2020-04-25-master-imports'
- Assorted minor fixes
- Actions S700 SoC and Cubieboard7 support
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/init.h b/include/init.h index 2a33a3fd1e..9ef88c966b 100644 --- a/include/init.h +++ b/include/init.h @@ -130,6 +130,18 @@ int testdram(void); int arch_reserve_stacks(void); /** + * arch_reserve_mmu() - Reserve memory for MMU TLB table + * + * Architecture-specific routine for reserving memory for the MMU TLB table. + * This is used in generic board init sequence in common/board_f.c. + * + * If an implementation is not provided, it will just be a nop stub. + * + * Return: 0 if OK + */ +int arch_reserve_mmu(void); + +/** * init_cache_f_r() - Turn on the cache in preparation for relocation * * Return: 0 if OK, -ve on error @@ -145,7 +157,6 @@ int init_cache_f_r(void); int print_cpuinfo(void); #endif int timer_init(void); -int reserve_mmu(void); int misc_init_f(void); #if defined(CONFIG_DTB_RESELECT) |