mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 06:24:17 +00:00

The splash screen loading code can be reused by other compulab boards. For now extract it to a common location for further reuse. This also switches the splash code dependency from CONFIG_LCD to CONFIG_SPLASH_SCREEN as it should normally be. In addition this patch fixes the accidental dependency of the get_board_mem_timings() function on CONFIG_LCD, by just moving the splash code and leaving the above function intact. Signed-off-by: Igor Grinberg <grinberg@compulab.co.il> Reviewed-by: Tom Rini <trini@ti.com>
36 lines
804 B
C
36 lines
804 B
C
/*
|
|
* (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il>
|
|
*
|
|
* Authors: Igor Grinberg <grinberg@compulab.co.il>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CL_COMMON_
|
|
#define _CL_COMMON_
|
|
|
|
#include <asm/errno.h>
|
|
|
|
void cl_print_pcb_info(void);
|
|
|
|
#ifdef CONFIG_CMD_USB
|
|
int cl_usb_hub_init(int gpio, const char *label);
|
|
void cl_usb_hub_deinit(int gpio);
|
|
#else /* !CONFIG_CMD_USB */
|
|
static inline int cl_usb_hub_init(int gpio, const char *label)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
static inline void cl_usb_hub_deinit(int gpio) {}
|
|
#endif /* CONFIG_CMD_USB */
|
|
|
|
#ifdef CONFIG_SPLASH_SCREEN
|
|
int cl_splash_screen_prepare(int nand_offset);
|
|
#else /* !CONFIG_SPLASH_SCREEN */
|
|
static inline int cl_splash_screen_prepare(int nand_offset)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
#endif /* CONFIG_SPLASH_SCREEN */
|
|
|
|
#endif /* _CL_COMMON_ */
|