AT91RM9200 hang in atmel_serial_putc

Sascha Hauer s.hauer at pengutronix.de
Thu Aug 18 00:38:31 PDT 2016


Hi Peter,

On Thu, Aug 18, 2016 at 03:08:36AM +0200, Peter Kardos wrote:
> Greetings,
> 
> I'm looking for a AT91 specialist that could help me debug barebox v2016.08.
> 
> I have a custom board running AT91RM9200 that came with a really old custom
> u-boot (v1.1.4, no ubifs support)...
> 
> The first bootloader I've ported (barebox v2015.07, using AT91RM9200ek as
> template) almost works; I'm having trouble getting networking (ping, dhcp)
> working with Micrel KSZ8721 phy. But it boots, works with the Flash, etc...
> With hopes, that this (networking issue) is resolved with the latest barebox
> release (using the same patchset and config) I've found (??) a another
> issue.
> 
> At first it seemed the board just does not boot, after having a look with a
> j-link it seems the board "hangs" in atmel_serial_putc().
> I've tried to look at the AT91RM9200 init (lowlevel, peripherals, driver)
> and could not find any significant change (rewrite, define changes, etc)...

So you have a jtag debugger attached, does it support showing registers?
What is the value of uart->base? Is it correct?
Also you could compare the UART registers with the ones from a working
U-Boot/barebox. Does atmel_serial_init_port() do everything correctly?
Finally it may be that the clock is disabled for some reason, then the
values written to the UART would never be shifted out.
Which instance of the UART are you using? It seems we have:

static struct clk_lookup usart_clocks_lookups[] = {
	CLKDEV_CON_DEV_ID("usart", "atmel_usart0", &mck),
	CLKDEV_CON_DEV_ID("usart", "atmel_usart1", &usart0_clk),
	CLKDEV_CON_DEV_ID("usart", "atmel_usart2", &usart1_clk),
	CLKDEV_CON_DEV_ID("usart", "atmel_usart3", &usart2_clk),
	CLKDEV_CON_DEV_ID("usart", "atmel_usart4", &usart3_clk),
};

The first clock seems to be always-on, but the others could be turned off.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



More information about the barebox mailing list