mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-09 12:13:00 -04:00
Davinci: ea20: Add early init to get early output from console
Use board_early_init_f so that the full boot log output can be displayed. Signed-off-by: Stefano Babic <sbabic@denx.de> CC: Sandeep Paulraj <s-paulraj@ti.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
This commit is contained in:
parent
17a8904b27
commit
1c6ec6dd33
@ -116,7 +116,7 @@ static const struct lpsc_resource lpsc[] = {
|
|||||||
{ DAVINCI_LPSC_GPIO },
|
{ DAVINCI_LPSC_GPIO },
|
||||||
};
|
};
|
||||||
|
|
||||||
int board_init(void)
|
int board_early_init_f(void)
|
||||||
{
|
{
|
||||||
struct davinci_gpio *gpio6_base =
|
struct davinci_gpio *gpio6_base =
|
||||||
(struct davinci_gpio *)DAVINCI_GPIO_BANK67;
|
(struct davinci_gpio *)DAVINCI_GPIO_BANK67;
|
||||||
@ -160,12 +160,6 @@ int board_init(void)
|
|||||||
&davinci_emif_regs->ab1cr); /* CS2 */
|
&davinci_emif_regs->ab1cr); /* CS2 */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* arch number of the board */
|
|
||||||
gd->bd->bi_arch_number = MACH_TYPE_EA20;
|
|
||||||
|
|
||||||
/* address of boot parameters */
|
|
||||||
gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Power on required peripherals
|
* Power on required peripherals
|
||||||
* ARM does not have access by default to PSC0 and PSC1
|
* ARM does not have access by default to PSC0 and PSC1
|
||||||
@ -201,6 +195,16 @@ int board_init(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int board_init(void)
|
||||||
|
{
|
||||||
|
/* arch number of the board */
|
||||||
|
gd->bd->bi_arch_number = MACH_TYPE_EA20;
|
||||||
|
|
||||||
|
/* address of boot parameters */
|
||||||
|
gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#ifdef CONFIG_DRIVER_TI_EMAC
|
#ifdef CONFIG_DRIVER_TI_EMAC
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user