mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>,
	x86@kernel.org, linux-kernel@vger.kernel.org,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: [PATCH v1 6/6] x86/boot: Support nocfg parameter for earlyprintk
Date: Tue, 16 Jan 2018 16:53:18 +0100	[thread overview]
Message-ID: <20180116155318.eqjywakyalh5dvrd@gmail.com> (raw)
In-Reply-To: <1516100440.7000.1010.camel@linux.intel.com>


* Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> On Tue, 2018-01-16 at 04:12 +0100, Ingo Molnar wrote:
> > * Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
> > 
> > > @@ -133,12 +135,16 @@ static void parse_earlyprintk(void)
> > >  		if (arg[pos] == ',')
> > >  			pos++;
> > >  
> > > -		baud = simple_strtoull(arg + pos, &e, 0);
> > > -		if (baud == 0 || arg + pos == e)
> > > -			baud = DEFAULT_BAUD;
> > > +		if (strncmp(arg + pos, "nocfg", 5)) {
> > > +			baud = simple_strtoull(arg + pos, &e, 0);
> > > +			if (baud == 0 || arg + pos == e)
> > > +				baud = DEFAULT_BAUD;
> > > +		} else {
> > > +			configure = false;
> > > +		}
> > >  	}
> > >  
> > > -	early_serial_init(port, baud);
> > > +	early_serial_init(port, baud, configure);
> > >  }
> > >  
> > >  #define BASE_BAUD (1843200/16)
> > > @@ -162,6 +168,7 @@ static void parse_console_uart8250(void)
> > >  	char optstr[64], *options;
> > >  	int baud = DEFAULT_BAUD;
> > >  	unsigned long port = 0;
> > > +	bool configure = true;
> > >  
> > >  	/*
> > >  	 * console=uart8250,io,0x3f8,115200n8
> > > @@ -179,12 +186,16 @@ static void parse_console_uart8250(void)
> > >  	else
> > >  		return;
> > >  
> > > -	if (options && (options[0] == ','))
> > > -		baud = simple_strtoull(options + 1, &options, 0);
> > > -	else
> > > +	if (options[0] == ',') {
> > > +		if (strncmp(options + 1, "nocfg", 5))
> > > +			baud = simple_strtoull(options + 1,
> > > &options, 0);
> > > +		else
> > > +			configure = false;
> > > +	} else {
> > >  		baud = probe_baud(port);
> > 
> > These code patters seem very similar - could a common function be
> > factored out, to 
> > simplify future changes (such as the one done here)?
> 
> Need to think about. Moreoever, arch/x86/kernel/early_print.c contains
> even more duplication, though I understand why it's split to different
> folders.
> 
> And on top of that we have earlycon (which indeed would be more
> preferable solution). Perhaps, instead of playing with earlyprintk at
> boot stage we might parse earlycon option that more flexible?
> 
> P.S. In any choice at least patch 1 (and maybe patch 2) would be needed.

I'm fine with your current approach - and earlyprintk is preferred by many kernel 
developers. Was just wondering how hard it would be to create a common parser - 
and whether that's desirable at all (it might not be).

Thanks,

	Ingo

      reply	other threads:[~2018-01-16 15:53 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-14 14:32 [PATCH v1 1/6] x86/boot: Convert early_serial_base to unsigned long Andy Shevchenko
2018-01-14 14:32 ` [PATCH v1 2/6] x86/boot: Introduce helpers for serial I/O Andy Shevchenko
2018-01-14 14:32 ` [PATCH v1 3/6] x86/boot: Add MMIO byte accessors Andy Shevchenko
2018-01-14 14:32 ` [PATCH v1 4/6] x86/boot: Assume MMIO if serial base address supplied via earlyprintk Andy Shevchenko
2018-01-16  3:13   ` Ingo Molnar
2018-01-16 10:55     ` Andy Shevchenko
2018-01-16 15:55       ` Ingo Molnar
2018-05-03 10:45         ` Andy Shevchenko
2018-01-14 14:32 ` [PATCH v1 5/6] x86/boot: Allow longer parameter list for earlyprintk Andy Shevchenko
2018-01-16  3:11   ` Ingo Molnar
2018-01-16 10:57     ` Andy Shevchenko
2018-01-16 15:51       ` Ingo Molnar
2018-05-03 11:48         ` Andy Shevchenko
2018-01-14 14:32 ` [PATCH v1 6/6] x86/boot: Support nocfg parameter " Andy Shevchenko
2018-01-16  3:12   ` Ingo Molnar
2018-01-16 11:00     ` Andy Shevchenko
2018-01-16 15:53       ` Ingo Molnar [this message]

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=20180116155318.eqjywakyalh5dvrd@gmail.com \
    --to=mingo@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome