public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-x86/master
@ 2011-02-12  4:42 Graeme Russ
  2011-02-12 19:33 ` Wolfgang Denk
  2011-03-07  4:37 ` Mike Frysinger
  0 siblings, 2 replies; 8+ messages in thread
From: Graeme Russ @ 2011-02-12  4:42 UTC (permalink / raw)
  To: u-boot

Wolfgang,

I believe I missed the 2011.03 merge window - I'm happy for these to go into 2011.06

The following changes since commit d1a79b71f7c5fd9e277e0feb35f049289df1ed0e:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-02-11 21:23:33 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-x86.git master

Graeme Russ (32):
      x86: Fix definition of global_data struct for asm-offsets.c
      x86: Align config.mk and linker scripts with other arches
      eNET: Create distinct board configurations
      x86: Parametize values used in linker script
      sc520: Sort Makefile
      x86: Fix mangled umlauts
      x86: Add stack dump to register dump
      x86: Move Global Descriptor Table defines to processor.h
      x86: Add processor flags header from linux
      x86: Call early_board_init when warm booting
      x86: Make cpu init functions weak
      sc520: Define MMCR address in include file
      sc520: Move board specific settings to board init function
      sc520: Remove printf calls from cpu_init_f
      eNET: Fix eNET Interrupt Setup for Linux
      eNET: Add RTC support to eNET
      eNET: Define MMCR values in config.h
      eNET: Rearrange PAR assignments
      eNET: General code cleanup
      x86: Move initial gd to fixed location
      x86: Use Cache-As-RAM for initial stack
      sc520: Move RAM sizing code from asm to C
      x86: Defer setup of final stack
      x86: Move call to dram_init_f into board_init_f
      x86: Move test for cold boot into init functions
      x86: Move console initialisation into board_init_f
      x86: Fix incorrect usage of relocation offset
      x86: Split board_init_f() into init_fnc_t compatible functions
      x86: Rearrange function calls in board_init_f
      x86: Convert board_init_f to use an init_sequence
      sc520: Release CAR and enable caching
      eNET: Move initial Global Data into CAR

 arch/i386/config.mk                      |   15 +-
 arch/i386/cpu/config.mk                  |   10 +-
 arch/i386/cpu/cpu.c                      |   35 +-
 arch/i386/cpu/interrupts.c               |   19 +-
 arch/i386/cpu/sc520/Makefile             |    5 +-
 arch/i386/cpu/sc520/sc520.c              |  148 +------
 arch/i386/cpu/sc520/sc520_asm.S          |  615 ---------------------------
 arch/i386/cpu/sc520/sc520_car.S          |   94 ++++
 arch/i386/cpu/sc520/sc520_sdram.c        |  532 +++++++++++++++++++++++
 arch/i386/cpu/start.S                    |  107 +++---
 arch/i386/cpu/start16.S                  |    5 +-
 {board/eNET => arch/i386/cpu}/u-boot.lds |   24 +-
 arch/i386/include/asm/global_data.h      |   21 +-
 arch/i386/include/asm/ic/sc520.h         |   93 ++++-
 arch/i386/include/asm/processor-flags.h  |  100 +++++
 arch/i386/include/asm/processor.h        |    9 +-
 arch/i386/include/asm/u-boot-i386.h      |    3 +
 arch/i386/lib/board.c                    |  146 ++++---
 arch/i386/lib/realmode.c                 |    8 +-
 board/eNET/config.mk                     |    6 +-
 board/eNET/eNET.c                        |  192 +++++----
 board/eNET/eNET_start.S                  |    7 -
 board/eNET/eNET_start16.S                |   15 +-
 boards.cfg                               |    3 +-
 drivers/rtc/mc146818.c                   |    6 +
 include/configs/eNET.h                   |  679 ++++++++++++++++++++++-------
 26 files changed, 1699 insertions(+), 1198 deletions(-)
 delete mode 100644 arch/i386/cpu/sc520/sc520_asm.S
 create mode 100644 arch/i386/cpu/sc520/sc520_car.S
 create mode 100644 arch/i386/cpu/sc520/sc520_sdram.c
 rename {board/eNET => arch/i386/cpu}/u-boot.lds (75%)
 create mode 100644 arch/i386/include/asm/processor-flags.h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
  2011-02-12  4:42 Graeme Russ
