public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2 RESEND] SPL: Allow user to disable CPU support library
Date: Thu, 22 Sep 2011 10:52:45 +0200	[thread overview]
Message-ID: <201109221052.45843.marek.vasut@gmail.com> (raw)
In-Reply-To: <4E792250.20604@freescale.com>

On Wednesday, September 21, 2011 01:31:28 AM Scott Wood wrote:
> On 09/20/2011 04:30 PM, Marek Vasut wrote:
> > On Tuesday, September 20, 2011 11:23:01 PM Scott Wood wrote:
> >> On 09/20/2011 04:16 PM, Marek Vasut wrote:
> >>> On Tuesday, September 20, 2011 09:12:08 PM Scott Wood wrote:
> >>>> On 09/19/2011 05:31 PM, Marek Vasut wrote:
> >>>>> Then you adjust the makefile there by ifdef CONFIG_SPL_BUILD
> >>>> 
> >>>> It's not quite that simple, since different SPLs will have different
> >>>> requirements.  Board config headers will need to define symbols like
> >>>> CONFIG_SPL_FEATURE and the makefiles will use both CONFIG_SPL_BUILD
> >>>> and CONFIG_SPL_FEATURE to determine which object files to include.
> >>> 
> >>> That kind of granularity is there already too -- though on driver
> >>> level. But so far it seem sufficient.
> >> 
> >> What's wrong with using that model for arch code as well?
> >> 
> >> Note that "so far" most of the existing SPL targets have not been
> >> converted to the new spl/.
> > 
> > Right, so when you hit the problem, you fix it. No need to overengineer
> > it right away.
> 
> It seems you hit the problem already, and you're trying to add an ad hoc
> workaround rather than apply the same concept to arch code that is to be
> used with drivers.
> 
> Wanting to staying consistent and simple is not overengineering.
> 
> >> It's not about rarity (which is often misjudged, BTW).  It's about
> >> whether the model for selecting code for the SPL is additive or
> >> subtractive, and whether we have a consistent mechanism or ad hockery
> >> from the start.
> >> 
> >> In nand_spl/ it was fully additive.  I'd like to keep it that way.
> > 
> > I see your point and I disagree. I'd use the majority vote here -- most
> > of the boards need it and rare ones don't -- so why put additional
> > burden on majority in favor of minority ?
> 
> Is it really such a burden to put something like
> 
> #define CONFIG_SPL_ARCH_CPU
> 
> in your board config header? 

Yes it's a burden. It's a burden to add this to all boards but one. It makes no 
sense.

> If you end up with several things that 95%
> of targets are including, factor them out into a common header, like
> include/config_cmd_default.h.  Or have a single define that selects a
> set of defaults.  Or integrate kconfig. :-)
> 
> I don't want to get into a situation where someone has to dig around to
> find out which bits of code are included by default, and what the
> special magic is to turn them off.
> 
> -Scott

  reply	other threads:[~2011-09-22  8:52 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-12  4:03 [U-Boot] [PATCH 0/2] SPL improvements Marek Vasut
2011-09-12  4:03 ` [U-Boot] [PATCH 1/2 RESEND] SPL: Make path to start.S configurable Marek Vasut
2011-10-05 19:08   ` Wolfgang Denk
2011-10-05 20:07     ` Wolfgang Denk
2011-10-05 20:15       ` Wolfgang Denk
2011-09-12  4:03 ` [U-Boot] [PATCH 2/2 RESEND] SPL: Allow user to disable CPU support library Marek Vasut
2011-09-15 22:57   ` Scott Wood
2011-09-15 23:17     ` Marek Vasut
2011-09-16 19:49       ` Scott Wood
2011-09-16 21:38         ` Marek Vasut
2011-09-16 21:42           ` Scott Wood
2011-09-16 21:47             ` Marek Vasut
2011-09-16 22:07               ` Scott Wood
2011-09-16 22:48                 ` Marek Vasut
2011-09-19 18:13                   ` Scott Wood
2011-09-19 22:31                     ` Marek Vasut
2011-09-20 19:12                       ` Scott Wood
2011-09-20 21:16                         ` Marek Vasut
2011-09-20 21:23                           ` Scott Wood
2011-09-20 21:30                             ` Marek Vasut
2011-09-20 23:31                               ` Scott Wood
2011-09-22  8:52                                 ` Marek Vasut [this message]
2011-10-05 21:44                                   ` Tom Rini
2011-10-05 22:02                                     ` Scott Wood
2011-10-05 22:20                                       ` Marek Vasut
2011-10-06  0:13   ` [U-Boot] [PATCH 1/2] " Marek Vasut
2011-10-06  0:13     ` [U-Boot] [PATCH 2/2] SPL: Allow ARM926EJS to avoid compiling in the CPU support code Marek Vasut
2011-10-18 21:33       ` Albert ARIBAUD
2011-10-18 22:30         ` Marek Vasut
2011-10-21 20:44       ` Marek Vasut
2011-10-21 21:52         ` Albert ARIBAUD
2011-10-21 22:00           ` Marek Vasut
2011-10-21 22:44             ` Albert ARIBAUD
2011-10-21 22:46               ` Marek Vasut
2011-10-21 23:08                 ` Albert ARIBAUD
2011-10-21 23:45                   ` Marek Vasut
2011-10-22  0:04                     ` Tom Rini
2011-10-22  0:19                       ` Marek Vasut
2011-10-22  0:41                         ` Albert ARIBAUD
2011-10-22  1:20                           ` Marek Vasut
2011-10-22  7:05                             ` Albert ARIBAUD
2011-10-24 10:14       ` [U-Boot] [PATCH 2/2 V2] " Marek Vasut
2011-11-03  0:05         ` Marek Vasut
2011-11-04 13:59           ` Marek Vasut
2011-11-08 21:15         ` Albert ARIBAUD
2011-10-06 15:54     ` [U-Boot] [PATCH 1/2] SPL: Allow user to disable CPU support library Scott Wood
2011-10-06 23:35       ` Marek Vasut
2011-09-12  4:12 ` [U-Boot] [PATCH 0/2] SPL improvements Marek Vasut
2011-10-05 11:04 ` Marek Vasut
2011-10-05 19:14   ` Wolfgang Denk

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=201109221052.45843.marek.vasut@gmail.com \
    --to=marek.vasut@gmail.com \
    --cc=u-boot@lists.denx.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox