From: Peter Hurley <peter@hurleysoftware.com>
To: Robert Schwebel <r.schwebel@pengutronix.de>
Cc: linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel@pengutronix.de
Subject: Re: earlycon: no match?
Date: Mon, 04 May 2015 10:01:37 -0400 [thread overview]
Message-ID: <55477BC1.6000805@hurleysoftware.com> (raw)
In-Reply-To: <20150503211054.GR15254@pengutronix.de>
Hi Robert,
On 05/03/2015 05:10 PM, Robert Schwebel wrote:
> Hi Peter,
>
> with 4.1-rc1, my boxes with early console enabled show something like
> this (the example is vexpress, but it for example also happens on an
> AM335x board):
>
> earlycon: no match for ttyAMA0,38400n8
This shouldn't impact any previous earlycon setup. Are you saying
you're seeing a regression?
How do you have early console enabled, via the command line or via DT?
> The box was booted with "console=ttyAMA0,38400n8" on the commandline.
> If I understand this right, the code in drivers/tty/serial/earlycon.c
> calls setup_earlycon() with the string above ("ttyAMA0,38400n8") and
> fails to find that string in the "names" part of the __earlycon_table,
> because for the pl011 component on vexpress, the early console was
> registered in drivers/tty/serial/amba-pl011.c with:
>
> OF_EARLYCON_DECLARE(pl011, "arm,pl011", pl011_early_console_setup);
> ^^^^^ name
>
> So isn't that trying to match "ttyAMA0" against "arm,pl011"? I have the
> feeling that I didn't understand the logic behind that.
>
> Can you elaborate about how this is supposed to work correctly?
Yeah, I've been meaning to write about this but simply haven't had the
time yet; apologies for that.
The facility is hopefully best explained by the existing 8250 exemplar.
Normally, an 8250 early console is started via command line with a
command line parameter like:
earlycon=uart,io,0x2f8,115200n8
Since 2007, an 8250 early console can also be started via command line
using console= instead, like:
console=uart,io,0x2f8,115200n8
In this alternate form, this early console will go on to become the
corresponding ttyS console.
However, that functionality was exclusive to 8250 console/earlycon.
To get this same behavior for the amba-pl011 console would look
something like:
/* drivers/tty/serial/amba-pl011.c */
/* returns 0 if the console matches; otherwise, non-zero to use default matching */
static int pl011_console_match(struct console *co, char *name, int idx, char *options)
{
unsigned char iotype;
unsigned long addr;
if (strncmp(name, "pl" 2) != 0 || idx != 11)
return -ENODEV;
if (uart_parse_earlycon(options, &iotype, &addr, &options))
return -ENODEV;
/* find the port from the addr */
for (i = 0; i < ARRAY_SIZE(amba_ports); i++) {
if (amba_ports[i] == NULL)
continue;
if (port->mapbase != addr)
continue;
co->index = i;
return pl011_console_setup(co, options);
}
return -ENODEV;
}
...
static struct console amba_console = {
...
.match = pl011_console_match,
...
};
Regards,
Peter Hurley
next prev parent reply other threads:[~2015-05-04 14:01 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-03 21:10 earlycon: no match? Robert Schwebel
2015-05-04 14:01 ` Peter Hurley [this message]
2015-05-04 16:52 ` Peter Hurley
2015-05-04 19:42 ` Robert Schwebel
2015-05-04 20:21 ` Peter Hurley
2015-05-04 20:52 ` Robert Schwebel
2015-05-04 21:27 ` Peter Hurley
2015-05-04 21:58 ` Robert Schwebel
2015-05-04 22:31 ` Peter Hurley
2015-05-05 4:51 ` Robert Schwebel
2015-05-05 10:39 ` Peter Hurley
2015-05-05 16:32 ` Robert Schwebel
2015-05-05 18:15 ` Peter Hurley
2015-05-05 17:06 ` Fabio Estevam
2015-05-07 17:09 ` Maciej W. Rozycki
2015-05-07 17:22 ` Peter Hurley
2015-05-07 20:14 ` Maciej W. Rozycki
2015-05-07 21:13 ` Peter Hurley
2015-05-07 22:25 ` Maciej W. Rozycki
2015-05-07 22:37 ` Peter Hurley
2015-05-08 16:11 ` Maciej W. Rozycki
2015-05-08 6:34 ` Sascha Hauer
2015-05-08 10:12 ` Peter Hurley
2015-05-04 20:22 ` Sascha Hauer
2015-05-04 20:34 ` Peter Hurley
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55477BC1.6000805@hurleysoftware.com \
--to=peter@hurleysoftware.com \
--cc=kernel@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=r.schwebel@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.