@ 2011-02-12 19:33 ` Wolfgang Denk
  2011-03-07  4:37 ` Mike Frysinger
  1 sibling, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2011-02-12 19:33 UTC (permalink / raw)
  To: u-boot

Dear Graeme Russ,

In message <4D560FD2.4000401@gmail.com> you wrote:
> Wolfgang,
> 
> I believe I missed the 2011.03 merge window - I'm happy for these to go into 2011.06
> 
> The following changes since commit d1a79b71f7c5fd9e277e0feb35f049289df1ed0e:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-02-11 21:23:33 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-x86.git master
> 
> Graeme Russ (32):
>       x86: Fix definition of global_data struct for asm-offsets.c
>       x86: Align config.mk and linker scripts with other arches
>       eNET: Create distinct board configurations
>       x86: Parametize values used in linker script
>       sc520: Sort Makefile
>       x86: Fix mangled umlauts
>       x86: Add stack dump to register dump
>       x86: Move Global Descriptor Table defines to processor.h
>       x86: Add processor flags header from linux
>       x86: Call early_board_init when warm booting
>       x86: Make cpu init functions weak
>       sc520: Define MMCR address in include file
>       sc520: Move board specific settings to board init function
>       sc520: Remove printf calls from cpu_init_f
>       eNET: Fix eNET Interrupt Setup for Linux
>       eNET: Add RTC support to eNET
>       eNET: Define MMCR values in config.h
>       eNET: Rearrange PAR assignments
>       eNET: General code cleanup
>       x86: Move initial gd to fixed location
>       x86: Use Cache-As-RAM for initial stack
>       sc520: Move RAM sizing code from asm to C
>       x86: Defer setup of final stack
>       x86: Move call to dram_init_f into board_init_f
>       x86: Move test for cold boot into init functions
>       x86: Move console initialisation into board_init_f
>       x86: Fix incorrect usage of relocation offset
>       x86: Split board_init_f() into init_fnc_t compatible functions
>       x86: Rearrange function calls in board_init_f
>       x86: Convert board_init_f to use an init_sequence
>       sc520: Release CAR and enable caching
>       eNET: Move initial Global Data into CAR
> 
>  arch/i386/config.mk                      |   15 +-
>  arch/i386/cpu/config.mk                  |   10 +-
>  arch/i386/cpu/cpu.c                      |   35 +-
>  arch/i386/cpu/interrupts.c               |   19 +-
>  arch/i386/cpu/sc520/Makefile             |    5 +-
>  arch/i386/cpu/sc520/sc520.c              |  148 +------
>  arch/i386/cpu/sc520/sc520_asm.S          |  615 ---------------------------
>  arch/i386/cpu/sc520/sc520_car.S          |   94 ++++
>  arch/i386/cpu/sc520/sc520_sdram.c        |  532 +++++++++++++++++++++++
>  arch/i386/cpu/start.S                    |  107 +++---
>  arch/i386/cpu/start16.S                  |    5 +-
>  {board/eNET => arch/i386/cpu}/u-boot.lds |   24 +-
>  arch/i386/include/asm/global_data.h      |   21 +-
>  arch/i386/include/asm/ic/sc520.h         |   93 ++++-
>  arch/i386/include/asm/processor-flags.h  |  100 +++++
>  arch/i386/include/asm/processor.h        |    9 +-
>  arch/i386/include/asm/u-boot-i386.h      |    3 +
>  arch/i386/lib/board.c                    |  146 ++++---
>  arch/i386/lib/realmode.c                 |    8 +-
>  board/eNET/config.mk                     |    6 +-
>  board/eNET/eNET.c                        |  192 +++++----
>  board/eNET/eNET_start.S                  |    7 -
>  board/eNET/eNET_start16.S                |   15 +-
>  boards.cfg                               |    3 +-
>  drivers/rtc/mc146818.c                   |    6 +
>  include/configs/eNET.h                   |  679 ++++++++++++++++++++++-------
>  26 files changed, 1699 insertions(+), 1198 deletions(-)
>  delete mode 100644 arch/i386/cpu/sc520/sc520_asm.S
>  create mode 100644 arch/i386/cpu/sc520/sc520_car.S
>  create mode 100644 arch/i386/cpu/sc520/sc520_sdram.c
>  rename {board/eNET => arch/i386/cpu}/u-boot.lds (75%)
>  create mode 100644 arch/i386/include/asm/processor-flags.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"In matrimony, to hesitate is sometimes to be saved."        - Butler

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
  2011-02-12  4:42 Graeme Russ
  2011-02-12 19:33 ` Wolfgang Denk
@ 2011-03-07  4:37 ` Mike Frysinger
  2011-03-07  7:30   ` Graeme Russ
  1 sibling, 1 reply; 8+ messages in thread
From: Mike Frysinger @ 2011-03-07  4:37 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 11, 2011 at 11:42 PM, Graeme Russ wrote:
> I believe I missed the 2011.03 merge window - I'm happy for these to go into 2011.06
>
> The following changes since commit d1a79b71f7c5fd9e277e0feb35f049289df1ed0e:
>
> ?Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-02-11 21:23:33 +0100)
>
> are available in the git repository at:
>
> ?git://git.denx.de/u-boot-x86.git master
>
> Graeme Russ (32):
> ? ? ?x86: Fix definition of global_data struct for asm-offsets.c
> ? ? ?x86: Align config.mk and linker scripts with other arches
> ? ? ?eNET: Create distinct board configurations
> ? ? ?x86: Parametize values used in linker script
> ? ? ?sc520: Sort Makefile
> ? ? ?x86: Fix mangled umlauts
> ? ? ?x86: Add stack dump to register dump
> ? ? ?x86: Move Global Descriptor Table defines to processor.h
> ? ? ?x86: Add processor flags header from linux
> ? ? ?x86: Call early_board_init when warm booting
> ? ? ?x86: Make cpu init functions weak
> ? ? ?sc520: Define MMCR address in include file
> ? ? ?sc520: Move board specific settings to board init function
> ? ? ?sc520: Remove printf calls from cpu_init_f
> ? ? ?eNET: Fix eNET Interrupt Setup for Linux
> ? ? ?eNET: Add RTC support to eNET
> ? ? ?eNET: Define MMCR values in config.h
> ? ? ?eNET: Rearrange PAR assignments
> ? ? ?eNET: General code cleanup
> ? ? ?x86: Move initial gd to fixed location
> ? ? ?x86: Use Cache-As-RAM for initial stack
> ? ? ?sc520: Move RAM sizing code from asm to C
> ? ? ?x86: Defer setup of final stack
> ? ? ?x86: Move call to dram_init_f into board_init_f
> ? ? ?x86: Move test for cold boot into init functions
> ? ? ?x86: Move console initialisation into board_init_f
> ? ? ?x86: Fix incorrect usage of relocation offset
> ? ? ?x86: Split board_init_f() into init_fnc_t compatible functions
> ? ? ?x86: Rearrange function calls in board_init_f
> ? ? ?x86: Convert board_init_f to use an init_sequence
> ? ? ?sc520: Release CAR and enable caching
> ? ? ?eNET: Move initial Global Data into CAR

seems that all these commits are missing your s-o-b.  please watch for
that a bit more in the future.
-mike

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
  2011-03-07  4:37 ` Mike Frysinger
