public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/3] Initialisation Sequence Framework
Date: Thu, 3 May 2012 01:50:38 +0200	[thread overview]
Message-ID: <201205030150.38249.marex@denx.de> (raw)
In-Reply-To: <1335108188-21875-1-git-send-email-graeme.russ@gmail.com>

Dear Graeme Russ,

> Well here it is (finally) - My Initialisation Sequence Framework
> 
> This series is limited to x86 and is controlled by CONFIG_INIT_FUNC so
> no other arch should be effected. I don't have any cross compilers, so I
> would appreciate if others could confirm the zero impact assertion
> 
> Asbestos suit on

Oh this is gonna be the flamewar of the year now :-E~

Gasoline ready, asbestos pants - check, flamethrower on ... let's go!

                                         )  (  (    (
                                         (  )  () @@  )  (( (
                                     (      (  )( @@  (  )) ) (
                                   (    (  ( ()( /---\   (()( (
     _______                            )  ) )(@ !O O! )@@  ( ) ) )
    <   ____)                      ) (  ( )( ()@ \ o / (@@@@@ ( ()( )
 /--|  |(  o|                     (  )  ) ((@@(@@ !o! @@@@(@@@@@)() (
|   >   \___|                      ) ( @)@@)@ /---\-/---\ )@@@@@()( )
|  /---------+                    (@@@@)@@@( // /-----\ \\ @@@)@@@@@(  .
| |    \ =========______/|@@@@@@@@@@@@@(@@@ // @ /---\ @ \\ @(@@@(@@@ .  .
|  \   \\=========------\|@@@@@@@@@@@@@@@@@ O @@@ /-\ @@@ O @@(@@)@@ @   .
|   \   \----+--\-)))           @@@@@@@@@@ !! @@@@ % @@@@ !! @@)@@@ .. .
|   |\______|_)))/             .    @@@@@@ !! @@ /---\ @@ !! @@(@@@ @ . .
 \__==========           *        .    @@ /MM  /\O   O/\  MM\ @@@@@@@. .
    |   |-\   \          (       .      @ !!!  !! \-/ !!  !!! @@@@@ .
    |   |  \   \          )      .     .  @@@@ !!     !!  .(. @.  .. .
    |   |   \   \        (    /   .(  . \)). ( |O  )( O! @@@@ . )      .
    |   |   /   /         ) (      )).  ((  .) !! ((( !! @@ (. ((. .   .
    |   |  /   /   ()  ))   ))   .( ( ( ) ). ( !!  )( !! ) ((   ))  ..
    |   |_<   /   ( ) ( (  ) )   (( )  )).) ((/ |  (  | \(  )) ((. ).
____<_____\\__\__(___)_))_((_(____))__(_(___.oooO_____Oooo.(_(_)_)((_


Artist:  P.r.i.m.a.l
Borrowed from: http://www.ascii-art.de/ascii/def/flamethrower.txt
Copyright ? 1997-2004 Andreas Freise

> Fire away ;)
> 
> Regards,
> 
> Graeme
> 
> Graeme Russ (3):
>   init_func: Add fundamental framework
>   init_func: Add x86 support
>   init_func: Use for eNET board
> 
>  Makefile                         |   34 +-
>  arch/x86/cpu/cpu.c               |    3 +
>  arch/x86/cpu/sc520/sc520_sdram.c |    3 +
>  arch/x86/cpu/sc520/sc520_timer.c |    2 +
>  arch/x86/cpu/u-boot.lds          |   23 +
>  arch/x86/lib/board.c             |   10 +-
>  arch/x86/lib/init_helpers.c      |   14 +
>  arch/x86/lib/init_wrappers.c     |   11 +-
>  arch/x86/lib/pcat_interrupts.c   |    2 +
>  arch/x86/lib/relocate.c          |    4 +
>  board/eNET/eNET.c                |    5 +
>  common/Makefile                  |    2 +
>  common/console.c                 |    3 +
>  common/env_dataflash.c           |    1 +
>  common/env_eeprom.c              |    1 +
>  common/env_fat.c                 |    1 +
>  common/env_flash.c               |    2 +
>  common/env_mgdisk.c              |    1 +
>  common/env_mmc.c                 |    1 +
>  common/env_nand.c                |    1 +
>  common/env_nowhere.c             |    1 +
>  common/env_nvram.c               |    1 +
>  common/env_onenand.c             |    1 +
>  common/env_sf.c                  |    1 +
>  common/serial.c                  |    2 +
>  common/stdio.c                   |    2 +
>  config.mk                        |    2 +
>  doc/README.INIT_FUNC             |   65 ++
>  include/configs/eNET.h           |    1 +
>  include/init_func.h              |   37 +
>  tools/Makefile                   |    6 +
>  tools/mkinitseq.c                | 1512
> ++++++++++++++++++++++++++++++++++++++ 32 files changed, 1746
> insertions(+), 9 deletions(-)
>  create mode 100644 doc/README.INIT_FUNC
>  create mode 100644 include/init_func.h
>  create mode 100644 tools/mkinitseq.c

Best regards,
Marek Vasut

      parent reply	other threads:[~2012-05-02 23:50 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-22 15:23 [U-Boot] [PATCH 0/3] Initialisation Sequence Framework Graeme Russ
2012-04-22 15:23 ` [U-Boot] [PATCH 1/3] init_func: Add fundamental framework Graeme Russ
2012-05-03  0:08   ` Marek Vasut
2012-05-03  3:06     ` Graeme Russ
2012-05-03  3:18       ` Marek Vasut
2012-05-03  4:12         ` Graeme Russ
2012-05-03 14:38           ` Marek Vasut
2012-04-22 15:23 ` [U-Boot] [PATCH 2/3] init_func: Add x86 support Graeme Russ
2012-04-22 15:23 ` [U-Boot] [PATCH 3/3] init_func: Use for eNET board Graeme Russ
2012-05-02 23:50 ` Marek Vasut [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=201205030150.38249.marex@denx.de \
    --to=marex@denx.de \
    --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