Skip to content
Snippets Groups Projects
Commit 39a91422 authored by Alessandro Rubini's avatar Alessandro Rubini Committed by Tom Rix
Browse files

edb93xx: enable the uart in devicecfg register


printf goes to uart1, but it will block forever waiting for
busy to go off unless the uart is enabled first.

Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
parent 822bd70d
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,12 @@ int board_init(void)
value |= SYSCON_PWRCNT_UART_BAUD;
writel(value, &syscon->pwrcnt);
/* Enable the uart in devicecfg */
value = readl(&syscon->devicecfg);
value |= 1<<18 /* U1EN */;
writel(0xAA, &syscon->sysswlock);
writel(value, &syscon->devicecfg);
/* Machine number, as defined in linux/arch/arm/tools/mach-types */
gd->bd->bi_arch_number = CONFIG_MACH_TYPE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment