summaryrefslogtreecommitdiff
path: root/include/init.h
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2018-03-13 13:57:02 +0100
committerTom Rini <trini@konsulko.com>2018-03-16 14:56:59 -0400
commite2c219cd7103761826f4ca99c905f547ade34c97 (patch)
tree824e5688cf5cbad2c59cc5c420025bb807a7a8b0 /include/init.h
parent11f86cbaff517da4561ab2ed05354671be6ef7a1 (diff)
downloadu-boot-e2c219cd7103761826f4ca99c905f547ade34c97.tar.gz
common: move board_r.c prototypes in init.h
Move function prototypes used in common/board_r.c from common.h to init.h Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'include/init.h')
-rw-r--r--include/init.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/init.h b/include/init.h
index f952602b2f..89e48f2689 100644
--- a/include/init.h
+++ b/include/init.h
@@ -149,6 +149,20 @@ void board_init_f_init_reserve(ulong base);
void arch_setup_gd(gd_t *gd_ptr);
/* common/board_r.c */
+void board_init_r(gd_t *id, ulong dest_addr) __attribute__ ((noreturn));
+
+int cpu_init_r(void);
+int last_stage_init(void);
+int mac_read_from_eeprom(void);
+int set_cpu_clk_info(void);
+int update_flash_size(int flash_size);
+int arch_early_init_r(void);
+void pci_init(void);
+int misc_init_r(void);
+#if defined(CONFIG_VID)
+int init_func_vid(void);
+#endif
+
#endif /* __ASSEMBLY__ */
/* Put only stuff here that the assembler can digest */