All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matt Sealey <matt@genesi-usa.com>
To: Olaf Hering <olaf@aepfle.de>
Cc: linuxppc-dev@ozlabs.org, Paul Mackeras <paulus@samba.org>
Subject: Re: [PATCH] autodetect serial console on efika
Date: Mon, 09 Apr 2007 13:56:55 +0100	[thread overview]
Message-ID: <461A3817.8080303@genesi-usa.com> (raw)
In-Reply-To: <20070331150823.GA25421@aepfle.de>

Can I suggest a further update to this patch; the serial redirection should
be done on the basis of the node *name* too. The only serial output device
that is 'tied' to the serial console that way is the /failsafe node (if this
is in fact the chosen stdout/stdin device).

It is entirely possible that a user may redirect the OF console output to
the PSC6 controller or another internal or external serial device (PCI
serial controller or so). In this case, the boot console will simply switch
to the UART on the back, which may be some other custom device and not a
valid console.

It is also entirely possible that we move failsafe, too, however. Is it
possible to check the PSC numbering and ensure that it only uses ttyPSC0
for the serial console, if it is in fact using the PSC connected to the
RS232 port on the back of the board (this is in the device tree isn't it?
If not.. can someone suggest how we report this information?? :)

Please tell me if that's an insane suggestion or too much like a fringe
benefit for users and not a useful actual feature?

-- 
Matt Sealey <matt@genesi-usa.com>
Genesi, Manager, Developer Relations

Olaf Hering wrote:
> Efika boards have to be booted with console=ttyPSC0 unless there is a
> graphics card plugged in. Detect if the firmware stdout is the serial
> connector.
> 
> Signed-off-by: Olaf Hering <olaf@aepfle.de>
> 
> ---
>  arch/powerpc/platforms/52xx/efika.c |   26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> Index: b/arch/powerpc/platforms/52xx/efika.c
> ===================================================================
> --- a/arch/powerpc/platforms/52xx/efika.c
> +++ b/arch/powerpc/platforms/52xx/efika.c
> @@ -21,6 +21,7 @@
>  #include <linux/initrd.h>
>  #include <linux/timer.h>
>  #include <linux/pci.h>
> +#include <linux/console.h>
>  
>  #include <asm/io.h>
>  #include <asm/irq.h>
> @@ -221,12 +222,37 @@ static int __init efika_probe(void)
>  	return 1;
>  }
>  
> +static void __init efika_init_early(void)
> +{
> +#ifdef CONFIG_SERIAL_MPC52xx
> +	struct device_node *stdout_node;
> +	const char *device_type;
> +
> +	if (strstr(cmd_line, "console="))
> +		return;
> +	/* find the boot console from /chosen/stdout */
> +	if (!of_chosen)
> +		return;
> +	device_type = get_property(of_chosen, "linux,stdout-path", NULL);
> +	if (!device_type)
> +		return;
> +	stdout_node = of_find_node_by_path(device_type);
> +	if (stdout_node) {
> +		device_type = get_property(stdout_node, "device_type", NULL);
> +		if (device_type && strcmp(device_type, "serial") == 0)
> +			add_preferred_console("ttyPSC", 0, NULL);
> +		of_node_put(stdout_node);
> +	}
> +#endif
> +}
> +
>  define_machine(efika)
>  {
>  	.name			= EFIKA_PLATFORM_NAME,
>  	.probe			= efika_probe,
>  	.setup_arch		= efika_setup_arch,
>  	.init			= mpc52xx_declare_of_platform_devices,
> +	.init_early		= efika_init_early,
>  	.show_cpuinfo		= efika_show_cpuinfo,
>  	.init_IRQ		= mpc52xx_init_irq,
>  	.get_irq		= mpc52xx_get_irq,
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev

  parent reply	other threads:[~2007-04-09 13:31 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-31 15:08 [PATCH] autodetect serial console on efika Olaf Hering
2007-03-31 17:06 ` Grant Likely
2007-04-09 12:56 ` Matt Sealey [this message]
2007-04-10 16:52   ` Olaf Hering
2007-04-10 20:25     ` Sylvain Munaut
2007-04-11  6:17       ` Olaf Hering
2007-04-11 18:47       ` Matt Sealey
2007-04-11 18:42     ` Matt Sealey
2007-04-12 15:59 ` Olaf Hering
2007-04-13  9:50   ` Matt Sealey
2008-01-21 15:29 ` Olaf Hering
2008-01-21 15:37   ` [PATCH] autodetect serial console on pegasos2 Olaf Hering
2008-01-21 15:56   ` [PATCH] autodetect serial console on efika Geert Uytterhoeven
2008-01-21 16:09   ` Andreas Schwab
2008-01-21 18:45   ` Grant Likely
2008-01-21 20:34     ` Olaf Hering
2008-01-21 20:38       ` Grant Likely

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=461A3817.8080303@genesi-usa.com \
    --to=matt@genesi-usa.com \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=olaf@aepfle.de \
    --cc=paulus@samba.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.