u-boot/board/cssi/common/common.h
Christophe Leroy 78ba7b61da board: cssi: Move all mother board code into common.c
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>
2023-04-28 17:52:23 +02:00

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 */