From: marc.zyngier@arm.com (Marc Zyngier)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm64: add support for uart earlyprintk
Date: Thu, 28 Feb 2013 11:34:17 +0000 [thread overview]
Message-ID: <512F40B9.6020105@arm.com> (raw)
In-Reply-To: <1362049268-26822-1-git-send-email-apatel@apm.com>
On 28/02/13 11:01, Anup Patel wrote:
Hi Anup,
> Signed-off-by: Anup Patel <apatel@apm.com>
A proper patch description would be nice.
> ---
> arch/arm64/kernel/early_printk.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/arch/arm64/kernel/early_printk.c b/arch/arm64/kernel/early_printk.c
> index 7e320a2..62953ed 100644
> --- a/arch/arm64/kernel/early_printk.c
> +++ b/arch/arm64/kernel/early_printk.c
> @@ -29,6 +29,21 @@ static void __iomem *early_base;
> static void (*printch)(char ch);
>
> /*
> + * UART (8250/16550) single character TX.
> + */
> +static void uart_printch(char ch)
> +{
> +#define UART_LSR 0x14
> +#define UART_TX 0x0
Please use the constants defined in include/uapi/linux/serial_reg.h,
together with the proper shifts.
> +
> + while (!(readl_relaxed(early_base + UART_LSR) & 0x20))
> + ;
You may want to test both UART_LSR_TEMT and UART_LSR_THRE here.
> + writeb_relaxed(ch, early_base + UART_TX);
> + while (!(readl_relaxed(early_base + UART_LSR) & 0x20))
> + ;
Why do you have to wait again here? It should be enough to do in only
once when entering the function.
> +}
> +
> +/*
> * PL011 single character TX.
> */
> static void pl011_printch(char ch)
> @@ -47,6 +62,7 @@ struct earlycon_match {
>
> static const struct earlycon_match earlycon_match[] __initconst = {
> { .name = "pl011", .printch = pl011_printch, },
> + { .name = "uart", .printch = uart_printch, },
"uart" is way too generic. pl011 is an UART too, and I suspect most of
the backends that are going to be added here over time will be UARTs.
"uart8250" would be a possibility (and actually consistent with the rest
of the kernel, see drivers/tty/serial/8250/8250_early.c.
Cheers,
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2013-02-28 11:34 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-28 11:01 [PATCH] arm64: add support for uart earlyprintk Anup Patel
2013-02-28 11:34 ` Marc Zyngier [this message]
2013-02-28 12:10 ` Catalin Marinas
2013-02-28 12:52 ` Marc Zyngier
2013-02-28 14:06 ` Anup Patel
2013-02-28 15:31 ` Catalin Marinas
2013-02-28 16:54 ` Anup Patel
2013-02-28 13:56 ` Anup Patel
2013-02-28 14:03 ` Rob Herring
2013-02-28 14:11 ` Anup Patel
2013-02-28 15:02 ` Rob Herring
2013-02-28 16:58 ` Anup Patel
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=512F40B9.6020105@arm.com \
--to=marc.zyngier@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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.