@ 2011-03-07  7:30   ` Graeme Russ
  0 siblings, 0 replies; 8+ messages in thread
From: Graeme Russ @ 2011-03-07  7:30 UTC (permalink / raw)
  To: u-boot

On 07/03/11 15:37, Mike Frysinger wrote:
> On Fri, Feb 11, 2011 at 11:42 PM, Graeme Russ wrote:
>> I believe I missed the 2011.03 merge window - I'm happy for these to go into 2011.06
>>
>> The following changes since commit d1a79b71f7c5fd9e277e0feb35f049289df1ed0e:
>>
>>  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-02-11 21:23:33 +0100)
>>
>> are available in the git repository at:
>>
>>  git://git.denx.de/u-boot-x86.git master
>>
>> Graeme Russ (32):

[snip]

> 
> seems that all these commits are missing your s-o-b.  please watch for
> that a bit more in the future.
> -mike
> 

Oops, stg commit does not add the signed-off-by: line like git commit - It
needs to be set when creating a new patch or explicitly added in the patch
description.

Thanks for picking that up Mike

Regards,

Graeme

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
@ 2012-03-06 10:14 Graeme Russ
  2012-03-06 20:29 ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: Graeme Russ @ 2012-03-06 10:14 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

The following changes since commit fca94c3fd5deef33442813475a5af1650f2d2830:

  integrator: remove fragile delay loop from PCI code (2012-03-04 21:15:31 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-x86.git master

Mike Frysinger (1):
      sc520: fix build warning about unused temp var

 arch/x86/cpu/sc520/sc520_timer.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

Regards,

Graeme		

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
  2012-03-06 10:14 [U-Boot] Pull request: u-boot-x86/master Graeme Russ
@ 2012-03-06 20:29 ` Wolfgang Denk
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2012-03-06 20:29 UTC (permalink / raw)
  To: u-boot

