mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 01:38:22 +00:00
78ba7b61da
All the code used to manage the mother boards will be common to soon to come CPU board. Move all that code into common.c Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
15 lines
383 B
C
15 lines
383 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef _BOARD_CSSI_COMMON_H
|
|
#define _BOARD_CSSI_COMMON_H
|
|
|
|
int read_eeprom(u8 *din, int len);
|
|
int ft_board_setup_common(void *blob);
|
|
void ft_board_setup_phy3(void);
|
|
int checkboard_common(void);
|
|
void misc_init_r_common(void);
|
|
void iop_setup_common(void);
|
|
void iop_setup_mcr(void);
|
|
void iop_setup_miae(void);
|
|
|
|
#endif /* _BOARD_CSSI_COMMON_H */
|