Hello,
I do not get output after line Starting kernel ...
I have found the relevant Troubleshooting page in the TI Wiki, a couple of posts here but so far failed to get the prints.
My u-boot configuration
bootargs console=ttyS0,115200n8 root=/dev/nfs noinitrd nfsroot=10.0.0.45:/var/www/share/fs,nolock,rsize=1024,wsize=1024 ip=10.0.0.148
In the hardware low level initialization code (head.S) I did following
setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, r9 @ ensure svc mode
@ and irqs disabled
mrc p15, 0, r9, c0, c0 @ get processor id
bl __lookup_processor_type @ r5=procinfo r9=cpuid
movs r10, r5 @ invalid processor (r5=0)?
#if 0
THUMB( it eq ) @ force fixup-able long branch encoding
beq __error_p @ yes, error 'p'
#endif
I tried also to patch hard coded arguments ttyS0 in the file board-omapl138-hawk.c, function omapl138_hawk_console_init()
I will appreciate any help.
Thank you.