Dear Graeme Russ,

In message <4F55E395.1080404@gmail.com> you wrote:
> Hi Wolfgang,
> 
> The following changes since commit fca94c3fd5deef33442813475a5af1650f2d2830:
> 
>   integrator: remove fragile delay loop from PCI code (2012-03-04 21:15:31 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-x86.git master
> 
> Mike Frysinger (1):
>       sc520: fix build warning about unused temp var
> 
>  arch/x86/cpu/sc520/sc520_timer.c |    5 ++---
>  1 files changed, 2 insertions(+), 3 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Making files is easy under  the  UNIX  operating  system.  Therefore,
users  tend  to  create  numerous  files  using large amounts of file
space. It has been said that the only standard thing about  all  UNIX
systems  is  the  message-of-the-day  telling users to clean up their
files.                            -- System V.2 administrator's guide

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
@ 2012-04-01 11:44 Graeme Russ
  2012-04-09 14:55 ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: Graeme Russ @ 2012-04-01 11:44 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

The following changes since commit c008b6f6dd6b8965e9a7654ffbce75bb9ff7a3b5:

  Prepare v2012.04-rc1 (2012-03-31 00:13:05 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-x86.git master

Simon Glass (1):
      x86: Remove dead code in eNET

 board/eNET/eNET.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

Regards,

Graeme

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] Pull request: u-boot-x86/master
  2012-04-01 11:44 Graeme Russ
@ 2012-04-09 14:55 ` Wolfgang Denk
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2012-04-09 14:55 UTC (permalink / raw)
  To: u-boot

Dear Graeme Russ,

In message <4F783F94.5080209@gmail.com> you wrote:
> Hi Wolfgang,
> 
> The following changes since commit c008b6f6dd6b8965e9a7654ffbce75bb9ff7a3b5:
> 
>   Prepare v2012.04-rc1 (2012-03-31 00:13:05 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-x86.git master
> 
> Simon Glass (1):
>       x86: Remove dead code in eNET
> 
>  board/eNET/eNET.c |    5 -----
>  1 files changed, 0 insertions(+), 5 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
O Staat!   Wie tief dir alle Besten fluchen!  Du bist kein Ziel.  Der
Mensch mu? weiter suchen.                     - Christian Morgenstern

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-04-09 14:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-06 10:14 [U-Boot] Pull request: u-boot-x86/master Graeme Russ
2012-03-06 20:29 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2012-04-01 11:44 Graeme Russ
2012-04-09 14:55 ` Wolfgang Denk
2011-02-12  4:42 Graeme Russ
2011-02-12 19:33 ` Wolfgang Denk
2011-03-07  4:37 ` Mike Frysinger
2011-03-07  7:30   ` Graeme Russ

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox