gmail did something funny the first time sending this, retrying
---------- Forwarded message ---------- From: Koen Kooi koen.kooi@linaro.org Date: 9 December 2015 at 08:15 Subject: Re: [Dev] Board recovery fail: stuck in TEE-CORE init To: Rob Herring rob.herring@linaro.org Cc: David Mandala davidm@linaro.org, _=e2=80=8e?= dev@lists.96boards.org, =?UTF-8?Q?dev_=e2=80=8e_@lists.96boards.org
On 8 December 2015 at 18:06, Rob Herring rob.herring@linaro.org wrote:
On Thu, Dec 3, 2015 at 10:35 PM, David Mandala davidm@linaro.org wrote:
On 12/3/15 4:32 PM, Kevin Hilman wrote:
Grant Likely glikely@secretlab.ca writes:
On 3 Dec 2015 07:46, "Victor Chong" victor.chong@linaro.org wrote:
On Thursday, December 3, 2015, Kevin Hilman khilman@kernel.org wrote:
aaaaah! I wasn't expecting partial output on UART0, then on UART3.
Yea.. the partial output can usually be ignored for the most part unless
you're working on those components directly.
After setting the right jumper settings on the UART board, I'm now seeing the BL1 on UART0 and the rest on UART3 (a.k.a. UART1 on the UART board... which is also confusing.)
It's more confusing than that. The UART board gives you UART2 & UART3. UART0 isn't available to it.
I suspect it's likely that hikey will not be the only one to have SoC UART numbering different that the UART board numbering. Maybe the UART board options should have different names, like UART_A and UART_B ?
It's the reason why we have UDEV rules now making the two UARTs on the LS connector /dev/tty96B0 and /dev/tty96B1 get rid of the confusion and make it MUCH easier to document things.
Please, no!
First, that only helps userspace. When I go add "console=tty96B0" and it doesn't work...
Second, now we need udev rules for every board. That will be fun when we have 96 of them.
It gets better, have a look at the actual udev rule:
https://github.com/96boards/96boards-tools/blob/master/70-96boards-common.ru...
Udev rules used to provide a common UART device name across different boards # DragonBoard 410c KERNEL=="ttyMSM1", SYMLINK+="tty96B0" KERNEL=="ttyMSM0", SYMLINK+="tty96B1" # HiKey KERNEL=="ttyAMA2", SYMLINK+="tty96B0" KERNEL=="ttyAMA3", SYMLINK+="tty96B1"
I'm eagerly awaiting the next board that is using ARM or QC UART IP and hooks up the ports in a different order.