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>
This commit is contained in:
parent
11f86cbaff
commit
e2c219cd71
@ -65,6 +65,7 @@ typedef void (interrupt_handler_t)(void *);
|
|||||||
/* startup functions, used in:
|
/* startup functions, used in:
|
||||||
* common/board_f.c
|
* common/board_f.c
|
||||||
* common/init/board_init.c
|
* common/init/board_init.c
|
||||||
|
* common/board_r.c
|
||||||
*/
|
*/
|
||||||
#include <init.h>
|
#include <init.h>
|
||||||
|
|
||||||
@ -95,19 +96,13 @@ int run_command_repeatable(const char *cmd, int flag);
|
|||||||
*/
|
*/
|
||||||
int run_command_list(const char *cmd, int len, int flag);
|
int run_command_list(const char *cmd, int len, int flag);
|
||||||
|
|
||||||
/* arch/$(ARCH)/lib/board.c */
|
|
||||||
void board_init_r(gd_t *, ulong) __attribute__ ((noreturn));
|
|
||||||
|
|
||||||
int checkboard(void);
|
int checkboard(void);
|
||||||
int show_board_info(void);
|
int show_board_info(void);
|
||||||
int last_stage_init(void);
|
int checkflash(void);
|
||||||
int mac_read_from_eeprom(void);
|
int checkdram(void);
|
||||||
extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
|
extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
|
||||||
extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
|
extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
|
||||||
int set_cpu_clk_info(void);
|
|
||||||
int mdm_init(void);
|
int mdm_init(void);
|
||||||
int update_flash_size(int flash_size);
|
|
||||||
int arch_early_init_r(void);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show the DRAM size in a board-specific way
|
* Show the DRAM size in a board-specific way
|
||||||
@ -254,14 +249,8 @@ int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
|
|||||||
#endif
|
#endif
|
||||||
int get_env_id (void);
|
int get_env_id (void);
|
||||||
|
|
||||||
void pci_init (void);
|
|
||||||
void pci_init_board(void);
|
void pci_init_board(void);
|
||||||
|
|
||||||
int misc_init_r (void);
|
|
||||||
#if defined(CONFIG_VID)
|
|
||||||
int init_func_vid(void);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* common/exports.c */
|
/* common/exports.c */
|
||||||
void jumptable_init(void);
|
void jumptable_init(void);
|
||||||
|
|
||||||
@ -386,8 +375,6 @@ int get_clocks (void);
|
|||||||
ulong get_bus_freq (ulong);
|
ulong get_bus_freq (ulong);
|
||||||
int get_serial_clock(void);
|
int get_serial_clock(void);
|
||||||
|
|
||||||
int cpu_init_r (void);
|
|
||||||
|
|
||||||
/* $(CPU)/interrupts.c */
|
/* $(CPU)/interrupts.c */
|
||||||
int interrupt_init (void);
|
int interrupt_init (void);
|
||||||
void timer_interrupt (struct pt_regs *);
|
void timer_interrupt (struct pt_regs *);
|
||||||
|
@ -149,6 +149,20 @@ void board_init_f_init_reserve(ulong base);
|
|||||||
void arch_setup_gd(gd_t *gd_ptr);
|
void arch_setup_gd(gd_t *gd_ptr);
|
||||||
|
|
||||||
/* common/board_r.c */
|
/* 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__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
/* Put only stuff here that the assembler can digest */
|
/* Put only stuff here that the assembler can digest */
|
||||||
|
Loading…
Reference in New Issue
Block a user