All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-arm
@ 2010-11-26 20:29 Wolfgang Denk
  2010-11-26 20:55 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-26 20:29 UTC (permalink / raw)
  To: u-boot

The following changes since commit 6163f5b4c8873848ed023054bc401727301ea537:

  malloc: Fix issue with calloc memory possibly being non-zero (2010-11-17 22:06:40 +0100)

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

Albert Aribaud (2):
      arm: add ELF relocation support to rest of cpus
      arm1176: bugfix: fix start.S for ELF relocation

Eric Cooper (1):
      Seagate FreeAgent DockStar support

Grazvydas Ignotas (3):
      OMAP3: pandora: fix relocation and init memory
      OMAP3: remove unused config macros
      OMAP3: pandora: update config for production

Matthias Weisser (1):
      Makefile: Fix build with USE_PRIVATE_LIBGCC

Nick Thompson (1):
      da830: fixup ARM relocation support

Nishanth Menon (2):
      mmc: omap: timeout counter fix
      omap4: board: change global data pointer to file scope

Sekhar Nori (2):
      DA850 EVM: add information regarding DA850 in README.davinci
      DA850 EVM: passing maximum clock rate information to kernel

Steve Sakoman (1):
      OMAP4: Panda: Disable CMD_NFS

Wolfgang Denk (1):
      DaVinci: remove bogus DEF_BOOTM definition

 MAINTAINERS                         |    4 +
 Makefile                            |    2 +-
 arch/arm/cpu/arm1176/start.S        |   47 +++-------
 arch/arm/cpu/arm720t/start.S        |  119 ++++++++++++-----------
 arch/arm/cpu/arm720t/u-boot.lds     |   39 +++++---
 arch/arm/cpu/arm920t/start.S        |  125 +++++++++++++------------
 arch/arm/cpu/arm920t/u-boot.lds     |   38 +++++---
 arch/arm/cpu/arm925t/start.S        |  127 +++++++++++++------------
 arch/arm/cpu/arm925t/u-boot.lds     |   38 +++++---
 arch/arm/cpu/arm946es/start.S       |  123 ++++++++++++-----------
 arch/arm/cpu/arm946es/u-boot.lds    |   38 +++++---
 arch/arm/cpu/arm_intcm/start.S      |  127 +++++++++++++-----------
 arch/arm/cpu/arm_intcm/u-boot.lds   |   38 +++++---
 arch/arm/cpu/armv7/omap4/board.c    |    3 +-
 arch/arm/cpu/ixp/start.S            |  118 ++++++++++++-----------
 arch/arm/cpu/ixp/u-boot.lds         |   38 +++++---
 arch/arm/cpu/lh7a40x/start.S        |  119 ++++++++++++-----------
 arch/arm/cpu/lh7a40x/u-boot.lds     |   38 +++++---
 arch/arm/cpu/s3c44b0/start.S        |  131 ++++++++++++--------------
 arch/arm/cpu/s3c44b0/u-boot.lds     |   38 +++++---
 arch/arm/cpu/sa1100/start.S         |  119 ++++++++++++-----------
 arch/arm/cpu/sa1100/u-boot.lds      |   38 +++++---
 board/Seagate/dockstar/Makefile     |   54 +++++++++++
 board/Seagate/dockstar/dockstar.c   |  181 +++++++++++++++++++++++++++++++++++
 board/Seagate/dockstar/dockstar.h   |   44 +++++++++
 board/Seagate/dockstar/kwbimage.cfg |  165 +++++++++++++++++++++++++++++++
 board/davinci/da8xxevm/da850evm.c   |   33 +++++++
 board/pandora/config.mk             |   33 -------
 boards.cfg                          |    1 +
 doc/README.davinci                  |   25 +++++
 drivers/mmc/omap_hsmmc.c            |  107 ++++++++++++++++-----
 include/configs/da830evm.h          |   11 ++-
 include/configs/da850evm.h          |    2 +-
 include/configs/davinci_dvevm.h     |    1 -
 include/configs/davinci_sonata.h    |    1 -
 include/configs/dockstar.h          |  125 ++++++++++++++++++++++++
 include/configs/omap3_beagle.h      |   18 ----
 include/configs/omap3_evm.h         |   18 ----
 include/configs/omap3_overo.h       |   18 ----
 include/configs/omap3_pandora.h     |  117 ++++++++++-------------
 include/configs/omap3_sdp3430.h     |    7 --
 include/configs/omap3_zoom1.h       |   18 ----
 include/configs/omap3_zoom2.h       |   10 --
 include/configs/omap4_panda.h       |    1 +
 include/configs/tnetv107x_evm.h     |    1 -
 45 files changed, 1577 insertions(+), 921 deletions(-)
 create mode 100644 board/Seagate/dockstar/Makefile
 create mode 100644 board/Seagate/dockstar/dockstar.c
 create mode 100644 board/Seagate/dockstar/dockstar.h
 create mode 100644 board/Seagate/dockstar/kwbimage.cfg
 delete mode 100644 board/pandora/config.mk
 create mode 100644 include/configs/dockstar.h

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
Obviously, a man's judgement cannot be better than the information on
which he has based it. Give him the truth and he may still  go  wrong
when  he  has the chance to be right, but give him no news or present
him only with distorted and incomplete data, with ignorant, sloppy or
biased reporting, with propaganda and deliberate falsehoods, and  you
destroy  his  whole  reasoning processes, and make him something less
than a man.                                  - Arthur Hays Sulzberger

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-26 20:29 [U-Boot] Pull request: u-boot-arm Wolfgang Denk
@ 2010-11-26 20:55 ` Wolfgang Denk
  2010-11-27  7:43   ` Dirk Behme
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-26 20:55 UTC (permalink / raw)
  To: u-boot

In message <20101126202955.B087D11D94F7@gemini.denx.de> you wrote:
> The following changes since commit 6163f5b4c8873848ed023054bc401727301ea537:
> 
>   malloc: Fix issue with calloc memory possibly being non-zero (2010-11-17 22:06:40 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-arm.git master
> 
> Albert Aribaud (2):
>       arm: add ELF relocation support to rest of cpus
>       arm1176: bugfix: fix start.S for ELF relocation
> 
> Eric Cooper (1):
>       Seagate FreeAgent DockStar support
> 
> Grazvydas Ignotas (3):
>       OMAP3: pandora: fix relocation and init memory
>       OMAP3: remove unused config macros
>       OMAP3: pandora: update config for production
> 
> Matthias Weisser (1):
>       Makefile: Fix build with USE_PRIVATE_LIBGCC
> 
> Nick Thompson (1):
>       da830: fixup ARM relocation support
> 
> Nishanth Menon (2):
>       mmc: omap: timeout counter fix
>       omap4: board: change global data pointer to file scope
> 
> Sekhar Nori (2):
>       DA850 EVM: add information regarding DA850 in README.davinci
>       DA850 EVM: passing maximum clock rate information to kernel
> 
> Steve Sakoman (1):
>       OMAP4: Panda: Disable CMD_NFS
> 
> Wolfgang Denk (1):
>       DaVinci: remove bogus DEF_BOOTM definition
> 
>  MAINTAINERS                         |    4 +
>  Makefile                            |    2 +-
>  arch/arm/cpu/arm1176/start.S        |   47 +++-------
>  arch/arm/cpu/arm720t/start.S        |  119 ++++++++++++-----------
>  arch/arm/cpu/arm720t/u-boot.lds     |   39 +++++---
>  arch/arm/cpu/arm920t/start.S        |  125 +++++++++++++------------
>  arch/arm/cpu/arm920t/u-boot.lds     |   38 +++++---
>  arch/arm/cpu/arm925t/start.S        |  127 +++++++++++++------------
>  arch/arm/cpu/arm925t/u-boot.lds     |   38 +++++---
>  arch/arm/cpu/arm946es/start.S       |  123 ++++++++++++-----------
>  arch/arm/cpu/arm946es/u-boot.lds    |   38 +++++---
>  arch/arm/cpu/arm_intcm/start.S      |  127 +++++++++++++-----------
>  arch/arm/cpu/arm_intcm/u-boot.lds   |   38 +++++---
>  arch/arm/cpu/armv7/omap4/board.c    |    3 +-
>  arch/arm/cpu/ixp/start.S            |  118 ++++++++++++-----------
>  arch/arm/cpu/ixp/u-boot.lds         |   38 +++++---
>  arch/arm/cpu/lh7a40x/start.S        |  119 ++++++++++++-----------
>  arch/arm/cpu/lh7a40x/u-boot.lds     |   38 +++++---
>  arch/arm/cpu/s3c44b0/start.S        |  131 ++++++++++++--------------
>  arch/arm/cpu/s3c44b0/u-boot.lds     |   38 +++++---
>  arch/arm/cpu/sa1100/start.S         |  119 ++++++++++++-----------
>  arch/arm/cpu/sa1100/u-boot.lds      |   38 +++++---
>  board/Seagate/dockstar/Makefile     |   54 +++++++++++
>  board/Seagate/dockstar/dockstar.c   |  181 +++++++++++++++++++++++++++++++++++
>  board/Seagate/dockstar/dockstar.h   |   44 +++++++++
>  board/Seagate/dockstar/kwbimage.cfg |  165 +++++++++++++++++++++++++++++++
>  board/davinci/da8xxevm/da850evm.c   |   33 +++++++
>  board/pandora/config.mk             |   33 -------
>  boards.cfg                          |    1 +
>  doc/README.davinci                  |   25 +++++
>  drivers/mmc/omap_hsmmc.c            |  107 ++++++++++++++++-----
>  include/configs/da830evm.h          |   11 ++-
>  include/configs/da850evm.h          |    2 +-
>  include/configs/davinci_dvevm.h     |    1 -
>  include/configs/davinci_sonata.h    |    1 -
>  include/configs/dockstar.h          |  125 ++++++++++++++++++++++++
>  include/configs/omap3_beagle.h      |   18 ----
>  include/configs/omap3_evm.h         |   18 ----
>  include/configs/omap3_overo.h       |   18 ----
>  include/configs/omap3_pandora.h     |  117 ++++++++++-------------
>  include/configs/omap3_sdp3430.h     |    7 --
>  include/configs/omap3_zoom1.h       |   18 ----
>  include/configs/omap3_zoom2.h       |   10 --
>  include/configs/omap4_panda.h       |    1 +
>  include/configs/tnetv107x_evm.h     |    1 -
>  45 files changed, 1577 insertions(+), 921 deletions(-)
>  create mode 100644 board/Seagate/dockstar/Makefile
>  create mode 100644 board/Seagate/dockstar/dockstar.c
>  create mode 100644 board/Seagate/dockstar/dockstar.h
>  create mode 100644 board/Seagate/dockstar/kwbimage.cfg
>  delete mode 100644 board/pandora/config.mk
>  create mode 100644 include/configs/dockstar.h

Applied.

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
If at first you don't succeed, you are running about average.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-26 20:55 ` Wolfgang Denk
@ 2010-11-27  7:43   ` Dirk Behme
  2010-11-27  9:06     ` Albert ARIBAUD
                       ` (2 more replies)
  0 siblings, 3 replies; 40+ messages in thread
From: Dirk Behme @ 2010-11-27  7:43 UTC (permalink / raw)
  To: u-boot

On 26.11.2010 21:55, Wolfgang Denk wrote:
> In message<20101126202955.B087D11D94F7@gemini.denx.de>  you wrote:
>> The following changes since commit 6163f5b4c8873848ed023054bc401727301ea537:
>>
>>    malloc: Fix issue with calloc memory possibly being non-zero (2010-11-17 22:06:40 +0100)
>>
>> are available in the git repository at:
>>    git://git.denx.de/u-boot-arm.git master
...
>
> Applied.

Doing a './MAKEALL ARMV7' on the recent master (d4752d5d2...) doesn't 
look nice [2].

The following configs build fine:

igep0020
mx51evk
omap3_beagle
omap3_overo
omap3_pandora
omap4_panda

The following boards fail to build:

am3517_evm board
ca9x4_ct_vxp
devkit8000
igep0030
omap3_evm
omap3_sdp3430
omap3_zoom1
omap3_zoom2
omap4_sdp4430
s5p_goni
smdkc100

I applied [1] to fix a beagle warning.

Are there any other pending patches to fix the compilation of the 
failing boards?

Thanks

Dirk

[1] http://patchwork.ozlabs.org/patch/72453/

[2] > ./MAKEALL ARMV7
Configuring for am3517_evm board...
board.c: In function '__dram_init_banksize':
board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
board.c:233: error: (Each undeclared identifier is reported only once
board.c:233: error: for each function it appears in.)
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file
Configuring for ca9x4_ct_vxp board...
syslib.c:26:32: error: asm/arch/sys_proto.h: No such file or directory
make[1]: *** No rule to build the target ?.depend?,
   needed from ?_depend?.  End.
syslib.c:26:32: error: asm/arch/sys_proto.h: No such file or directory
make[1]: *** [syslib.o] Error 1
make: *** [arch/arm/cpu/armv7/libarmv7.o] Error 2
size: './u-boot': No such file
Configuring for devkit8000 board...
start.S: Assembler messages:
start.S:144: Error: constant expression expected -- `ldr 
sp,=((0x4020FFFC-CONFIG_SYS_GBL_DATA_SIZE))'
make[1]: *** [start.o] Error 1
make: *** [arch/arm/cpu/armv7/start.o] Error 2
size: './u-boot': No such file
Configuring for igep0020 board...
    text    data     bss     dec     hex filename
  219538    7768  214536  441842   6bdf2 ./u-boot
Configuring for igep0030 board...
net/libnet.o: In function `rpc_req':
u-boot.git/net/nfs.c:193: undefined reference to `NetEthHdrSize'
u-boot.git/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
u-boot.git/net/nfs.c:203: undefined reference to `NetTxPacket'
u-boot.git/net/nfs.c:203: undefined reference to `NetServerEther'
net/libnet.o: In function `NfsStart':
u-boot.git/net/nfs.c:741: undefined reference to `NetSetTimeout'
u-boot.git/net/nfs.c:742: undefined reference to `NetSetHandler'
u-boot.git/net/nfs.c:754: undefined reference to `BootFile'
u-boot.git/net/nfs.c:754: undefined reference to `NetServerIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurGatewayIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurSubnetMask'
u-boot.git/net/nfs.c:754: undefined reference to `NetBootFileSize'
u-boot.git/net/nfs.c:754: undefined reference to `NetServerEther'
net/libnet.o: In function `nfs_read_reply':
u-boot.git/net/nfs.c:563: undefined reference to `NetBootFileXferSize'
net/libnet.o: In function `NfsHandler':
u-boot.git/net/nfs.c:656: undefined reference to `NetSetTimeout'
u-boot.git/net/nfs.c:668: undefined reference to `NetState'
net/libnet.o: In function `NfsTimeout':
u-boot.git/net/nfs.c:574: undefined reference to `NetStartAgain'
u-boot.git/net/nfs.c:577: undefined reference to `NetSetTimeout'
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12507
/bin/sh: line 1:  8055 Segmentation fault  arm-none-linux-gnueabi-ld 
-Bstatic -T u-boot.lds -pie -Ttext 0x80008000 $UNDEF_SYM 
arch/arm/cpu/armv7/start.o --start-group lib/libgeneric.o 
lib/lzma/liblzma.o lib/lzo/liblzo.o arch/arm/cpu/armv7/libarmv7.o 
arch/arm/cpu/armv7/omap3/libomap3.o arch/arm/lib/libarm.o 
fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o 
fs/jffs2/libjffs2.o fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o 
fs/yaffs2/libyaffs2.o fs/ubifs/libubifs.o net/libnet.o disk/libdisk.o 
drivers/bios_emulator/libatibiosemu.o drivers/block/libblock.o 
drivers/dma/libdma.o drivers/fpga/libfpga.o drivers/gpio/libgpio.o 
drivers/hwmon/libhwmon.o drivers/i2c/libi2c.o drivers/input/libinput.o 
drivers/misc/libmisc.o drivers/mmc/libmmc.o drivers/mtd/libmtd.o 
drivers/mtd/nand/libnand.o drivers/mtd/onenand/libonenand.o 
drivers/mtd/ubi/libubi.o drivers/mtd/spi/libspi_flash.o 
drivers/net/libnet.o drivers/net/phy/libphy.o drivers/pci/libpci.o 
drivers/pcmcia/libpcmcia.o drivers/power/libpower.o 
drivers/spi/libspi.o drivers/rtc/librtc.o drivers/serial/libserial.o 
drivers/twserial/libtws.o drivers/usb/gadget/libusb_gadget.o 
drivers/usb/host/libusb_host.o drivers/usb/musb/libusb_musb.o 
drivers/usb/phy/libusb_phy.o drivers/video/libvideo.o 
drivers/watchdog/libwatchdog.o common/libcommon.o lib/libfdt/libfdt.o 
api/libapi.o post/libpost.o 
arch/arm/cpu/armv7/omap-common/libomap-common.o 
board/isee/igep0030/libigep0030.o --end-group 
u-boot.git/arch/arm/lib/eabi_compat.o -L 
/opt/codesourcery/arm-none-linux-gnueabi/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3 
-lgcc -Map u-boot.map -o u-boot
make: *** [u-boot] Error 139
size: ./u-boot: File format not recognized
Configuring for mx51evk board...
    text    data     bss     dec     hex filename
  159945    6504  216928  383377   5d991 ./u-boot
Configuring for omap3_beagle board...
    text    data     bss     dec     hex filename
  249978   11288  203700  464966   71846 ./u-boot
Configuring for omap3_overo board...
    text    data     bss     dec     hex filename
  216254   10836  210628  437718   6add6 ./u-boot
Configuring for omap3_evm board...
start.S: Assembler messages:
start.S:144: Error: constant expression expected -- `ldr 
sp,=((0x4020FFFC-CONFIG_SYS_GBL_DATA_SIZE))'
make[1]: *** [start.o] Error 1
make: *** [arch/arm/cpu/armv7/start.o] Error 2
size: './u-boot': No such file
Configuring for omap3_pandora board...
    text    data     bss     dec     hex filename
  326528   10480  205116  542124   845ac ./u-boot
Configuring for omap3_sdp3430 board...
board.c: In function '__dram_init_banksize':
board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
board.c:233: error: (Each undeclared identifier is reported only once
board.c:233: error: for each function it appears in.)
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file
Configuring for omap3_zoom1 board...
board.c: In function '__dram_init_banksize':
board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
board.c:233: error: (Each undeclared identifier is reported only once
board.c:233: error: for each function it appears in.)
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file
Configuring for omap3_zoom2 board...
board.c: In function '__dram_init_banksize':
board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
board.c:233: error: (Each undeclared identifier is reported only once
board.c:233: error: for each function it appears in.)
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in 
this function)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file
Configuring for omap4_panda board...
    text    data     bss     dec     hex filename
  147402    5892  201256  354550   568f6 ./u-boot
Configuring for omap4_sdp4430 board...
net/libnet.o: In function `rpc_req':
u-boot.git/net/nfs.c:193: undefined reference to `NetEthHdrSize'
u-boot.git/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
u-boot.git/net/nfs.c:203: undefined reference to `NetTxPacket'
u-boot.git/net/nfs.c:203: undefined reference to `NetServerEther'
net/libnet.o: In function `NfsStart':
u-boot.git/net/nfs.c:741: undefined reference to `NetSetTimeout'
u-boot.git/net/nfs.c:742: undefined reference to `NetSetHandler'
u-boot.git/net/nfs.c:754: undefined reference to `BootFile'
u-boot.git/net/nfs.c:754: undefined reference to `NetServerIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurGatewayIP'
u-boot.git/net/nfs.c:754: undefined reference to `NetOurSubnetMask'
u-boot.git/net/nfs.c:754: undefined reference to `NetBootFileSize'
u-boot.git/net/nfs.c:754: undefined reference to `NetServerEther'
net/libnet.o: In function `nfs_read_reply':
u-boot.git/net/nfs.c:563: undefined reference to `NetBootFileXferSize'
net/libnet.o: In function `NfsHandler':
u-boot.git/net/nfs.c:656: undefined reference to `NetSetTimeout'
u-boot.git/net/nfs.c:668: undefined reference to `NetState'
net/libnet.o: In function `NfsTimeout':
u-boot.git/net/nfs.c:574: undefined reference to `NetStartAgain'
u-boot.git/net/nfs.c:577: undefined reference to `NetSetTimeout'
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203) 
2.19.51.20090205 assertion fail 
/scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12507
/bin/sh: line 1:  4529 Segmentation fault  arm-none-linux-gnueabi-ld 
-Bstatic -T u-boot.lds -pie -Ttext 0x80e80000 $UNDEF_SYM 
arch/arm/cpu/armv7/start.o --start-group lib/libgeneric.o 
lib/lzma/liblzma.o lib/lzo/liblzo.o arch/arm/cpu/armv7/libarmv7.o 
arch/arm/cpu/armv7/omap4/libomap4.o arch/arm/lib/libarm.o 
fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o 
fs/jffs2/libjffs2.o fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o 
fs/yaffs2/libyaffs2.o fs/ubifs/libubifs.o net/libnet.o disk/libdisk.o 
drivers/bios_emulator/libatibiosemu.o drivers/block/libblock.o 
drivers/dma/libdma.o drivers/fpga/libfpga.o drivers/gpio/libgpio.o 
drivers/hwmon/libhwmon.o drivers/i2c/libi2c.o drivers/input/libinput.o 
drivers/misc/libmisc.o drivers/mmc/libmmc.o drivers/mtd/libmtd.o 
drivers/mtd/nand/libnand.o drivers/mtd/onenand/libonenand.o 
drivers/mtd/ubi/libubi.o drivers/mtd/spi/libspi_flash.o 
drivers/net/libnet.o drivers/net/phy/libphy.o drivers/pci/libpci.o 
drivers/pcmcia/libpcmcia.o drivers/power/libpower.o 
drivers/spi/libspi.o drivers/rtc/librtc.o drivers/serial/libserial.o 
drivers/twserial/libtws.o drivers/usb/gadget/libusb_gadget.o 
drivers/usb/host/libusb_host.o drivers/usb/musb/libusb_musb.o 
drivers/usb/phy/libusb_phy.o drivers/video/libvideo.o 
drivers/watchdog/libwatchdog.o common/libcommon.o lib/libfdt/libfdt.o 
api/libapi.o post/libpost.o 
arch/arm/cpu/armv7/omap-common/libomap-common.o 
board/ti/sdp4430/libsdp4430.o --end-group 
u-boot.git/arch/arm/lib/eabi_compat.o -L 
/opt/codesourcery/arm-none-linux-gnueabi/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3 
-lgcc -Map u-boot.map -o u-boot
make: *** [u-boot] Error 139
size: ./u-boot: File format not recognized
Configuring for s5p_goni board...
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:279: error: (Each undeclared identifier is reported only once
board.c:279: error: for each function it appears in.)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file
Configuring for smdkc100 board...
board.c: In function 'board_init_f':
board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in 
this function)
board.c:279: error: (Each undeclared identifier is reported only once
board.c:279: error: for each function it appears in.)
make[1]: *** [board.o] Error 1
make: *** [arch/arm/lib/libarm.o] Error 2
size: './u-boot': No such file

--------------------- SUMMARY ----------------------------
Boards compiled: 17
Boards with warnings or errors: 11 ( am3517_evm ca9x4_ct_vxp 
devkit8000 igep0030 omap3_evm omap3_sdp3430 omap3_zoom1 omap3_zoom2 
omap4_sdp4430 s5p_goni smdkc100 )
----------------------------------------------------------

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27  7:43   ` Dirk Behme
@ 2010-11-27  9:06     ` Albert ARIBAUD
  2010-11-27 17:19       ` Paulraj, Sandeep
  2010-11-27 18:50       ` Wolfgang Denk
  2010-11-27 23:33     ` Steve Sakoman
  2010-11-29 20:16     ` Dirk Behme
  2 siblings, 2 replies; 40+ messages in thread
From: Albert ARIBAUD @ 2010-11-27  9:06 UTC (permalink / raw)
  To: u-boot

Le 27/11/2010 08:43, Dirk Behme a ?crit :

> Doing a './MAKEALL ARMV7' on the recent master (d4752d5d2...) doesn't
> look nice [2].

Globally, this is expected and does not hit only ARMV7 but any ARM board 
-- I think on the whole MAKEALL arm, only 35 out of 168 boards build 
without errors or warnings (more do build, but with warnings though).

ELF relocation was introduced during this cycle, on all ARM cpus but 
only on a handful of boards. Others need to be fixed by their 
maintainers. Typically, those which miss a CONFIG_SYS_SDRAM_BASE are hit 
by this issue. Note that not fixing all boards is voluntary: those 
boards whose maintainer will not have fixed during the coming cycle will 
be removed--as a janitorial matter, one could say.

For others -- the break may or may not be a consequence of ELF 
relocation. This will have to be fixed on an individual basis.

> Are there any other pending patches to fix the compilation of the
> failing boards?

These shall be fixed by their maintainers.

Wolfgang, should I send out a (single) mail to each ARM board maintainer 
right after this cycle asking them to either fix their board or say that 
they are not going to? This could help weed out during next cycle.

> Thanks
>
> Dirk

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27  9:06     ` Albert ARIBAUD
@ 2010-11-27 17:19       ` Paulraj, Sandeep
  2010-11-27 19:36         ` Wolfgang Denk
  2010-11-27 18:50       ` Wolfgang Denk
  1 sibling, 1 reply; 40+ messages in thread
From: Paulraj, Sandeep @ 2010-11-27 17:19 UTC (permalink / raw)
  To: u-boot




>Wolfgang, should I send out a (single) mail to each ARM board maintainer
>right after this cycle asking them to either fix their board or say that
>they are not going to? This could help weed out during next cycle.


IIRC if by the next release cycle, the errors are not fixed, 
the boards will/should be removed by the individual tree maintainers.

I believe this has already been communicated on the list.

--Sandeep

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27  9:06     ` Albert ARIBAUD
  2010-11-27 17:19       ` Paulraj, Sandeep
@ 2010-11-27 18:50       ` Wolfgang Denk
  2010-11-27 19:42         ` Albert ARIBAUD
  2010-11-28  5:15         ` Thomas Weber
  1 sibling, 2 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-27 18:50 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4CF0CA18.1000206@free.fr> you wrote:
> 
> Globally, this is expected and does not hit only ARMV7 but any ARM board 
> -- I think on the whole MAKEALL arm, only 35 out of 168 boards build 
> without errors or warnings (more do build, but with warnings though).

Correct. My last build shows 130 out of 168 with errors or warnings.

> These shall be fixed by their maintainers.
> 
> Wolfgang, should I send out a (single) mail to each ARM board maintainer 
> right after this cycle asking them to either fix their board or say that 
> they are not going to? This could help weed out during next cycle.

We might as well do this right now.   I will try to get -rc2 out this
weekend, and also start a "next" branch.  Maybe some board maintainers
need a special invitation to fix their boards - eventually some will
submit patches even for this release. It's worth a try.

Thanks.

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
What was sliced bread the greatest thing since?

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 17:19       ` Paulraj, Sandeep
@ 2010-11-27 19:36         ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-27 19:36 UTC (permalink / raw)
  To: u-boot

Dear "Paulraj, Sandeep",

In message <0554BEF07D437848AF01B9C9B5F0BC5DBCFDDECA@dlee01.ent.ti.com> you wrote:
> 
> IIRC if by the next release cycle, the errors are not fixed, 
> the boards will/should be removed by the individual tree maintainers.
> 
> I believe this has already been communicated on the list.

True. On the other hand, some board maintainers may think they are not
affected, or expect a special invitation.  It cannot hurt to
explicitly tell them again that they must become active now.

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
"Whoever undertakes to set himself up as a judge of Truth  and  Know-
ledge is shipwrecked by the laughter of the gods."  - Albert Einstein

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 18:50       ` Wolfgang Denk
@ 2010-11-27 19:42         ` Albert ARIBAUD
  2010-11-27 20:50           ` Wolfgang Denk
  2010-11-28  5:15         ` Thomas Weber
  1 sibling, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2010-11-27 19:42 UTC (permalink / raw)
  To: u-boot

Le 27/11/2010 19:50, Wolfgang Denk a ?crit :

>> Wolfgang, should I send out a (single) mail to each ARM board maintainer
>> right after this cycle asking them to either fix their board or say that
>> they are not going to? This could help weed out during next cycle.
>
> We might as well do this right now.   I will try to get -rc2 out this
> weekend, and also start a "next" branch.  Maybe some board maintainers
> need a special invitation to fix their boards - eventually some will
> submit patches even for this release. It's worth a try.
>
> Thanks.
>
> Wolfgang Denk

No problem. I am building a list of addresses from the MAINTAINERS list. 
For those boards which have no maintainer I will use the e-mail address 
of the last committer to the config header file (skipping Wolfgang's, of 
course).

I will then send a single mail to myself with everybody in Bcc:, telling 
them that they are e-mailed as the maintainer or last committer to an 
u-boot board, informing them of the recent introduction of ELF 
relocation to u-boot, that it breaks building the board, and that they 
should take steps to fix the board (these steps may be as simple as 
adding a couple of lines similar to what was done with edminiv2.h) 
otherwise the board will be considered orphan and risk being removed.

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 19:42         ` Albert ARIBAUD
@ 2010-11-27 20:50           ` Wolfgang Denk
  2010-11-27 21:15             ` Albert ARIBAUD
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-27 20:50 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4CF15F20.9060300@free.fr> you wrote:
>
> No problem. I am building a list of addresses from the MAINTAINERS list. 

Thanks.

> For those boards which have no maintainer I will use the e-mail address 
> of the last committer to the config header file (skipping Wolfgang's, of 
> course).

Be carefule. There were a lot or global actions done by many people.
Rather look at less frequently change files, like board/*/Makefile,
and use the _first_ committer.


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
"The question of whether a computer can think is no more  interesting
than the question of whether a submarine can swim"
                                                - Edsgar W.  Dijkstra

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 20:50           ` Wolfgang Denk
@ 2010-11-27 21:15             ` Albert ARIBAUD
  2010-11-27 22:09               ` Albert ARIBAUD
  0 siblings, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2010-11-27 21:15 UTC (permalink / raw)
  To: u-boot

Le 27/11/2010 21:50, Wolfgang Denk a ?crit :

>> For those boards which have no maintainer I will use the e-mail address
>> of the last committer to the config header file (skipping Wolfgang's, of
>> course).
>
> Be carefule. There were a lot or global actions done by many people.
> Rather look at less frequently change files, like board/*/Makefile,
> and use the _first_ committer.

Thanks for pointing this out. For the moment I'll stick with mailing 
only official board maintainers. Then I'll carefully go through boards 
without official maintainers one by one.

> Best regards,
>
> Wolfgang Denk

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 21:15             ` Albert ARIBAUD
@ 2010-11-27 22:09               ` Albert ARIBAUD
  2010-11-27 22:27                 ` Albert ARIBAUD
  2010-11-28  7:40                 ` [U-Boot] Pull request: u-boot-arm Dirk Behme
  0 siblings, 2 replies; 40+ messages in thread
From: Albert ARIBAUD @ 2010-11-27 22:09 UTC (permalink / raw)
  To: u-boot

Le 27/11/2010 22:15, Albert ARIBAUD a ?crit :

> Thanks for pointing this out. For the moment I'll stick with mailing
> only official board maintainers. Then I'll carefully go through boards
> without official maintainers one by one.

Message sent out, mistakenly from my alternate address albert at 
aribaud.net, but anyway... I have had five NDRs, for the following 
addresses which are all unknown; corresponding boards (within 
parentheses) should probably be moved to 'unmaintained':

	mani.pillai at ti.com (omap3_evm)
	kletschke at synertronixx.de (scb9328)
	mag at sysgo.com (impa7 and ep7312)
	prakash at embedx.com (cerf250)
	kshitij at ti.com (omap1510inn, omap1610inn)

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 22:09               ` Albert ARIBAUD
@ 2010-11-27 22:27                 ` Albert ARIBAUD
  2010-12-06 13:55                   ` [U-Boot] [PATCH] Fix Stelian's email address Stelian Pop
  2010-11-28  7:40                 ` [U-Boot] Pull request: u-boot-arm Dirk Behme
  1 sibling, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2010-11-27 22:27 UTC (permalink / raw)
  To: u-boot

Le 27/11/2010 23:09, Albert ARIBAUD a ?crit :
> Le 27/11/2010 22:15, Albert ARIBAUD a ?crit :
>
>> Thanks for pointing this out. For the moment I'll stick with mailing
>> only official board maintainers. Then I'll carefully go through boards
>> without official maintainers one by one.
>
> Message sent out, mistakenly from my alternate address albert at
> aribaud.net, but anyway... I have had five NDRs, for the following
> addresses which are all unknown; corresponding boards (within
> parentheses) should probably be moved to 'unmaintained':
>
> 	mani.pillai at ti.com (omap3_evm)
> 	kletschke at synertronixx.de (scb9328)
> 	mag at sysgo.com (impa7 and ep7312)
> 	prakash at embedx.com (cerf250)
> 	kshitij at ti.com (omap1510inn, omap1610inn)
>
> Amicalement,

Apparently MAINTAINERS entry for Stelian Pop is not correct any more; 
CC:ing Stelian's address as last seen on the list. If this one is 
correct, then MAINTAINERS should be fixed.

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27  7:43   ` Dirk Behme
  2010-11-27  9:06     ` Albert ARIBAUD
@ 2010-11-27 23:33     ` Steve Sakoman
  2010-11-27 23:57       ` Paulraj, Sandeep
  2010-11-29 20:16     ` Dirk Behme
  2 siblings, 1 reply; 40+ messages in thread
From: Steve Sakoman @ 2010-11-27 23:33 UTC (permalink / raw)
  To: u-boot

On Fri, Nov 26, 2010 at 11:43 PM, Dirk Behme <dirk.behme@googlemail.com> wrote:
> On 26.11.2010 21:55, Wolfgang Denk wrote:
>> In message<20101126202955.B087D11D94F7@gemini.denx.de> ?you wrote:
>>> The following changes since commit 6163f5b4c8873848ed023054bc401727301ea537:
>>>
>>> ? ?malloc: Fix issue with calloc memory possibly being non-zero (2010-11-17 22:06:40 +0100)
>>>
>>> are available in the git repository at:
>>> ? ?git://git.denx.de/u-boot-arm.git master
> ...
>>
>> Applied.
>
> Doing a './MAKEALL ARMV7' on the recent master (d4752d5d2...) doesn't
> look nice [2].
>
> The following configs build fine:
>
> igep0020
> mx51evk
> omap3_beagle
> omap3_overo
> omap3_pandora
> omap4_panda

I have hardware for igep0020, beagle, overo, panda, and sdp4430.  I
build daily for these machines and submit patches when they break
(there is a patch pending for omap4430 that fixes the build for it).

Steve


> The following boards fail to build:
>
> am3517_evm board
> ca9x4_ct_vxp
> devkit8000
> igep0030
> omap3_evm
> omap3_sdp3430
> omap3_zoom1
> omap3_zoom2
> omap4_sdp4430
> s5p_goni
> smdkc100
>
> I applied [1] to fix a beagle warning.
>
> Are there any other pending patches to fix the compilation of the
> failing boards?
>
> Thanks
>
> Dirk
>
> [1] http://patchwork.ozlabs.org/patch/72453/
>
> [2] > ./MAKEALL ARMV7
> Configuring for am3517_evm board...
> board.c: In function '__dram_init_banksize':
> board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> board.c:233: error: (Each undeclared identifier is reported only once
> board.c:233: error: for each function it appears in.)
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
> Configuring for ca9x4_ct_vxp board...
> syslib.c:26:32: error: asm/arch/sys_proto.h: No such file or directory
> make[1]: *** No rule to build the target ?.depend?,
> ? needed from ?_depend?. ?End.
> syslib.c:26:32: error: asm/arch/sys_proto.h: No such file or directory
> make[1]: *** [syslib.o] Error 1
> make: *** [arch/arm/cpu/armv7/libarmv7.o] Error 2
> size: './u-boot': No such file
> Configuring for devkit8000 board...
> start.S: Assembler messages:
> start.S:144: Error: constant expression expected -- `ldr
> sp,=((0x4020FFFC-CONFIG_SYS_GBL_DATA_SIZE))'
> make[1]: *** [start.o] Error 1
> make: *** [arch/arm/cpu/armv7/start.o] Error 2
> size: './u-boot': No such file
> Configuring for igep0020 board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?219538 ? ?7768 ?214536 ?441842 ? 6bdf2 ./u-boot
> Configuring for igep0030 board...
> net/libnet.o: In function `rpc_req':
> u-boot.git/net/nfs.c:193: undefined reference to `NetEthHdrSize'
> u-boot.git/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
> u-boot.git/net/nfs.c:203: undefined reference to `NetTxPacket'
> u-boot.git/net/nfs.c:203: undefined reference to `NetServerEther'
> net/libnet.o: In function `NfsStart':
> u-boot.git/net/nfs.c:741: undefined reference to `NetSetTimeout'
> u-boot.git/net/nfs.c:742: undefined reference to `NetSetHandler'
> u-boot.git/net/nfs.c:754: undefined reference to `BootFile'
> u-boot.git/net/nfs.c:754: undefined reference to `NetServerIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurGatewayIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurSubnetMask'
> u-boot.git/net/nfs.c:754: undefined reference to `NetBootFileSize'
> u-boot.git/net/nfs.c:754: undefined reference to `NetServerEther'
> net/libnet.o: In function `nfs_read_reply':
> u-boot.git/net/nfs.c:563: undefined reference to `NetBootFileXferSize'
> net/libnet.o: In function `NfsHandler':
> u-boot.git/net/nfs.c:656: undefined reference to `NetSetTimeout'
> u-boot.git/net/nfs.c:668: undefined reference to `NetState'
> net/libnet.o: In function `NfsTimeout':
> u-boot.git/net/nfs.c:574: undefined reference to `NetStartAgain'
> u-boot.git/net/nfs.c:577: undefined reference to `NetSetTimeout'
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12507
> /bin/sh: line 1: ?8055 Segmentation fault ?arm-none-linux-gnueabi-ld
> -Bstatic -T u-boot.lds -pie -Ttext 0x80008000 $UNDEF_SYM
> arch/arm/cpu/armv7/start.o --start-group lib/libgeneric.o
> lib/lzma/liblzma.o lib/lzo/liblzo.o arch/arm/cpu/armv7/libarmv7.o
> arch/arm/cpu/armv7/omap3/libomap3.o arch/arm/lib/libarm.o
> fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o
> fs/jffs2/libjffs2.o fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o
> fs/yaffs2/libyaffs2.o fs/ubifs/libubifs.o net/libnet.o disk/libdisk.o
> drivers/bios_emulator/libatibiosemu.o drivers/block/libblock.o
> drivers/dma/libdma.o drivers/fpga/libfpga.o drivers/gpio/libgpio.o
> drivers/hwmon/libhwmon.o drivers/i2c/libi2c.o drivers/input/libinput.o
> drivers/misc/libmisc.o drivers/mmc/libmmc.o drivers/mtd/libmtd.o
> drivers/mtd/nand/libnand.o drivers/mtd/onenand/libonenand.o
> drivers/mtd/ubi/libubi.o drivers/mtd/spi/libspi_flash.o
> drivers/net/libnet.o drivers/net/phy/libphy.o drivers/pci/libpci.o
> drivers/pcmcia/libpcmcia.o drivers/power/libpower.o
> drivers/spi/libspi.o drivers/rtc/librtc.o drivers/serial/libserial.o
> drivers/twserial/libtws.o drivers/usb/gadget/libusb_gadget.o
> drivers/usb/host/libusb_host.o drivers/usb/musb/libusb_musb.o
> drivers/usb/phy/libusb_phy.o drivers/video/libvideo.o
> drivers/watchdog/libwatchdog.o common/libcommon.o lib/libfdt/libfdt.o
> api/libapi.o post/libpost.o
> arch/arm/cpu/armv7/omap-common/libomap-common.o
> board/isee/igep0030/libigep0030.o --end-group
> u-boot.git/arch/arm/lib/eabi_compat.o -L
> /opt/codesourcery/arm-none-linux-gnueabi/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3
> -lgcc -Map u-boot.map -o u-boot
> make: *** [u-boot] Error 139
> size: ./u-boot: File format not recognized
> Configuring for mx51evk board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?159945 ? ?6504 ?216928 ?383377 ? 5d991 ./u-boot
> Configuring for omap3_beagle board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?249978 ? 11288 ?203700 ?464966 ? 71846 ./u-boot
> Configuring for omap3_overo board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?216254 ? 10836 ?210628 ?437718 ? 6add6 ./u-boot
> Configuring for omap3_evm board...
> start.S: Assembler messages:
> start.S:144: Error: constant expression expected -- `ldr
> sp,=((0x4020FFFC-CONFIG_SYS_GBL_DATA_SIZE))'
> make[1]: *** [start.o] Error 1
> make: *** [arch/arm/cpu/armv7/start.o] Error 2
> size: './u-boot': No such file
> Configuring for omap3_pandora board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?326528 ? 10480 ?205116 ?542124 ? 845ac ./u-boot
> Configuring for omap3_sdp3430 board...
> board.c: In function '__dram_init_banksize':
> board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> board.c:233: error: (Each undeclared identifier is reported only once
> board.c:233: error: for each function it appears in.)
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
> Configuring for omap3_zoom1 board...
> board.c: In function '__dram_init_banksize':
> board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> board.c:233: error: (Each undeclared identifier is reported only once
> board.c:233: error: for each function it appears in.)
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
> Configuring for omap3_zoom2 board...
> board.c: In function '__dram_init_banksize':
> board.c:233: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> board.c:233: error: (Each undeclared identifier is reported only once
> board.c:233: error: for each function it appears in.)
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:312: error: 'CONFIG_SYS_SDRAM_BASE' undeclared (first use in
> this function)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
> Configuring for omap4_panda board...
> ? ?text ? ?data ? ? bss ? ? dec ? ? hex filename
> ?147402 ? ?5892 ?201256 ?354550 ? 568f6 ./u-boot
> Configuring for omap4_sdp4430 board...
> net/libnet.o: In function `rpc_req':
> u-boot.git/net/nfs.c:193: undefined reference to `NetEthHdrSize'
> u-boot.git/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
> u-boot.git/net/nfs.c:203: undefined reference to `NetTxPacket'
> u-boot.git/net/nfs.c:203: undefined reference to `NetServerEther'
> net/libnet.o: In function `NfsStart':
> u-boot.git/net/nfs.c:741: undefined reference to `NetSetTimeout'
> u-boot.git/net/nfs.c:742: undefined reference to `NetSetHandler'
> u-boot.git/net/nfs.c:754: undefined reference to `BootFile'
> u-boot.git/net/nfs.c:754: undefined reference to `NetServerIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurGatewayIP'
> u-boot.git/net/nfs.c:754: undefined reference to `NetOurSubnetMask'
> u-boot.git/net/nfs.c:754: undefined reference to `NetBootFileSize'
> u-boot.git/net/nfs.c:754: undefined reference to `NetServerEther'
> net/libnet.o: In function `nfs_read_reply':
> u-boot.git/net/nfs.c:563: undefined reference to `NetBootFileXferSize'
> net/libnet.o: In function `NfsHandler':
> u-boot.git/net/nfs.c:656: undefined reference to `NetSetTimeout'
> u-boot.git/net/nfs.c:668: undefined reference to `NetState'
> net/libnet.o: In function `NfsTimeout':
> u-boot.git/net/nfs.c:574: undefined reference to `NetStartAgain'
> u-boot.git/net/nfs.c:577: undefined reference to `NetSetTimeout'
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12273
> arm-none-linux-gnueabi-ld: BFD (Sourcery G++ Lite 2009q1-203)
> 2.19.51.20090205 assertion fail
> /scratch/mitchell/builds/4.3-arm-none-linux-gnueabi-respin/lite/obj/binutils-src-2009q1-203-arm-none-linux-gnueabi-i686-pc-linux-gnu/bfd/elf32-arm.c:12507
> /bin/sh: line 1: ?4529 Segmentation fault ?arm-none-linux-gnueabi-ld
> -Bstatic -T u-boot.lds -pie -Ttext 0x80e80000 $UNDEF_SYM
> arch/arm/cpu/armv7/start.o --start-group lib/libgeneric.o
> lib/lzma/liblzma.o lib/lzo/liblzo.o arch/arm/cpu/armv7/libarmv7.o
> arch/arm/cpu/armv7/omap4/libomap4.o arch/arm/lib/libarm.o
> fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o
> fs/jffs2/libjffs2.o fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o
> fs/yaffs2/libyaffs2.o fs/ubifs/libubifs.o net/libnet.o disk/libdisk.o
> drivers/bios_emulator/libatibiosemu.o drivers/block/libblock.o
> drivers/dma/libdma.o drivers/fpga/libfpga.o drivers/gpio/libgpio.o
> drivers/hwmon/libhwmon.o drivers/i2c/libi2c.o drivers/input/libinput.o
> drivers/misc/libmisc.o drivers/mmc/libmmc.o drivers/mtd/libmtd.o
> drivers/mtd/nand/libnand.o drivers/mtd/onenand/libonenand.o
> drivers/mtd/ubi/libubi.o drivers/mtd/spi/libspi_flash.o
> drivers/net/libnet.o drivers/net/phy/libphy.o drivers/pci/libpci.o
> drivers/pcmcia/libpcmcia.o drivers/power/libpower.o
> drivers/spi/libspi.o drivers/rtc/librtc.o drivers/serial/libserial.o
> drivers/twserial/libtws.o drivers/usb/gadget/libusb_gadget.o
> drivers/usb/host/libusb_host.o drivers/usb/musb/libusb_musb.o
> drivers/usb/phy/libusb_phy.o drivers/video/libvideo.o
> drivers/watchdog/libwatchdog.o common/libcommon.o lib/libfdt/libfdt.o
> api/libapi.o post/libpost.o
> arch/arm/cpu/armv7/omap-common/libomap-common.o
> board/ti/sdp4430/libsdp4430.o --end-group
> u-boot.git/arch/arm/lib/eabi_compat.o -L
> /opt/codesourcery/arm-none-linux-gnueabi/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3
> -lgcc -Map u-boot.map -o u-boot
> make: *** [u-boot] Error 139
> size: ./u-boot: File format not recognized
> Configuring for s5p_goni board...
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:279: error: (Each undeclared identifier is reported only once
> board.c:279: error: for each function it appears in.)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
> Configuring for smdkc100 board...
> board.c: In function 'board_init_f':
> board.c:279: error: 'CONFIG_SYS_INIT_SP_ADDR' undeclared (first use in
> this function)
> board.c:279: error: (Each undeclared identifier is reported only once
> board.c:279: error: for each function it appears in.)
> make[1]: *** [board.o] Error 1
> make: *** [arch/arm/lib/libarm.o] Error 2
> size: './u-boot': No such file
>
> --------------------- SUMMARY ----------------------------
> Boards compiled: 17
> Boards with warnings or errors: 11 ( am3517_evm ca9x4_ct_vxp
> devkit8000 igep0030 omap3_evm omap3_sdp3430 omap3_zoom1 omap3_zoom2
> omap4_sdp4430 s5p_goni smdkc100 )
> ----------------------------------------------------------
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 23:33     ` Steve Sakoman
@ 2010-11-27 23:57       ` Paulraj, Sandeep
  2010-11-28  3:15         ` Steve Sakoman
  0 siblings, 1 reply; 40+ messages in thread
From: Paulraj, Sandeep @ 2010-11-27 23:57 UTC (permalink / raw)
  To: u-boot



> 
> I have hardware for igep0020, beagle, overo, panda, and sdp4430.  I
> build daily for these machines and submit patches when they break
> (there is a patch pending for omap4430 that fixes the build for it).


Which patch? Can you give me the link?

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 23:57       ` Paulraj, Sandeep
@ 2010-11-28  3:15         ` Steve Sakoman
  0 siblings, 0 replies; 40+ messages in thread
From: Steve Sakoman @ 2010-11-28  3:15 UTC (permalink / raw)
  To: u-boot

On Sat, Nov 27, 2010 at 3:57 PM, Paulraj, Sandeep <s-paulraj@ti.com> wrote:
>
>> I have hardware for igep0020, beagle, overo, panda, and sdp4430.  I
>> build daily for these machines and submit patches when they break
>> (there is a patch pending for omap4430 that fixes the build for it).
>
> Which patch? Can you give me the link?

Fear not, you didn't miss anything!  The patch just made it to
mainline from the arm branch:

http://git.denx.de/?p=u-boot.git;a=commit;h=8721e95b16024f0a92ccc1cd85aecf6672fe9499

Steve

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 18:50       ` Wolfgang Denk
  2010-11-27 19:42         ` Albert ARIBAUD
@ 2010-11-28  5:15         ` Thomas Weber
  1 sibling, 0 replies; 40+ messages in thread
From: Thomas Weber @ 2010-11-28  5:15 UTC (permalink / raw)
  To: u-boot

On Sat, Nov 27, 2010 at 7:50 PM, Wolfgang Denk <wd@denx.de> wrote:
> Dear Albert ARIBAUD,
>
> In message <4CF0CA18.1000206@free.fr> you wrote:
>>
>> Globally, this is expected and does not hit only ARMV7 but any ARM board
>> -- I think on the whole MAKEALL arm, only 35 out of 168 boards build
>> without errors or warnings (more do build, but with warnings though).
>
> Correct. My last build shows 130 out of 168 with errors or warnings.
>
>> These shall be fixed by their maintainers.
>>
>> Wolfgang, should I send out a (single) mail to each ARM board maintainer
>> right after this cycle asking them to either fix their board or say that
>> they are not going to? This could help weed out during next cycle.
>
> We might as well do this right now. ? I will try to get -rc2 out this
> weekend, and also start a "next" branch. ?Maybe some board maintainers
> need a special invitation to fix their boards - eventually some will
> submit patches even for this release. It's worth a try.
>
> Thanks.
>
> 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
> What was sliced bread the greatest thing since?
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>


Hello,

http://patchwork.ozlabs.org/patch/72060/

fixes the GERNERATED_GBL_DATA_SIZE for Devkit8000.

Thomas

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27 22:09               ` Albert ARIBAUD
  2010-11-27 22:27                 ` Albert ARIBAUD
@ 2010-11-28  7:40                 ` Dirk Behme
  1 sibling, 0 replies; 40+ messages in thread
From: Dirk Behme @ 2010-11-28  7:40 UTC (permalink / raw)
  To: u-boot

On 27.11.2010 23:09, Albert ARIBAUD wrote:
> Le 27/11/2010 22:15, Albert ARIBAUD a ?crit :
>
>> Thanks for pointing this out. For the moment I'll stick with mailing
>> only official board maintainers. Then I'll carefully go through boards
>> without official maintainers one by one.
>
> Message sent out, mistakenly from my alternate address albert at
> aribaud.net, but anyway... I have had five NDRs, for the following
> addresses which are all unknown; corresponding boards (within
> parentheses) should probably be moved to 'unmaintained':
>
> 	mani.pillai at ti.com (omap3_evm)
...
> 	kshitij at ti.com (omap1510inn, omap1610inn)

Maybe Sandeep could help with this?

Thanks

Dirk

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-27  7:43   ` Dirk Behme
  2010-11-27  9:06     ` Albert ARIBAUD
  2010-11-27 23:33     ` Steve Sakoman
@ 2010-11-29 20:16     ` Dirk Behme
  2010-11-29 20:27       ` Paulraj, Sandeep
  2 siblings, 1 reply; 40+ messages in thread
From: Dirk Behme @ 2010-11-29 20:16 UTC (permalink / raw)
  To: u-boot

On 27.11.2010 08:43, Dirk Behme wrote:
> On 26.11.2010 21:55, Wolfgang Denk wrote:
>> In message<20101126202955.B087D11D94F7@gemini.denx.de> you wrote:
>>> The following changes since commit
>>> 6163f5b4c8873848ed023054bc401727301ea537:
>>>
>>> malloc: Fix issue with calloc memory possibly being non-zero
>>> (2010-11-17 22:06:40 +0100)
>>>
>>> are available in the git repository at:
>>> git://git.denx.de/u-boot-arm.git master
> ...
>>
>> Applied.
>
> Doing a './MAKEALL ARMV7' on the recent master (d4752d5d2...) doesn't
> look nice [2].
>
> The following configs build fine:
>
> igep0020
> mx51evk
> omap3_beagle
> omap3_overo
> omap3_pandora
> omap4_panda
>
> The following boards fail to build:

Just fyi, scanning the list archive, for most of the boards there are 
patches available fixing the build:

> am3517_evm

http://lists.denx.de/pipermail/u-boot/2010-November/082641.html
http://lists.denx.de/pipermail/u-boot/2010-November/082642.html

> ca9x4_ct_vxp

http://lists.denx.de/pipermail/u-boot/2010-November/081033.html
http://lists.denx.de/pipermail/u-boot/2010-November/081034.html
http://lists.denx.de/pipermail/u-boot/2010-November/082654.html

> devkit8000

Already fixed in mainline now

> igep0030

http://lists.denx.de/pipermail/u-boot/2010-November/082603.html

> omap3_evm

http://lists.denx.de/pipermail/u-boot/2010-November/082606.html

But I still get an error

Configuring for omap3_evm board...
arm-none-linux-gnueabi-ld: section .bss [8003f5c0 -> 8007e31f] 
overlaps section .rel.dyn [8003f5c0 -> 80044e4f] 
 

arm-none-linux-gnueabi-ld: section .dynsym [80044e50 -> 80044eef] 
overlaps section .bss [8003f5c0 -> 8007e31f] 
 

arm-none-linux-gnueabi-ld: u-boot: section .bss vma 0x8003f5c0 
overlaps previous sections
make: *** [u-boot] Error 1 

size: './u-boot': No such file

I have to check if there is already a fix available.

> omap3_sdp3430

http://lists.denx.de/pipermail/u-boot/2010-November/082649.html

> omap3_zoom1

http://lists.denx.de/pipermail/u-boot/2010-November/082650.html

> omap3_zoom2

http://lists.denx.de/pipermail/u-boot/2010-November/082651.html

> omap4_sdp4430

http://lists.denx.de/pipermail/u-boot/2010-November/082556.html

> s5p_goni

http://lists.denx.de/pipermail/u-boot/2010-November/082225.html

> smdkc100

http://lists.denx.de/pipermail/u-boot/2010-November/082224.html

So it seems to me that the last ARMV7 board with build issues is 
omap3_evm. But as mentioned, I have to check the archives for this.

Best regards

Dirk

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-29 20:16     ` Dirk Behme
@ 2010-11-29 20:27       ` Paulraj, Sandeep
  0 siblings, 0 replies; 40+ messages in thread
From: Paulraj, Sandeep @ 2010-11-29 20:27 UTC (permalink / raw)
  To: u-boot



> 
> On 27.11.2010 08:43, Dirk Behme wrote:
> > On 26.11.2010 21:55, Wolfgang Denk wrote:
> >> In message<20101126202955.B087D11D94F7@gemini.denx.de> you wrote:
> >>> The following changes since commit
> >>> 6163f5b4c8873848ed023054bc401727301ea537:
> >>>
> >>> malloc: Fix issue with calloc memory possibly being non-zero
> >>> (2010-11-17 22:06:40 +0100)
> >>>
> >>> are available in the git repository at:
> >>> git://git.denx.de/u-boot-arm.git master
> > ...
> >>
> >> Applied.
> >
> > Doing a './MAKEALL ARMV7' on the recent master (d4752d5d2...) doesn't
> > look nice [2].
> >
> > The following configs build fine:
> >
> > igep0020
> > mx51evk
> > omap3_beagle
> > omap3_overo
> > omap3_pandora
> > omap4_panda
> >
> > The following boards fail to build:
> 
> Just fyi, scanning the list archive, for most of the boards there are
> patches available fixing the build:
> 
> > am3517_evm
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082641.html
> http://lists.denx.de/pipermail/u-boot/2010-November/082642.html
> 
> > ca9x4_ct_vxp
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/081033.html
> http://lists.denx.de/pipermail/u-boot/2010-November/081034.html
> http://lists.denx.de/pipermail/u-boot/2010-November/082654.html
> 
> > devkit8000
> 
> Already fixed in mainline now
> 
> > igep0030
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082603.html
> 
> > omap3_evm

I will add to u-boot-ti and send a pull request tonight.


> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082606.html
> 
> But I still get an error
> 
> Configuring for omap3_evm board...
> arm-none-linux-gnueabi-ld: section .bss [8003f5c0 -> 8007e31f]
> overlaps section .rel.dyn [8003f5c0 -> 80044e4f]
> 
> 
> arm-none-linux-gnueabi-ld: section .dynsym [80044e50 -> 80044eef]
> overlaps section .bss [8003f5c0 -> 8007e31f]
> 
> 
> arm-none-linux-gnueabi-ld: u-boot: section .bss vma 0x8003f5c0
> overlaps previous sections
> make: *** [u-boot] Error 1
> 
> size: './u-boot': No such file
> 
> I have to check if there is already a fix available.
> 
> > omap3_sdp3430
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082649.html
> 
> > omap3_zoom1
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082650.html
> 
> > omap3_zoom2
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082651.html
> 
> > omap4_sdp4430
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082556.html
> 
> > s5p_goni
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082225.html
> 
> > smdkc100
> 
> http://lists.denx.de/pipermail/u-boot/2010-November/082224.html
> 
> So it seems to me that the last ARMV7 board with build issues is
> omap3_evm. But as mentioned, I have to check the archives for this.

That is correct and I believe it is being worked upon.

--Sandeep

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

* [U-Boot] [PATCH] Fix Stelian's email address
  2010-11-27 22:27                 ` Albert ARIBAUD
@ 2010-12-06 13:55                   ` Stelian Pop
  0 siblings, 0 replies; 40+ messages in thread
From: Stelian Pop @ 2010-12-06 13:55 UTC (permalink / raw)
  To: u-boot

Change my old email address which is no longer valid.

Signed-off-by: Stelian Pop <stelian@popies.net>
---

On Sat, Nov 27, 2010 at 11:27:28PM +0100, Albert ARIBAUD wrote:
> 
> Apparently MAINTAINERS entry for Stelian Pop is not correct any
> more; CC:ing Stelian's address as last seen on the list. If this one
> is correct, then MAINTAINERS should be fixed.

Indeed, I've changed employers some time ago.

The attached patch replaces all occurences of my old work email
with my personal (and persistent) email address.

Please apply.

Thanks,

Stelian.

 CREDITS                                            |    2 +-
 MAINTAINERS                                        |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c     |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c  |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c  |    2 +-
 .../cpu/arm926ejs/at91/at91sam9m10g45_devices.c    |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c   |    2 +-
 arch/arm/cpu/arm926ejs/at91/led.c                  |    2 +-
 arch/arm/cpu/arm926ejs/at91/reset.c                |    2 +-
 arch/arm/cpu/arm926ejs/at91/timer.c                |    2 +-
 arch/arm/cpu/arm926ejs/mb86r0x/timer.c             |    2 +-
 arch/arm/include/asm/arch-at91/at91_common.h       |    2 +-
 arch/arm/include/asm/arch-at91/at91cap9.h          |    2 +-
 arch/arm/include/asm/arch-at91/at91cap9_matrix.h   |    2 +-
 arch/arm/include/asm/arch-at91/clk.h               |    2 +-
 arch/arm/include/asm/arch-at91/memory-map.h        |    2 +-
 arch/arm/include/asm/dma-mapping.h                 |    2 +-
 board/afeb9260/Makefile                            |    2 +-
 board/afeb9260/afeb9260.c                          |    2 +-
 board/atmel/at91cap9adk/Makefile                   |    2 +-
 board/atmel/at91cap9adk/at91cap9adk.c              |    2 +-
 board/atmel/at91cap9adk/led.c                      |    2 +-
 board/atmel/at91sam9260ek/Makefile                 |    2 +-
 board/atmel/at91sam9260ek/at91sam9260ek.c          |    2 +-
 board/atmel/at91sam9260ek/led.c                    |    2 +-
 board/atmel/at91sam9261ek/Makefile                 |    2 +-
 board/atmel/at91sam9261ek/at91sam9261ek.c          |    2 +-
 board/atmel/at91sam9261ek/led.c                    |    2 +-
 board/atmel/at91sam9263ek/Makefile                 |    2 +-
 board/atmel/at91sam9263ek/at91sam9263ek.c          |    2 +-
 board/atmel/at91sam9263ek/led.c                    |    2 +-
 board/atmel/at91sam9m10g45ek/Makefile              |    2 +-
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |    2 +-
 board/atmel/at91sam9m10g45ek/led.c                 |    2 +-
 board/atmel/at91sam9rlek/Makefile                  |    2 +-
 board/atmel/at91sam9rlek/at91sam9rlek.c            |    2 +-
 board/atmel/at91sam9rlek/led.c                     |    2 +-
 board/calao/sbc35_a9g20/Makefile                   |    2 +-
 board/calao/sbc35_a9g20/sbc35_a9g20.c              |    2 +-
 board/calao/tny_a9260/Makefile                     |    2 +-
 board/calao/tny_a9260/tny_a9260.c                  |    2 +-
 board/esd/meesc/Makefile                           |    2 +-
 board/esd/meesc/meesc.c                            |    2 +-
 board/esd/otc570/Makefile                          |    2 +-
 board/esd/otc570/otc570.c                          |    2 +-
 board/eukrea/cpu9260/Makefile                      |    2 +-
 board/eukrea/cpu9260/cpu9260.c                     |    2 +-
 board/ronetix/pm9261/Makefile                      |    2 +-
 board/ronetix/pm9261/led.c                         |    2 +-
 board/ronetix/pm9261/pm9261.c                      |    2 +-
 board/ronetix/pm9263/Makefile                      |    2 +-
 board/ronetix/pm9263/led.c                         |    2 +-
 board/ronetix/pm9263/pm9263.c                      |    2 +-
 board/ronetix/pm9g45/Makefile                      |    2 +-
 board/ronetix/pm9g45/pm9g45.c                      |    2 +-
 board/syteco/jadecpu/Makefile                      |    2 +-
 drivers/mtd/nand/atmel_nand.c                      |    2 +-
 include/configs/at91cap9adk.h                      |    2 +-
 include/configs/at91sam9260ek.h                    |    2 +-
 include/configs/at91sam9261ek.h                    |    2 +-
 include/configs/at91sam9263ek.h                    |    2 +-
 include/configs/at91sam9m10g45ek.h                 |    2 +-
 include/configs/at91sam9rlek.h                     |    2 +-
 include/configs/cpu9260.h                          |    2 +-
 include/configs/meesc.h                            |    2 +-
 include/configs/otc570.h                           |    2 +-
 include/configs/pm9261.h                           |    2 +-
 include/configs/pm9263.h                           |    2 +-
 include/configs/pm9g45.h                           |    2 +-
 include/configs/tny_a9260.h                        |    2 +-
 71 files changed, 71 insertions(+), 71 deletions(-)

diff --git a/CREDITS b/CREDITS
index dacc5b4..21ee3f8 100644
--- a/CREDITS
+++ b/CREDITS
@@ -387,7 +387,7 @@ D: Support for the Wind River sbc405, sbc8240 board
 W: http://www.windriver.com
 
 N: Stelian Pop
-E: stelian.pop at leadtechdesign.com
+E: stelian at popies.net
 D: Atmel AT91CAP9ADK support
 
 N: Ricardo Ribalda Delgado
diff --git a/MAINTAINERS b/MAINTAINERS
index f47fca5..2ab50dc 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -744,7 +744,7 @@ Manikandan Pillai <mani.pillai@ti.com>
 
 	omap3_evm	ARM ARMV7 (OMAP3xx SoC)
 
-Stelian Pop <stelian.pop@leadtechdesign.com>
+Stelian Pop <stelian@popies.net>
 
 	at91cap9adk	ARM926EJS (AT91CAP9 SoC)
 	at91sam9260ek	ARM926EJS (AT91SAM9260 SoC)
diff --git a/arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c b/arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c
index 2d878fd..db2ecb8 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2009
diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
index f699f4d..f859015 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c
index b4353ef..76ef955 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
index deda3e5..6997f1d 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2009
diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
index 4ad9b1f..d74b86e 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c
index 4f570f4..442ac77 100644
--- a/arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c
+++ b/arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/led.c b/arch/arm/cpu/arm926ejs/at91/led.c
index 0a315c4..22d6b54 100644
--- a/arch/arm/cpu/arm926ejs/at91/led.c
+++ b/arch/arm/cpu/arm926ejs/at91/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/reset.c b/arch/arm/cpu/arm926ejs/at91/reset.c
index d2569d8..bfd5aad 100644
--- a/arch/arm/cpu/arm926ejs/at91/reset.c
+++ b/arch/arm/cpu/arm926ejs/at91/reset.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/at91/timer.c b/arch/arm/cpu/arm926ejs/at91/timer.c
index 82b8d7e..dd801f5 100644
--- a/arch/arm/cpu/arm926ejs/at91/timer.c
+++ b/arch/arm/cpu/arm926ejs/at91/timer.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/cpu/arm926ejs/mb86r0x/timer.c b/arch/arm/cpu/arm926ejs/mb86r0x/timer.c
index 9175b71..6937b11 100644
--- a/arch/arm/cpu/arm926ejs/mb86r0x/timer.c
+++ b/arch/arm/cpu/arm926ejs/mb86r0x/timer.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2010
diff --git a/arch/arm/include/asm/arch-at91/at91_common.h b/arch/arm/include/asm/arch-at91/at91_common.h
index 0067190..058a1fb 100644
--- a/arch/arm/include/asm/arch-at91/at91_common.h
+++ b/arch/arm/include/asm/arch-at91/at91_common.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/include/asm/arch-at91/at91cap9.h b/arch/arm/include/asm/arch-at91/at91cap9.h
index 5af6fdc..7bf363a 100644
--- a/arch/arm/include/asm/arch-at91/at91cap9.h
+++ b/arch/arm/include/asm/arch-at91/at91cap9.h
@@ -1,7 +1,7 @@
 /*
  * [origin: Linux kernel include/asm-arm/arch-at91/at91cap9.h]
  *
- *  Copyright (C) 2007 Stelian Pop <stelian.pop@leadtechdesign.com>
+ *  Copyright (C) 2007 Stelian Pop <stelian@popies.net>
  *  Copyright (C) 2007 Lead Tech Design <www.leadtechdesign.com>
  *  Copyright (C) 2007 Atmel Corporation.
  *
diff --git a/arch/arm/include/asm/arch-at91/at91cap9_matrix.h b/arch/arm/include/asm/arch-at91/at91cap9_matrix.h
index 22b7e9b..a9b5ae0 100644
--- a/arch/arm/include/asm/arch-at91/at91cap9_matrix.h
+++ b/arch/arm/include/asm/arch-at91/at91cap9_matrix.h
@@ -1,7 +1,7 @@
 /*
  * [origin: Linux kernel include/asm-arm/arch-at91/at91cap9_matrix.h]
  *
- *  Copyright (C) 2007 Stelian Pop <stelian.pop@leadtechdesign.com>
+ *  Copyright (C) 2007 Stelian Pop <stelian@popies.net>
  *  Copyright (C) 2007 Lead Tech Design <www.leadtechdesign.com>
  *  Copyright (C) 2006 Atmel Corporation.
  *
diff --git a/arch/arm/include/asm/arch-at91/clk.h b/arch/arm/include/asm/arch-at91/clk.h
index 457e6c9..cdf3275 100644
--- a/arch/arm/include/asm/arch-at91/clk.h
+++ b/arch/arm/include/asm/arch-at91/clk.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  *
diff --git a/arch/arm/include/asm/arch-at91/memory-map.h b/arch/arm/include/asm/arch-at91/memory-map.h
index d489fa2..bea055f 100644
--- a/arch/arm/include/asm/arch-at91/memory-map.h
+++ b/arch/arm/include/asm/arch-at91/memory-map.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h
index 501ce0e..5bbb0a0 100644
--- a/arch/arm/include/asm/dma-mapping.h
+++ b/arch/arm/include/asm/dma-mapping.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/afeb9260/Makefile b/board/afeb9260/Makefile
index 895412d..381bda8 100644
--- a/board/afeb9260/Makefile
+++ b/board/afeb9260/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/afeb9260/afeb9260.c b/board/afeb9260/afeb9260.c
index 3c37557..2929302 100644
--- a/board/afeb9260/afeb9260.c
+++ b/board/afeb9260/afeb9260.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * (C) Copyright 2008 Sergey Lapin <slapin@ossfans.org>
  *
diff --git a/board/atmel/at91cap9adk/Makefile b/board/atmel/at91cap9adk/Makefile
index 2eec0ce..50dca1f 100644
--- a/board/atmel/at91cap9adk/Makefile
+++ b/board/atmel/at91cap9adk/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91cap9adk/at91cap9adk.c b/board/atmel/at91cap9adk/at91cap9adk.c
index 2ab8bc2..b537ae6 100644
--- a/board/atmel/at91cap9adk/at91cap9adk.c
+++ b/board/atmel/at91cap9adk/at91cap9adk.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91cap9adk/led.c b/board/atmel/at91cap9adk/led.c
index 14aea99..6785a41 100644
--- a/board/atmel/at91cap9adk/led.c
+++ b/board/atmel/at91cap9adk/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9260ek/Makefile b/board/atmel/at91sam9260ek/Makefile
index 1fd8529..5b8a58d 100644
--- a/board/atmel/at91sam9260ek/Makefile
+++ b/board/atmel/at91sam9260ek/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c
index 64c6d17..8f19f4a 100644
--- a/board/atmel/at91sam9260ek/at91sam9260ek.c
+++ b/board/atmel/at91sam9260ek/at91sam9260ek.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9260ek/led.c b/board/atmel/at91sam9260ek/led.c
index 2424d27..2fded93 100644
--- a/board/atmel/at91sam9260ek/led.c
+++ b/board/atmel/at91sam9260ek/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9261ek/Makefile b/board/atmel/at91sam9261ek/Makefile
index 9d20ba0..5ecf37b 100644
--- a/board/atmel/at91sam9261ek/Makefile
+++ b/board/atmel/at91sam9261ek/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9261ek/at91sam9261ek.c b/board/atmel/at91sam9261ek/at91sam9261ek.c
index de5cfae..0777a7b 100644
--- a/board/atmel/at91sam9261ek/at91sam9261ek.c
+++ b/board/atmel/at91sam9261ek/at91sam9261ek.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9261ek/led.c b/board/atmel/at91sam9261ek/led.c
index 5d1c5f2..8064b4b 100644
--- a/board/atmel/at91sam9261ek/led.c
+++ b/board/atmel/at91sam9261ek/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9263ek/Makefile b/board/atmel/at91sam9263ek/Makefile
index e43326e..e70e44d 100644
--- a/board/atmel/at91sam9263ek/Makefile
+++ b/board/atmel/at91sam9263ek/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c
index 91efc07..583570d 100644
--- a/board/atmel/at91sam9263ek/at91sam9263ek.c
+++ b/board/atmel/at91sam9263ek/at91sam9263ek.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9263ek/led.c b/board/atmel/at91sam9263ek/led.c
index fa1f05b..1dd812e 100644
--- a/board/atmel/at91sam9263ek/led.c
+++ b/board/atmel/at91sam9263ek/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9m10g45ek/Makefile b/board/atmel/at91sam9m10g45ek/Makefile
index 7aa2521..ddef61f 100644
--- a/board/atmel/at91sam9m10g45ek/Makefile
+++ b/board/atmel/at91sam9m10g45ek/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
index f92b20f..3f85c97 100644
--- a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
+++ b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9m10g45ek/led.c b/board/atmel/at91sam9m10g45ek/led.c
index ff59a2d..b3e279d 100644
--- a/board/atmel/at91sam9m10g45ek/led.c
+++ b/board/atmel/at91sam9m10g45ek/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9rlek/Makefile b/board/atmel/at91sam9rlek/Makefile
index 234aeb6..7eaec95 100644
--- a/board/atmel/at91sam9rlek/Makefile
+++ b/board/atmel/at91sam9rlek/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9rlek/at91sam9rlek.c b/board/atmel/at91sam9rlek/at91sam9rlek.c
index e374917..373d992 100644
--- a/board/atmel/at91sam9rlek/at91sam9rlek.c
+++ b/board/atmel/at91sam9rlek/at91sam9rlek.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/atmel/at91sam9rlek/led.c b/board/atmel/at91sam9rlek/led.c
index 9634cc0..bdb99c6 100644
--- a/board/atmel/at91sam9rlek/led.c
+++ b/board/atmel/at91sam9rlek/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/calao/sbc35_a9g20/Makefile b/board/calao/sbc35_a9g20/Makefile
index cc4219d..123e90b 100644
--- a/board/calao/sbc35_a9g20/Makefile
+++ b/board/calao/sbc35_a9g20/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/calao/sbc35_a9g20/sbc35_a9g20.c b/board/calao/sbc35_a9g20/sbc35_a9g20.c
index 9df45c0..c7fda3d 100644
--- a/board/calao/sbc35_a9g20/sbc35_a9g20.c
+++ b/board/calao/sbc35_a9g20/sbc35_a9g20.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Copyright (C) 2009
diff --git a/board/calao/tny_a9260/Makefile b/board/calao/tny_a9260/Makefile
index 151a228..ee1507b 100644
--- a/board/calao/tny_a9260/Makefile
+++ b/board/calao/tny_a9260/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/calao/tny_a9260/tny_a9260.c b/board/calao/tny_a9260/tny_a9260.c
index d51ca15..71b4748 100644
--- a/board/calao/tny_a9260/tny_a9260.c
+++ b/board/calao/tny_a9260/tny_a9260.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Copyright (C) 2009
diff --git a/board/esd/meesc/Makefile b/board/esd/meesc/Makefile
index b414479..61ae88b 100644
--- a/board/esd/meesc/Makefile
+++ b/board/esd/meesc/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/esd/meesc/meesc.c b/board/esd/meesc/meesc.c
index 41fa3e1..7c98958 100644
--- a/board/esd/meesc/meesc.c
+++ b/board/esd/meesc/meesc.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2009-2010
diff --git a/board/esd/otc570/Makefile b/board/esd/otc570/Makefile
index 87657ff..08be2a0 100644
--- a/board/esd/otc570/Makefile
+++ b/board/esd/otc570/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/esd/otc570/otc570.c b/board/esd/otc570/otc570.c
index 410d8b4..8343bb1 100644
--- a/board/esd/otc570/otc570.c
+++ b/board/esd/otc570/otc570.c
@@ -4,7 +4,7 @@
  * esd electronic system design gmbh <www.esd.eu>
  *
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/eukrea/cpu9260/Makefile b/board/eukrea/cpu9260/Makefile
index 4d02aae..cea1b4c 100644
--- a/board/eukrea/cpu9260/Makefile
+++ b/board/eukrea/cpu9260/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop at leadtechdesign.com
+# Stelian Pop <stelian@popies.net
 # Lead Tech Design <www.leadtechdesign.com>
 # Ilko Iliev <www.ronetix.at>
 #
diff --git a/board/eukrea/cpu9260/cpu9260.c b/board/eukrea/cpu9260/cpu9260.c
index 61b6c33..cee8604 100644
--- a/board/eukrea/cpu9260/cpu9260.c
+++ b/board/eukrea/cpu9260/cpu9260.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/board/ronetix/pm9261/Makefile b/board/ronetix/pm9261/Makefile
index 4b49808..7c94218 100644
--- a/board/ronetix/pm9261/Makefile
+++ b/board/ronetix/pm9261/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 # Ilko Iliev <www.ronetix.at>
 #
diff --git a/board/ronetix/pm9261/led.c b/board/ronetix/pm9261/led.c
index ff21ce6..6983d87 100644
--- a/board/ronetix/pm9261/led.c
+++ b/board/ronetix/pm9261/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/pm9261/pm9261.c
index 53d8c48..979fe93 100644
--- a/board/ronetix/pm9261/pm9261.c
+++ b/board/ronetix/pm9261/pm9261.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at)
  * Copyright (C) 2009 Jean-Christopher PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/board/ronetix/pm9263/Makefile b/board/ronetix/pm9263/Makefile
index 2fc9fb4..a1c4c4f 100644
--- a/board/ronetix/pm9263/Makefile
+++ b/board/ronetix/pm9263/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 # Ilko Iliev <www.ronetix.at>
 #
diff --git a/board/ronetix/pm9263/led.c b/board/ronetix/pm9263/led.c
index 4e585a4..bf2bba3 100644
--- a/board/ronetix/pm9263/led.c
+++ b/board/ronetix/pm9263/led.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/board/ronetix/pm9263/pm9263.c b/board/ronetix/pm9263/pm9263.c
index 4dc0237..c562dae 100644
--- a/board/ronetix/pm9263/pm9263.c
+++ b/board/ronetix/pm9263/pm9263.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at)
  * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
diff --git a/board/ronetix/pm9g45/Makefile b/board/ronetix/pm9g45/Makefile
index cb01262..4010d87 100644
--- a/board/ronetix/pm9g45/Makefile
+++ b/board/ronetix/pm9g45/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/board/ronetix/pm9g45/pm9g45.c b/board/ronetix/pm9g45/pm9g45.c
index f3d48f2..27f830f 100644
--- a/board/ronetix/pm9g45/pm9g45.c
+++ b/board/ronetix/pm9g45/pm9g45.c
@@ -5,7 +5,7 @@
  * Ronetix GmbH <www.ronetix.at>
  *
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/syteco/jadecpu/Makefile b/board/syteco/jadecpu/Makefile
index 30818d2..a5c4342 100644
--- a/board/syteco/jadecpu/Makefile
+++ b/board/syteco/jadecpu/Makefile
@@ -3,7 +3,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
 # (C) Copyright 2008
-# Stelian Pop <stelian.pop@leadtechdesign.com>
+# Stelian Pop <stelian@popies.net>
 # Lead Tech Design <www.leadtechdesign.com>
 #
 # See file CREDITS for list of people who contributed to this
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c
index d5eb54a..b5382f6 100644
--- a/drivers/mtd/nand/atmel_nand.c
+++ b/drivers/mtd/nand/atmel_nand.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2006 ATMEL Rousset, Lacressonniere Nicolas
diff --git a/include/configs/at91cap9adk.h b/include/configs/at91cap9adk.h
index 49c923f..b1dc468 100644
--- a/include/configs/at91cap9adk.h
+++ b/include/configs/at91cap9adk.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91CAP9ADK board.
diff --git a/include/configs/at91sam9260ek.h b/include/configs/at91sam9260ek.h
index 5e7dee5..ab31bf5 100644
--- a/include/configs/at91sam9260ek.h
+++ b/include/configs/at91sam9260ek.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards.
diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
index 401478b..ccd4e5b 100644
--- a/include/configs/at91sam9261ek.h
+++ b/include/configs/at91sam9261ek.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91SAM9261EK board.
diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
index f6cb406..5b8d53b 100644
--- a/include/configs/at91sam9263ek.h
+++ b/include/configs/at91sam9263ek.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91SAM9263EK board.
diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
index de74dcf..5962789 100644
--- a/include/configs/at91sam9m10g45ek.h
+++ b/include/configs/at91sam9m10g45ek.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91SAM9M10G45EK board(and AT91SAM9G45EKES).
diff --git a/include/configs/at91sam9rlek.h b/include/configs/at91sam9rlek.h
index 8dbd082..2673228 100644
--- a/include/configs/at91sam9rlek.h
+++ b/include/configs/at91sam9rlek.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the AT91SAM9RLEK board.
diff --git a/include/configs/cpu9260.h b/include/configs/cpu9260.h
index d239423..0860763 100644
--- a/include/configs/cpu9260.h
+++ b/include/configs/cpu9260.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/include/configs/meesc.h b/include/configs/meesc.h
index a27b36b..8967224 100644
--- a/include/configs/meesc.h
+++ b/include/configs/meesc.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * (C) Copyright 2009-2010
diff --git a/include/configs/otc570.h b/include/configs/otc570.h
index ca3bf26..f70f728 100644
--- a/include/configs/otc570.h
+++ b/include/configs/otc570.h
@@ -4,7 +4,7 @@
  * esd electronic system design gmbh <www.esd.eu>
  *
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the esd OTC570 board.
diff --git a/include/configs/pm9261.h b/include/configs/pm9261.h
index 7fcc9ba..bcf91e0 100644
--- a/include/configs/pm9261.h
+++ b/include/configs/pm9261.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/include/configs/pm9263.h b/include/configs/pm9263.h
index 619af2d..b296d85 100644
--- a/include/configs/pm9263.h
+++ b/include/configs/pm9263.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  * Ilko Iliev <www.ronetix.at>
  *
diff --git a/include/configs/pm9g45.h b/include/configs/pm9g45.h
index 3ed6b56..490bd99 100644
--- a/include/configs/pm9g45.h
+++ b/include/configs/pm9g45.h
@@ -5,7 +5,7 @@
  * Ronetix GmbH <www.ronetix.at>
  *
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Configuation settings for the PM9G45 board.
diff --git a/include/configs/tny_a9260.h b/include/configs/tny_a9260.h
index 7b18022..3c902fe 100644
--- a/include/configs/tny_a9260.h
+++ b/include/configs/tny_a9260.h
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2007-2008
- * Stelian Pop <stelian.pop@leadtechdesign.com>
+ * Stelian Pop <stelian@popies.net>
  * Lead Tech Design <www.leadtechdesign.com>
  *
  * Copyright (C) 2009
-- 
1.7.1

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

* [U-Boot] Pull request: u-boot-arm
@ 2011-05-23  7:06 Albert ARIBAUD
  0 siblings, 0 replies; 40+ messages in thread
From: Albert ARIBAUD @ 2011-05-23  7:06 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

The following changes since commit 5d1ee00b1fe1180503f6dfc10e87a6c6e74778f3:

   .gitignore: update list of u-boot.* files and add *.bin (2011-05-22 
23:46:26 +0200)

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

David M?ller (ELSOFT AG) (1):
       VCMA9: use ARM relocation feature to fix build error

Fabio Estevam (6):
       mx31pdk: Clean up mx31pdk.h file
       MX53: Add initial support for MX53SMD board.
       MX51: vision: Let video mode struct be independant of watchdog.
       MX51: vision2: Fix build for vision2 board.
       MX53: Handle silicon revision 2.1 case
       MX53: Remove CONFIG_SYS_BOOTMAPSZ from mx53 config files.

Jason Kridner (1):
       BeagleBoard: fixed typo in typecast

Jason Liu (2):
       MX53: support for freescale MX53LOCO board
       mx5: board: code clean up for checkboard code

Michael Walle (1):
       mvsata: issue hard reset on initialization

Shawn Guo (2):
       mx5: Remove unnecessary CONFIG_SYS_BOOTMAPSZ definition
       mx5: Fix CONFIG_OF_LIBFDT redefined warning

Stefano Babic (3):
       MX31: Make get_reset_cause() static and drop unreachable code
       MX5: drop config.mk from efikamx board
       MX31: drop warnings due to missing prototype for mxc_watchdog_reset()

  MAINTAINERS                                        |    2 +
  arch/arm/cpu/arm1136/mx31/generic.c                |    6 +-
  arch/arm/cpu/armv7/mx5/soc.c                       |   10 +-
  arch/arm/include/asm/arch-mx31/clock.h             |    1 +
  board/efikamx/efikamx.c                            |   42 +---
  board/freescale/mx51evk/mx51evk.c                  |   36 +---
  board/freescale/mx53evk/mx53evk.c                  |   21 +--
  .../config.mk => freescale/mx53loco/Makefile}      |   36 ++-
  board/freescale/mx53loco/imximage.cfg              |   96 ++++++
  board/freescale/mx53loco/mx53loco.c                |  302 
++++++++++++++++++++
  .../config.mk => freescale/mx53smd/Makefile}       |   35 ++-
  board/freescale/mx53smd/imximage.cfg               |   96 ++++++
  board/freescale/mx53smd/mx53smd.c                  |  229 +++++++++++++++
  board/ti/beagle/beagle.c                           |    2 +-
  board/ttcontrol/vision2/vision2.c                  |   47 +---
  boards.cfg                                         |    6 +-
  drivers/block/mvsata_ide.c                         |   10 +-
  include/configs/VCMA9.h                            |    5 +
  include/configs/mx31pdk.h                          |   32 +-
  include/configs/mx51evk.h                          |    3 -
  include/configs/mx53evk.h                          |    3 -
  include/configs/mx53loco.h                         |  185 ++++++++++++
  include/configs/mx53smd.h                          |  191 ++++++++++++
  include/configs/vision2.h                          |    1 +
  24 files changed, 1206 insertions(+), 191 deletions(-)
  rename board/{efikamx/config.mk => freescale/mx53loco/Makefile} (51%)
  create mode 100644 board/freescale/mx53loco/imximage.cfg
  create mode 100644 board/freescale/mx53loco/mx53loco.c
  rename board/{ttcontrol/vision2/config.mk => 
freescale/mx53smd/Makefile} (50%)
  create mode 100644 board/freescale/mx53smd/imximage.cfg
  create mode 100644 board/freescale/mx53smd/mx53smd.c
  create mode 100644 include/configs/mx53loco.h
  create mode 100644 include/configs/mx53smd.h

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2011-05-18 12:20 Albert ARIBAUD
@ 2011-05-18 12:42 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2011-05-18 12:42 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4DD3B9A3.2080908@aribaud.net> you wrote:
> Hi Wolfgang,
> 
> The following changes since commit 535abb96fb665402894b820f934deaca61ce3d3e:
> 
>    Merge branch 'master' of git://git.denx.de/u-boot-nand-flash 
> (2011-05-15 23:23:36 +0200)
> 
> are available in the git repository at:
> 
>    git://git.denx.de/u-boot-arm master
> 
> Andreas Bie?mann (19):
>        avr32: rename memory-map.h -> hardware.h
>        avr32: fixup definitions to ATMEL_BASE_xxx
>        avr32: fix linking
>        avr32/config.mk: simplify PLATFORM_RELFLAGS
>        avr32: use single linker script
>        atngw100: fix "#define XXXX 1"
>        atstk1002: fix "#define XXXX 1"
>        atstk1003: fix "#define XXXX 1"
>        atstk1004: fix "#define XXXX 1"
>        atstk1006: fix "#define XXXX 1"
>        favr-32-ezkit: fix "#define XXXX 1"
>        hammerhead: fix "#define XXXX 1"
>        mimc200: fix "#define XXXX 1"
>        atngw100: move CONFIG_SYS_TEXT_BASE to header
>        atstk100x: move CONFIG_SYS_TEXT_BASE to header
>        favr-32-ezkit: move CONFIG_SYS_TEXT_BASE to header
>        mimc200: move CONFIG_SYS_TEXT_BASE to header
>        hammerhead: move CONFIG_SYS_TEXT_BASE to header
>        avr32: add ATAG_BOARDINFO
> 
> Daniel Gorsulowski (3):
>        at91: fixed at91sam9263 system file
>        at91: reworked support for meesc board
>        at91: reworked support for otc570 board
> 
> Jens Scharsig (2):
>        at91rm9200: fix lowlevel_init() SMRDATA size
>        remove __attribute__ ((packed)) in at91 headers
> 
> Reinhard Meyer (15):
>        AT91: rework at91sam9260.h
>        AT91: rework at91sam9261.h
>        AT91: rework at91sam9263.h
>        AT91: rework at91sam9g45.h
>        AT91: cleanup hardware.h, remove memory-map.h
>        AT91: fix related arch-at91 header files
>        AT91: fix related at91 system/driver files
>        AT91: fix related at91 driver files
>        ATMEL: fix related common atmel driver files
>        AT91: cleanup at91sam9260_matrix.h to struct SoC access
>        AT91: change includes from asm/arch/io.h to asm/io.h
>        ATMEL: fix dataflash (dirty) this file should be converted to 
> struct SoC access
>        AT91: remove LEGACY from at91_rstc.h
>        AT91: fix at91sam_wdt.c to reworked header files
>        AT91: fix timer.c - remove reset_timer()
> 
> Ryan Mallon (1):
>        Add support for Bluewater Systems Snapper 9260 and 9G20 modules
> 
>   arch/arm/cpu/arm920t/at91/lowlevel_init.S          |    8 +-
>   arch/arm/cpu/arm926ejs/at91/Makefile               |    1 +
>   arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |   47 +---
>   arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c  |   55 ++---
>   arch/arm/cpu/arm926ejs/at91/clock.c                |    8 +-
>   arch/arm/cpu/arm926ejs/at91/cpu.c                  |   11 +-
>   arch/arm/cpu/arm926ejs/at91/eflash.c               |   16 +-
>   arch/arm/cpu/arm926ejs/at91/led.c                  |    2 +-
>   arch/arm/cpu/arm926ejs/at91/reset.c                |    4 +-
>   arch/arm/cpu/arm926ejs/at91/timer.c                |   37 ++--
>   arch/arm/include/asm/arch-at91/at91_common.h       |    3 +-
>   arch/arm/include/asm/arch-at91/at91_mc.h           |   10 +-
>   arch/arm/include/asm/arch-at91/at91_pio.h          |   19 +--
>   arch/arm/include/asm/arch-at91/at91_rstc.h         |   25 --
>   arch/arm/include/asm/arch-at91/at91_st.h           |    2 +-
>   arch/arm/include/asm/arch-at91/at91_tc.h           |    4 +-
>   arch/arm/include/asm/arch-at91/at91sam9260.h       |  252 
> ++++++++++---------
>   .../arm/include/asm/arch-at91/at91sam9260_matrix.h |  102 ++++-----
>   arch/arm/include/asm/arch-at91/at91sam9261.h       |  187 ++++++++-------
>   arch/arm/include/asm/arch-at91/at91sam9263.h       |  218 
> ++++++++---------
>   arch/arm/include/asm/arch-at91/at91sam9g45.h       |  225 
> ++++++++---------
>   arch/arm/include/asm/arch-at91/gpio.h              |   18 +-
>   arch/arm/include/asm/arch-at91/hardware.h          |   96 +++-----
>   arch/arm/include/asm/arch-at91/io.h                |   43 ----
>   arch/arm/include/asm/arch-at91/memory-map.h        |   36 ---
>   arch/avr32/config.mk                               |    6 +-
>   arch/avr32/cpu/at32ap700x/clk.c                    |    2 +-
>   arch/avr32/cpu/at32ap700x/portmux.c                |    2 +-
>   arch/avr32/cpu/at32ap700x/sm.h                     |    4 +-
>   arch/avr32/cpu/cpu.c                               |    2 +-
>   arch/avr32/cpu/hsdramc.c                           |    2 +-
>   arch/avr32/cpu/hsdramc1.h                          |    4 +-
>   arch/avr32/cpu/hsmc3.h                             |    4 +-
>   arch/avr32/cpu/interrupts.c                        |    4 +-
>   arch/avr32/cpu/portmux-gpio.c                      |    2 +-
>   arch/avr32/cpu/portmux-pio.c                       |    2 +-
>   .../atmel/atstk1000 => arch/avr32/cpu}/u-boot.lds  |    0
>   arch/avr32/include/asm/arch-at32ap700x/gpio.h      |   12 +-
>   .../arch-at32ap700x/{memory-map.h => hardware.h}   |   76 +++---
>   arch/avr32/include/asm/arch-at32ap700x/portmux.h   |   10 +-
>   arch/avr32/include/asm/hmatrix-common.h            |    2 +-
>   arch/avr32/include/asm/setup.h                     |    8 +
>   arch/avr32/lib/bootm.c                             |   11 +
>   board/atmel/atngw100/atngw100.c                    |    4 +-
>   board/atmel/atngw100/config.mk                     |    3 -
>   board/atmel/atngw100/u-boot.lds                    |   72 ------
>   board/atmel/atstk1000/atstk1000.c                  |    4 +-
>   board/atmel/atstk1000/config.mk                    |    3 -
>   board/earthlcd/favr-32-ezkit/config.mk             |    3 -
>   board/earthlcd/favr-32-ezkit/favr-32-ezkit.c       |    3 +-
>   board/earthlcd/favr-32-ezkit/u-boot.lds            |   70 -----
>   board/esd/otc570/config.mk                         |    1 -
>   board/esd/otc570/otc570.c                          |  106 +++++----
>   board/mimc/mimc200/config.mk                       |    3 -
>   board/mimc/mimc200/mimc200.c                       |    4 +-
>   board/mimc/mimc200/u-boot.lds                      |   72 ------
>   board/miromico/hammerhead/config.mk                |    3 -
>   board/miromico/hammerhead/hammerhead.c             |    5 +-
>   board/miromico/hammerhead/u-boot.lds               |   72 ------
>   boards.cfg                                         |    8 +-
>   drivers/gpio/at91_gpio.c                           |   54 +++--
>   drivers/mmc/atmel_mci.c                            |    2 +-
>   drivers/mmc/atmel_mci.h                            |    4 +-
>   drivers/mmc/gen_atmel_mci.c                        |    2 +-
>   drivers/net/macb.c                                 |   14 +-
>   drivers/rtc/at91sam9_rtt.c                         |   14 +-
>   drivers/serial/atmel_usart.c                       |   28 +--
>   drivers/spi/atmel_dataflash_spi.c                  |   94 +++++---
>   drivers/spi/atmel_spi.c                            |   16 +-
>   drivers/usb/host/ohci-at91.c                       |   18 +-
>   drivers/watchdog/at91sam9_wdt.c                    |    6 +-
>   include/configs/atngw100.h                         |   61 +++---
>   include/configs/atstk1002.h                        |   57 ++---
>   include/configs/atstk1003.h                        |   51 ++--
>   include/configs/atstk1004.h                        |   51 ++--
>   include/configs/atstk1006.h                        |   57 ++---
>   include/configs/favr-32-ezkit.h                    |   55 ++--
>   include/configs/hammerhead.h                       |   52 ++--
>   include/configs/mimc200.h                          |   63 +++---
>   include/configs/otc570.h                           |  265 
> +++++++++++---------
>   include/dataflash.h                                |    1 -
>   81 files changed, 1287 insertions(+), 1696 deletions(-)
>   delete mode 100644 arch/arm/include/asm/arch-at91/io.h
>   delete mode 100644 arch/arm/include/asm/arch-at91/memory-map.h
>   rename {board/atmel/atstk1000 => arch/avr32/cpu}/u-boot.lds (100%)
>   rename arch/avr32/include/asm/arch-at32ap700x/{memory-map.h => 
> hardware.h} (53%)
>   delete mode 100644 board/atmel/atngw100/config.mk
>   delete mode 100644 board/atmel/atngw100/u-boot.lds
>   delete mode 100644 board/atmel/atstk1000/config.mk
>   delete mode 100644 board/earthlcd/favr-32-ezkit/config.mk
>   delete mode 100644 board/earthlcd/favr-32-ezkit/u-boot.lds
>   delete mode 100644 board/esd/otc570/config.mk
>   delete mode 100644 board/mimc/mimc200/config.mk
>   delete mode 100644 board/mimc/mimc200/u-boot.lds
>   delete mode 100644 board/miromico/hammerhead/config.mk
>   delete mode 100644 board/miromico/hammerhead/u-boot.lds

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
Do not underestimate the value of print statements for debugging.

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

* [U-Boot] Pull request: u-boot-arm
@ 2011-05-18 12:20 Albert ARIBAUD
  2011-05-18 12:42 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2011-05-18 12:20 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

The following changes since commit 535abb96fb665402894b820f934deaca61ce3d3e:

   Merge branch 'master' of git://git.denx.de/u-boot-nand-flash 
(2011-05-15 23:23:36 +0200)

are available in the git repository at:

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

Andreas Bie?mann (19):
       avr32: rename memory-map.h -> hardware.h
       avr32: fixup definitions to ATMEL_BASE_xxx
       avr32: fix linking
       avr32/config.mk: simplify PLATFORM_RELFLAGS
       avr32: use single linker script
       atngw100: fix "#define XXXX 1"
       atstk1002: fix "#define XXXX 1"
       atstk1003: fix "#define XXXX 1"
       atstk1004: fix "#define XXXX 1"
       atstk1006: fix "#define XXXX 1"
       favr-32-ezkit: fix "#define XXXX 1"
       hammerhead: fix "#define XXXX 1"
       mimc200: fix "#define XXXX 1"
       atngw100: move CONFIG_SYS_TEXT_BASE to header
       atstk100x: move CONFIG_SYS_TEXT_BASE to header
       favr-32-ezkit: move CONFIG_SYS_TEXT_BASE to header
       mimc200: move CONFIG_SYS_TEXT_BASE to header
       hammerhead: move CONFIG_SYS_TEXT_BASE to header
       avr32: add ATAG_BOARDINFO

Daniel Gorsulowski (3):
       at91: fixed at91sam9263 system file
       at91: reworked support for meesc board
       at91: reworked support for otc570 board

Jens Scharsig (2):
       at91rm9200: fix lowlevel_init() SMRDATA size
       remove __attribute__ ((packed)) in at91 headers

Reinhard Meyer (15):
       AT91: rework at91sam9260.h
       AT91: rework at91sam9261.h
       AT91: rework at91sam9263.h
       AT91: rework at91sam9g45.h
       AT91: cleanup hardware.h, remove memory-map.h
       AT91: fix related arch-at91 header files
       AT91: fix related at91 system/driver files
       AT91: fix related at91 driver files
       ATMEL: fix related common atmel driver files
       AT91: cleanup at91sam9260_matrix.h to struct SoC access
       AT91: change includes from asm/arch/io.h to asm/io.h
       ATMEL: fix dataflash (dirty) this file should be converted to 
struct SoC access
       AT91: remove LEGACY from at91_rstc.h
       AT91: fix at91sam_wdt.c to reworked header files
       AT91: fix timer.c - remove reset_timer()

Ryan Mallon (1):
       Add support for Bluewater Systems Snapper 9260 and 9G20 modules

  arch/arm/cpu/arm920t/at91/lowlevel_init.S          |    8 +-
  arch/arm/cpu/arm926ejs/at91/Makefile               |    1 +
  arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |   47 +---
  arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c  |   55 ++---
  arch/arm/cpu/arm926ejs/at91/clock.c                |    8 +-
  arch/arm/cpu/arm926ejs/at91/cpu.c                  |   11 +-
  arch/arm/cpu/arm926ejs/at91/eflash.c               |   16 +-
  arch/arm/cpu/arm926ejs/at91/led.c                  |    2 +-
  arch/arm/cpu/arm926ejs/at91/reset.c                |    4 +-
  arch/arm/cpu/arm926ejs/at91/timer.c                |   37 ++--
  arch/arm/include/asm/arch-at91/at91_common.h       |    3 +-
  arch/arm/include/asm/arch-at91/at91_mc.h           |   10 +-
  arch/arm/include/asm/arch-at91/at91_pio.h          |   19 +--
  arch/arm/include/asm/arch-at91/at91_rstc.h         |   25 --
  arch/arm/include/asm/arch-at91/at91_st.h           |    2 +-
  arch/arm/include/asm/arch-at91/at91_tc.h           |    4 +-
  arch/arm/include/asm/arch-at91/at91sam9260.h       |  252 
++++++++++---------
  .../arm/include/asm/arch-at91/at91sam9260_matrix.h |  102 ++++-----
  arch/arm/include/asm/arch-at91/at91sam9261.h       |  187 ++++++++-------
  arch/arm/include/asm/arch-at91/at91sam9263.h       |  218 
++++++++---------
  arch/arm/include/asm/arch-at91/at91sam9g45.h       |  225 
++++++++---------
  arch/arm/include/asm/arch-at91/gpio.h              |   18 +-
  arch/arm/include/asm/arch-at91/hardware.h          |   96 +++-----
  arch/arm/include/asm/arch-at91/io.h                |   43 ----
  arch/arm/include/asm/arch-at91/memory-map.h        |   36 ---
  arch/avr32/config.mk                               |    6 +-
  arch/avr32/cpu/at32ap700x/clk.c                    |    2 +-
  arch/avr32/cpu/at32ap700x/portmux.c                |    2 +-
  arch/avr32/cpu/at32ap700x/sm.h                     |    4 +-
  arch/avr32/cpu/cpu.c                               |    2 +-
  arch/avr32/cpu/hsdramc.c                           |    2 +-
  arch/avr32/cpu/hsdramc1.h                          |    4 +-
  arch/avr32/cpu/hsmc3.h                             |    4 +-
  arch/avr32/cpu/interrupts.c                        |    4 +-
  arch/avr32/cpu/portmux-gpio.c                      |    2 +-
  arch/avr32/cpu/portmux-pio.c                       |    2 +-
  .../atmel/atstk1000 => arch/avr32/cpu}/u-boot.lds  |    0
  arch/avr32/include/asm/arch-at32ap700x/gpio.h      |   12 +-
  .../arch-at32ap700x/{memory-map.h => hardware.h}   |   76 +++---
  arch/avr32/include/asm/arch-at32ap700x/portmux.h   |   10 +-
  arch/avr32/include/asm/hmatrix-common.h            |    2 +-
  arch/avr32/include/asm/setup.h                     |    8 +
  arch/avr32/lib/bootm.c                             |   11 +
  board/atmel/atngw100/atngw100.c                    |    4 +-
  board/atmel/atngw100/config.mk                     |    3 -
  board/atmel/atngw100/u-boot.lds                    |   72 ------
  board/atmel/atstk1000/atstk1000.c                  |    4 +-
  board/atmel/atstk1000/config.mk                    |    3 -
  board/earthlcd/favr-32-ezkit/config.mk             |    3 -
  board/earthlcd/favr-32-ezkit/favr-32-ezkit.c       |    3 +-
  board/earthlcd/favr-32-ezkit/u-boot.lds            |   70 -----
  board/esd/otc570/config.mk                         |    1 -
  board/esd/otc570/otc570.c                          |  106 +++++----
  board/mimc/mimc200/config.mk                       |    3 -
  board/mimc/mimc200/mimc200.c                       |    4 +-
  board/mimc/mimc200/u-boot.lds                      |   72 ------
  board/miromico/hammerhead/config.mk                |    3 -
  board/miromico/hammerhead/hammerhead.c             |    5 +-
  board/miromico/hammerhead/u-boot.lds               |   72 ------
  boards.cfg                                         |    8 +-
  drivers/gpio/at91_gpio.c                           |   54 +++--
  drivers/mmc/atmel_mci.c                            |    2 +-
  drivers/mmc/atmel_mci.h                            |    4 +-
  drivers/mmc/gen_atmel_mci.c                        |    2 +-
  drivers/net/macb.c                                 |   14 +-
  drivers/rtc/at91sam9_rtt.c                         |   14 +-
  drivers/serial/atmel_usart.c                       |   28 +--
  drivers/spi/atmel_dataflash_spi.c                  |   94 +++++---
  drivers/spi/atmel_spi.c                            |   16 +-
  drivers/usb/host/ohci-at91.c                       |   18 +-
  drivers/watchdog/at91sam9_wdt.c                    |    6 +-
  include/configs/atngw100.h                         |   61 +++---
  include/configs/atstk1002.h                        |   57 ++---
  include/configs/atstk1003.h                        |   51 ++--
  include/configs/atstk1004.h                        |   51 ++--
  include/configs/atstk1006.h                        |   57 ++---
  include/configs/favr-32-ezkit.h                    |   55 ++--
  include/configs/hammerhead.h                       |   52 ++--
  include/configs/mimc200.h                          |   63 +++---
  include/configs/otc570.h                           |  265 
+++++++++++---------
  include/dataflash.h                                |    1 -
  81 files changed, 1287 insertions(+), 1696 deletions(-)
  delete mode 100644 arch/arm/include/asm/arch-at91/io.h
  delete mode 100644 arch/arm/include/asm/arch-at91/memory-map.h
  rename {board/atmel/atstk1000 => arch/avr32/cpu}/u-boot.lds (100%)
  rename arch/avr32/include/asm/arch-at32ap700x/{memory-map.h => 
hardware.h} (53%)
  delete mode 100644 board/atmel/atngw100/config.mk
  delete mode 100644 board/atmel/atngw100/u-boot.lds
  delete mode 100644 board/atmel/atstk1000/config.mk
  delete mode 100644 board/earthlcd/favr-32-ezkit/config.mk
  delete mode 100644 board/earthlcd/favr-32-ezkit/u-boot.lds
  delete mode 100644 board/esd/otc570/config.mk
  delete mode 100644 board/mimc/mimc200/config.mk
  delete mode 100644 board/mimc/mimc200/u-boot.lds
  delete mode 100644 board/miromico/hammerhead/config.mk
  delete mode 100644 board/miromico/hammerhead/u-boot.lds

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2011-02-21  7:33 Albert ARIBAUD
@ 2011-02-21 22:16 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2011-02-21 22:16 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4D621552.7090101@free.fr> you wrote:
> Hi Wolfgang,
> 
> Please pull the following from u-boot-arm/master.
> 
> Amicalement,
> Albert.
> 
> The following changes since commit c650e1be41536a453d115e6b73898fa5dabdadc2:
> 
>    Fix compile warning in net/eth.c (2011-02-19 20:32:38 +0100)
> 
> are available in the git repository at:
>    git://www.denx.de/git/u-boot-arm.git master
> 
> Alexander Stein (1):
>        arm relocation: Fix calculation of board_init_r
> 
> Fabio Estevam (4):
>        mx31pdk: Use the new relocation scheme
>        mx31pdk: Make the full boot log visible
>        arm1136: Fix NAND boot
>        arm1136 relocation: Fix calculation of board_init_r
> 
> Lei Wen (5):
>        mv: seperate kirkwood and armada from common setting
>        ARM: Add Support for Marvell Pantheon Familiy SoCs
>        serial: add pantheon soc support
>        mvmfp: add MFP configuration support for PANTHEON
>        Pantheon: Add Board Support for Marvell dkb board
> 
> Lo?c Minier (1):
>        EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX
> 
> Po-Yu Chuang (1):
>        arm: get_sp() should always be compiled
> 
> Sandeep Paulraj (1):
>        ARM: Update mach-types
> 
> Tom Warren (4):
>        arm: Tegra2: Add basic NVIDIA Tegra2 SoC support
>        serial: Add Tegra2 serial port support
>        arm: Tegra2: Add support for NVIDIA Harmony board
>        arm: Tegra2: Add support for NVIDIA Seaboard board
> 
> Wolfgang Denk (1):
>        ARM: fix write*() I/O accessors
> 
>   MAINTAINERS                                   |    9 +
>   README                                        |    5 +
>   arch/arm/cpu/arm1136/start.S                  |   18 +-
>   arch/arm/cpu/arm926ejs/pantheon/Makefile      |   46 +
>   arch/arm/cpu/arm926ejs/pantheon/cpu.c         |   78 ++
>   arch/arm/cpu/arm926ejs/pantheon/dram.c        |  132 +++
>   arch/arm/cpu/arm926ejs/pantheon/timer.c       |  214 ++++
>   arch/arm/cpu/arm926ejs/start.S                |    2 +-
>   arch/arm/cpu/armv7/tegra2/Makefile            |   48 +
>   arch/arm/cpu/armv7/tegra2/board.c             |   88 ++
>   arch/arm/cpu/armv7/tegra2/config.mk           |   28 +
>   arch/arm/cpu/armv7/tegra2/lowlevel_init.S     |   65 ++
>   arch/arm/cpu/armv7/tegra2/sys_info.c          |   35 +
>   arch/arm/cpu/armv7/tegra2/timer.c             |  122 +++
>   arch/arm/include/asm/arch-armada100/config.h  |   44 +
>   arch/arm/include/asm/arch-kirkwood/config.h   |  145 +++
>   arch/arm/include/asm/arch-pantheon/config.h   |   38 +
>   arch/arm/include/asm/arch-pantheon/cpu.h      |   79 ++
>   arch/arm/include/asm/arch-pantheon/mfp.h      |   41 +
>   arch/arm/include/asm/arch-pantheon/pantheon.h |   54 +
>   arch/arm/include/asm/arch-tegra2/clk_rst.h    |  165 ++++
>   arch/arm/include/asm/arch-tegra2/pinmux.h     |   55 ++
>   arch/arm/include/asm/arch-tegra2/pmc.h        |  124 +++
>   arch/arm/include/asm/arch-tegra2/sys_proto.h  |   35 +
>   arch/arm/include/asm/arch-tegra2/tegra2.h     |   49 +
>   arch/arm/include/asm/arch-tegra2/uart.h       |   47 +
>   arch/arm/include/asm/io.h                     |    6 +-
>   arch/arm/include/asm/mach-types.h             | 1291 
> ++++++++++++++++++++++++-
>   arch/arm/lib/bootm.c                          |    4 +-
>   board/Marvell/dkb/Makefile                    |   51 +
>   board/Marvell/dkb/dkb.c                       |   54 +
>   board/efikamx/efikamx.c                       |    2 +-
>   board/freescale/mx31pdk/mx31pdk.c             |   17 +-
>   board/nvidia/common/board.c                   |  193 ++++
>   board/nvidia/harmony/Makefile                 |   50 +
>   board/nvidia/seaboard/Makefile                |   50 +
>   boards.cfg                                    |    3 +
>   common/serial.c                               |    3 +-
>   drivers/gpio/mvmfp.c                          |    2 +
>   drivers/serial/Makefile                       |    1 +
>   drivers/serial/serial.c                       |    2 +
>   drivers/serial/serial_tegra2.c                |   77 ++
>   drivers/serial/serial_tegra2.h                |   29 +
>   include/configs/aspenite.h                    |    8 +
>   include/configs/dkb.h                         |   65 ++
>   include/configs/harmony.h                     |   49 +
>   include/configs/mv-common.h                   |  147 +---
>   include/configs/mx31pdk.h                     |    7 +
>   include/configs/seaboard.h                    |   43 +
>   include/configs/tegra2-common.h               |  160 +++
>   include/serial.h                              |    3 +-
>   nand_spl/board/freescale/mx31pdk/u-boot.lds   |   59 +-
>   52 files changed, 3968 insertions(+), 174 deletions(-)
>   create mode 100644 arch/arm/cpu/arm926ejs/pantheon/Makefile
>   create mode 100644 arch/arm/cpu/arm926ejs/pantheon/cpu.c
>   create mode 100644 arch/arm/cpu/arm926ejs/pantheon/dram.c
>   create mode 100644 arch/arm/cpu/arm926ejs/pantheon/timer.c
>   create mode 100644 arch/arm/cpu/armv7/tegra2/Makefile
>   create mode 100644 arch/arm/cpu/armv7/tegra2/board.c
>   create mode 100644 arch/arm/cpu/armv7/tegra2/config.mk
>   create mode 100644 arch/arm/cpu/armv7/tegra2/lowlevel_init.S
>   create mode 100644 arch/arm/cpu/armv7/tegra2/sys_info.c
>   create mode 100644 arch/arm/cpu/armv7/tegra2/timer.c
>   create mode 100644 arch/arm/include/asm/arch-armada100/config.h
>   create mode 100644 arch/arm/include/asm/arch-kirkwood/config.h
>   create mode 100644 arch/arm/include/asm/arch-pantheon/config.h
>   create mode 100644 arch/arm/include/asm/arch-pantheon/cpu.h
>   create mode 100644 arch/arm/include/asm/arch-pantheon/mfp.h
>   create mode 100644 arch/arm/include/asm/arch-pantheon/pantheon.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/clk_rst.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/pinmux.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/pmc.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/sys_proto.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/tegra2.h
>   create mode 100644 arch/arm/include/asm/arch-tegra2/uart.h
>   create mode 100644 board/Marvell/dkb/Makefile
>   create mode 100644 board/Marvell/dkb/dkb.c
>   create mode 100644 board/nvidia/common/board.c
>   create mode 100644 board/nvidia/harmony/Makefile
>   create mode 100644 board/nvidia/seaboard/Makefile
>   create mode 100644 drivers/serial/serial_tegra2.c
>   create mode 100644 drivers/serial/serial_tegra2.h
>   create mode 100644 include/configs/dkb.h
>   create mode 100644 include/configs/harmony.h
>   create mode 100644 include/configs/seaboard.h
>   create mode 100644 include/configs/tegra2-common.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
"I dislike companies that have a we-are-the-high-priests-of-hardware-
so-you'll-like-what-we-give-you attitude. I like commodity markets in
which iron-and-silicon hawkers know that they exist to  provide  fast
toys for software types like me to play with..."    - Eric S. Raymond

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

* [U-Boot] Pull request: u-boot-arm
@ 2011-02-21  7:33 Albert ARIBAUD
  2011-02-21 22:16 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2011-02-21  7:33 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

Please pull the following from u-boot-arm/master.

Amicalement,
Albert.

The following changes since commit c650e1be41536a453d115e6b73898fa5dabdadc2:

   Fix compile warning in net/eth.c (2011-02-19 20:32:38 +0100)

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

Alexander Stein (1):
       arm relocation: Fix calculation of board_init_r

Fabio Estevam (4):
       mx31pdk: Use the new relocation scheme
       mx31pdk: Make the full boot log visible
       arm1136: Fix NAND boot
       arm1136 relocation: Fix calculation of board_init_r

Lei Wen (5):
       mv: seperate kirkwood and armada from common setting
       ARM: Add Support for Marvell Pantheon Familiy SoCs
       serial: add pantheon soc support
       mvmfp: add MFP configuration support for PANTHEON
       Pantheon: Add Board Support for Marvell dkb board

Lo?c Minier (1):
       EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX

Po-Yu Chuang (1):
       arm: get_sp() should always be compiled

Sandeep Paulraj (1):
       ARM: Update mach-types

Tom Warren (4):
       arm: Tegra2: Add basic NVIDIA Tegra2 SoC support
       serial: Add Tegra2 serial port support
       arm: Tegra2: Add support for NVIDIA Harmony board
       arm: Tegra2: Add support for NVIDIA Seaboard board

Wolfgang Denk (1):
       ARM: fix write*() I/O accessors

  MAINTAINERS                                   |    9 +
  README                                        |    5 +
  arch/arm/cpu/arm1136/start.S                  |   18 +-
  arch/arm/cpu/arm926ejs/pantheon/Makefile      |   46 +
  arch/arm/cpu/arm926ejs/pantheon/cpu.c         |   78 ++
  arch/arm/cpu/arm926ejs/pantheon/dram.c        |  132 +++
  arch/arm/cpu/arm926ejs/pantheon/timer.c       |  214 ++++
  arch/arm/cpu/arm926ejs/start.S                |    2 +-
  arch/arm/cpu/armv7/tegra2/Makefile            |   48 +
  arch/arm/cpu/armv7/tegra2/board.c             |   88 ++
  arch/arm/cpu/armv7/tegra2/config.mk           |   28 +
  arch/arm/cpu/armv7/tegra2/lowlevel_init.S     |   65 ++
  arch/arm/cpu/armv7/tegra2/sys_info.c          |   35 +
  arch/arm/cpu/armv7/tegra2/timer.c             |  122 +++
  arch/arm/include/asm/arch-armada100/config.h  |   44 +
  arch/arm/include/asm/arch-kirkwood/config.h   |  145 +++
  arch/arm/include/asm/arch-pantheon/config.h   |   38 +
  arch/arm/include/asm/arch-pantheon/cpu.h      |   79 ++
  arch/arm/include/asm/arch-pantheon/mfp.h      |   41 +
  arch/arm/include/asm/arch-pantheon/pantheon.h |   54 +
  arch/arm/include/asm/arch-tegra2/clk_rst.h    |  165 ++++
  arch/arm/include/asm/arch-tegra2/pinmux.h     |   55 ++
  arch/arm/include/asm/arch-tegra2/pmc.h        |  124 +++
  arch/arm/include/asm/arch-tegra2/sys_proto.h  |   35 +
  arch/arm/include/asm/arch-tegra2/tegra2.h     |   49 +
  arch/arm/include/asm/arch-tegra2/uart.h       |   47 +
  arch/arm/include/asm/io.h                     |    6 +-
  arch/arm/include/asm/mach-types.h             | 1291 
++++++++++++++++++++++++-
  arch/arm/lib/bootm.c                          |    4 +-
  board/Marvell/dkb/Makefile                    |   51 +
  board/Marvell/dkb/dkb.c                       |   54 +
  board/efikamx/efikamx.c                       |    2 +-
  board/freescale/mx31pdk/mx31pdk.c             |   17 +-
  board/nvidia/common/board.c                   |  193 ++++
  board/nvidia/harmony/Makefile                 |   50 +
  board/nvidia/seaboard/Makefile                |   50 +
  boards.cfg                                    |    3 +
  common/serial.c                               |    3 +-
  drivers/gpio/mvmfp.c                          |    2 +
  drivers/serial/Makefile                       |    1 +
  drivers/serial/serial.c                       |    2 +
  drivers/serial/serial_tegra2.c                |   77 ++
  drivers/serial/serial_tegra2.h                |   29 +
  include/configs/aspenite.h                    |    8 +
  include/configs/dkb.h                         |   65 ++
  include/configs/harmony.h                     |   49 +
  include/configs/mv-common.h                   |  147 +---
  include/configs/mx31pdk.h                     |    7 +
  include/configs/seaboard.h                    |   43 +
  include/configs/tegra2-common.h               |  160 +++
  include/serial.h                              |    3 +-
  nand_spl/board/freescale/mx31pdk/u-boot.lds   |   59 +-
  52 files changed, 3968 insertions(+), 174 deletions(-)
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/Makefile
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/cpu.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/dram.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/timer.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/Makefile
  create mode 100644 arch/arm/cpu/armv7/tegra2/board.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/config.mk
  create mode 100644 arch/arm/cpu/armv7/tegra2/lowlevel_init.S
  create mode 100644 arch/arm/cpu/armv7/tegra2/sys_info.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/timer.c
  create mode 100644 arch/arm/include/asm/arch-armada100/config.h
  create mode 100644 arch/arm/include/asm/arch-kirkwood/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/cpu.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/mfp.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/pantheon.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/clk_rst.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/pinmux.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/pmc.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/sys_proto.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/tegra2.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/uart.h
  create mode 100644 board/Marvell/dkb/Makefile
  create mode 100644 board/Marvell/dkb/dkb.c
  create mode 100644 board/nvidia/common/board.c
  create mode 100644 board/nvidia/harmony/Makefile
  create mode 100644 board/nvidia/seaboard/Makefile
  create mode 100644 drivers/serial/serial_tegra2.c
  create mode 100644 drivers/serial/serial_tegra2.h
  create mode 100644 include/configs/dkb.h
  create mode 100644 include/configs/harmony.h
  create mode 100644 include/configs/seaboard.h
  create mode 100644 include/configs/tegra2-common.h

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

* [U-Boot] Pull request: u-boot-arm
@ 2011-02-17 20:49 Albert ARIBAUD
  0 siblings, 0 replies; 40+ messages in thread
From: Albert ARIBAUD @ 2011-02-17 20:49 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

The following changes since commit efb063390d2d1e712c2c8110911616244d562c4b:

   add checking the CONFIG_ENV_IS_IN_SPI_FLASH in Enbedded env 
(2011-02-15 22:09:50 +0100)

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

Alexander Stein (1):
       arm relocation: Fix calculation of board_init_r

Fabio Estevam (3):
       mx31pdk: Use the new relocation scheme
       mx31pdk: Make the full boot log visible
       arm1136: Fix NAND boot

Lei Wen (5):
       mv: seperate kirkwood and armada from common setting
       ARM: Add Support for Marvell Pantheon Familiy SoCs
       serial: add pantheon soc support
       mvmfp: add MFP configuration support for PANTHEON
       Pantheon: Add Board Support for Marvell dkb board

Lo?c Minier (1):
       EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX

Po-Yu Chuang (1):
       arm: get_sp() should always be compiled

Tom Warren (4):
       arm: Tegra2: Add basic NVIDIA Tegra2 SoC support
       serial: Add Tegra2 serial port support
       arm: Tegra2: Add support for NVIDIA Harmony board
       arm: Tegra2: Add support for NVIDIA Seaboard board

Wolfgang Denk (1):
       ARM: fix write*() I/O accessors

  MAINTAINERS                                   |    9 +
  README                                        |    5 +
  arch/arm/cpu/arm1136/start.S                  |   16 +--
  arch/arm/cpu/arm926ejs/pantheon/Makefile      |   46 ++++++
  arch/arm/cpu/arm926ejs/pantheon/cpu.c         |   78 +++++++++
  arch/arm/cpu/arm926ejs/pantheon/dram.c        |  132 +++++++++++++++
  arch/arm/cpu/arm926ejs/pantheon/timer.c       |  214 
+++++++++++++++++++++++++
  arch/arm/cpu/arm926ejs/start.S                |    2 +-
  arch/arm/cpu/armv7/tegra2/Makefile            |   48 ++++++
  arch/arm/cpu/armv7/tegra2/board.c             |   88 ++++++++++
  arch/arm/cpu/armv7/tegra2/config.mk           |   28 ++++
  arch/arm/cpu/armv7/tegra2/lowlevel_init.S     |   65 ++++++++
  arch/arm/cpu/armv7/tegra2/sys_info.c          |   35 ++++
  arch/arm/cpu/armv7/tegra2/timer.c             |  122 ++++++++++++++
  arch/arm/include/asm/arch-armada100/config.h  |   44 +++++
  arch/arm/include/asm/arch-kirkwood/config.h   |  145 +++++++++++++++++
  arch/arm/include/asm/arch-pantheon/config.h   |   38 +++++
  arch/arm/include/asm/arch-pantheon/cpu.h      |   79 +++++++++
  arch/arm/include/asm/arch-pantheon/mfp.h      |   41 +++++
  arch/arm/include/asm/arch-pantheon/pantheon.h |   54 ++++++
  arch/arm/include/asm/arch-tegra2/clk_rst.h    |  165 +++++++++++++++++++
  arch/arm/include/asm/arch-tegra2/pinmux.h     |   55 +++++++
  arch/arm/include/asm/arch-tegra2/pmc.h        |  124 ++++++++++++++
  arch/arm/include/asm/arch-tegra2/sys_proto.h  |   35 ++++
  arch/arm/include/asm/arch-tegra2/tegra2.h     |   49 ++++++
  arch/arm/include/asm/arch-tegra2/uart.h       |   47 ++++++
  arch/arm/include/asm/io.h                     |    6 +-
  arch/arm/lib/bootm.c                          |    4 +-
  board/Marvell/dkb/Makefile                    |   51 ++++++
  board/Marvell/dkb/dkb.c                       |   54 ++++++
  board/efikamx/efikamx.c                       |    2 +-
  board/freescale/mx31pdk/mx31pdk.c             |   17 ++-
  board/nvidia/common/board.c                   |  193 
++++++++++++++++++++++
  board/nvidia/harmony/Makefile                 |   50 ++++++
  board/nvidia/seaboard/Makefile                |   50 ++++++
  boards.cfg                                    |    3 +
  common/serial.c                               |    3 +-
  drivers/gpio/mvmfp.c                          |    2 +
  drivers/serial/Makefile                       |    1 +
  drivers/serial/serial.c                       |    2 +
  drivers/serial/serial_tegra2.c                |   77 +++++++++
  drivers/serial/serial_tegra2.h                |   29 ++++
  include/configs/aspenite.h                    |    8 +
  include/configs/dkb.h                         |   65 ++++++++
  include/configs/harmony.h                     |   49 ++++++
  include/configs/mv-common.h                   |  147 +++---------------
  include/configs/mx31pdk.h                     |    7 +
  include/configs/seaboard.h                    |   43 +++++
  include/configs/tegra2-common.h               |  160 ++++++++++++++++++
  include/serial.h                              |    3 +-
  nand_spl/board/freescale/mx31pdk/u-boot.lds   |   59 ++++++-
  51 files changed, 2691 insertions(+), 158 deletions(-)
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/Makefile
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/cpu.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/dram.c
  create mode 100644 arch/arm/cpu/arm926ejs/pantheon/timer.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/Makefile
  create mode 100644 arch/arm/cpu/armv7/tegra2/board.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/config.mk
  create mode 100644 arch/arm/cpu/armv7/tegra2/lowlevel_init.S
  create mode 100644 arch/arm/cpu/armv7/tegra2/sys_info.c
  create mode 100644 arch/arm/cpu/armv7/tegra2/timer.c
  create mode 100644 arch/arm/include/asm/arch-armada100/config.h
  create mode 100644 arch/arm/include/asm/arch-kirkwood/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/config.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/cpu.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/mfp.h
  create mode 100644 arch/arm/include/asm/arch-pantheon/pantheon.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/clk_rst.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/pinmux.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/pmc.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/sys_proto.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/tegra2.h
  create mode 100644 arch/arm/include/asm/arch-tegra2/uart.h
  create mode 100644 board/Marvell/dkb/Makefile
  create mode 100644 board/Marvell/dkb/dkb.c
  create mode 100644 board/nvidia/common/board.c
  create mode 100644 board/nvidia/harmony/Makefile
  create mode 100644 board/nvidia/seaboard/Makefile
  create mode 100644 drivers/serial/serial_tegra2.c
  create mode 100644 drivers/serial/serial_tegra2.h
  create mode 100644 include/configs/dkb.h
  create mode 100644 include/configs/harmony.h
  create mode 100644 include/configs/seaboard.h
  create mode 100644 include/configs/tegra2-common.h

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2011-02-02  0:09 Albert ARIBAUD
@ 2011-02-02 20:57 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2011-02-02 20:57 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

In message <4D48A0A0.8040904@free.fr> you wrote:
> Hi Wolfgang,
> 
> Please pull from u-boot-arm/master to go into rc1 of upcoming release.
> 
> The following changes since commit 6f918bd46482f889f4d94623b09daf659a1974bd:
> 
>    Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-31 
> 23:20:32 +0100)
> 
> are available in the git repository at:
> 
>    git://www.denx.de/git/u-boot-arm.git master
> 
> Alexander Holler (1):
>        ARM: Avoid compiler optimization for readb, writeb and friends.
> 
> Anatolij Gustschin (2):
>        SPI: mxc_spi: fix swapping bug and add missing swapping in 
> unaligned rx case
>        SPI: mxc_spi: add SPI clock calculation and setup to the driver
> 
> Heiko Schocher (2):
>        arm1136: timer: Replace bss variable by gd
>        arm926ejs: timer: Replace bss variable by gdr
> 
> Jens Scharsig (1):
>        remove (double) LED initialization in arm920t start.s
> 
> Liu Hui-R64343 (10):
>        MX51EVK: UART does not print out the early information
>        MX5: Add initial support for MX53 processor
>        fec_mxc: add support for MX53 processor
>        serial_mxc: add support for MX53 processor
>        mxc_gpio: add support for MX53 processor
>        mxc_i2c: add support for MX53 processor
>        fsl_pmic: add I2C interface support
>        MX5:MX53: add initial support for MX53EVK board
>        imximage: Add MX53 boot image support
>        ARM: */start.S: code cleanup
> 
> Marek Vasut (4):
>        BLOCK: Add freescale IMX51 PATA driver
>        MC13892: Add SWx buck switchers definitions
>        MX51EVK: Use SWx macros in PMIC init
>        iMX5: EfikaMX: Preliminary board support
> 
> Mike Rapoport (1):
>        OMAP3: add CM-T35 board
> 
> Minkyu Kang (4):
>        armv7: s5pc1xx: don't use function pointer for clock functions
>        S5P: serial: Use the inline function instead of static value
>        armv7: add support for S5PC210 SoC
>        armv7: add support for s5pc210 universal board
> 
> Po-Yu Chuang (1):
>        arm: a320evb: fixes for relocation support
> 
> Sandeep Paulraj (12):
>        Davinci MMCSD Support
>        DaVinci DM355: Adding MMC/SD support for DM355 EVM
>        DaVinci DM365: Adding MMC/SD support for DM365 EVM
>        DM365: Fix Build Error
>        DaVinci EMAC: Fix davinci_eth_gigabit_enable
>        DaVinci EMAC: Add name to Ethernet device
>        DaVinci DM6467: Added ET1011C (LSI) PHY support
>        ARM: Update mach types
>        DaVinci DM6467: Enhance board Support
>        DaVinci DM6467: Fix Build Error
>        DaVinci Sonata: Fix Build Error
>        DaVinci: Remove incorrect CONFIG option
> 
> Stefano Babic (13):
>        mxc_nand: add support for i.MX35 processor
>        Add support for MX35 processor
>        serial_mxc: add support for Freescale's i.MX35 processor
>        mxc_i2c: Add support for the i.MX35 processor
>        I2C: mxc_i2c: get rid of __REG access
>        I2C: mxc_i2c: address failure with mx35 processor
>        Add basic support for Freescale's mc9sdz60
>        SPI: mxc_spi: add support for i.MX35 processor
>        SPI: mxc_spi: replace fixed offsets with structures
>        Add support for Freescale's mx35pdk board.
>        MX5: Reuse the gd->tbl value for timestamp and add gd->lastinc 
> for lastinc bss
>        MXC: removed warnings from IMX51 ATA driver
>        ARM: fix broken build of ARM
> 
>   MAINTAINERS                                        |   17 +-
>   arch/arm/config.mk                                 |    2 +-
>   arch/arm/cpu/arm1136/mx31/timer.c                  |   19 +-
>   arch/arm/cpu/arm1136/mx35/Makefile                 |   63 +
>   arch/arm/cpu/arm1136/mx35/asm-offsets.c            |   43 +
>   arch/arm/cpu/arm1136/mx35/generic.c                |  463 ++++
>   arch/arm/cpu/arm1136/mx35/iomux.c                  |  116 +
>   arch/arm/cpu/arm1136/mx35/timer.c                  |  120 +
>   arch/arm/cpu/arm1136/omap24xx/timer.c              |   19 +-
>   arch/arm/cpu/arm1136/start.S                       |    2 -
>   arch/arm/cpu/arm1176/start.S                       |    2 -
>   arch/arm/cpu/arm720t/start.S                       |    2 -
>   arch/arm/cpu/arm920t/start.S                       |    5 -
>   arch/arm/cpu/arm925t/start.S                       |    2 -
>   arch/arm/cpu/arm926ejs/davinci/Makefile            |    2 +-
>   arch/arm/cpu/arm926ejs/davinci/cpu.c               |   14 +-
>   arch/arm/cpu/arm926ejs/davinci/et1011c.c           |   55 +
>   arch/arm/cpu/arm926ejs/kirkwood/timer.c            |    6 +-
>   arch/arm/cpu/arm926ejs/mb86r0x/timer.c             |    6 +-
>   arch/arm/cpu/arm926ejs/mx25/timer.c                |    6 +-
>   arch/arm/cpu/arm926ejs/mx27/timer.c                |    6 +-
>   arch/arm/cpu/arm926ejs/omap/timer.c                |    6 +-
>   arch/arm/cpu/arm926ejs/orion5x/timer.c             |    6 +-
>   arch/arm/cpu/arm926ejs/spear/timer.c               |    6 +-
>   arch/arm/cpu/arm926ejs/start.S                     |    2 -
>   arch/arm/cpu/arm926ejs/versatile/timer.c           |    6 +-
>   arch/arm/cpu/arm946es/start.S                      |    2 -
>   arch/arm/cpu/arm_intcm/start.S                     |    2 -
>   arch/arm/cpu/armv7/mx5/iomux.c                     |   30 +-
>   arch/arm/cpu/armv7/mx5/lowlevel_init.S             |   91 +-
>   arch/arm/cpu/armv7/mx5/soc.c                       |   22 +-
>   arch/arm/cpu/armv7/mx5/timer.c                     |    6 +-
>   arch/arm/cpu/armv7/s5p-common/cpu_info.c           |    2 -
>   arch/arm/cpu/armv7/s5pc1xx/clock.c                 |   38 +-
>   .../arm/cpu/armv7/s5pc2xx/Makefile                 |   37 +-
>   arch/arm/cpu/armv7/s5pc2xx/clock.c                 |  220 ++
>   arch/arm/cpu/armv7/s5pc2xx/soc.c                   |   30 +
>   arch/arm/cpu/armv7/start.S                         |    2 -
>   arch/arm/cpu/ixp/start.S                           |    2 -
>   arch/arm/cpu/lh7a40x/start.S                       |    2 -
>   arch/arm/cpu/pxa/start.S                           |    2 -
>   arch/arm/cpu/s3c44b0/start.S                       |    2 -
>   arch/arm/cpu/sa1100/start.S                        |    2 -
>   arch/arm/include/asm/arch-davinci/emac_defs.h      |    3 +
>   arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
>   arch/arm/include/asm/arch-davinci/sdmmc_defs.h     |  175 ++
>   arch/arm/include/asm/arch-mx31/mx31-regs.h         |   11 +
>   arch/arm/include/asm/arch-mx35/clock.h             |   45 +
>   arch/arm/include/asm/arch-mx35/crm_regs.h          |  270 +++
>   arch/arm/include/asm/arch-mx35/imx-regs.h          |  303 +++
>   arch/arm/include/asm/arch-mx35/iomux.h             |  295 +++
>   arch/arm/include/asm/arch-mx35/mx35_pins.h         |  355 +++
>   arch/arm/include/asm/arch-mx35/sys_proto.h         |   31 +
>   arch/arm/include/asm/arch-mx5/asm-offsets.h        |    5 +
>   arch/arm/include/asm/arch-mx5/imx-regs.h           |   94 +-
>   arch/arm/include/asm/arch-mx5/iomux.h              |  102 -
>   arch/arm/include/asm/arch-mx5/mx5x_pins.h          |  469 ++++-
>   arch/arm/include/asm/arch-s5pc1xx/clk.h            |   10 +-
>   arch/arm/include/asm/arch-s5pc1xx/uart.h           |    5 +-
>   arch/arm/include/asm/arch-s5pc2xx/adc.h            |   42 +
>   arch/arm/include/asm/arch-s5pc2xx/clk.h            |   36 +
>   arch/arm/include/asm/arch-s5pc2xx/clock.h          |  255 +++
>   arch/arm/include/asm/arch-s5pc2xx/cpu.h            |  103 +
>   arch/arm/include/asm/arch-s5pc2xx/gpio.h           |  112 +
>   arch/arm/include/asm/arch-s5pc2xx/mmc.h            |   71 +
>   arch/arm/include/asm/arch-s5pc2xx/pwm.h            |   55 +
>   arch/arm/include/asm/arch-s5pc2xx/sys_proto.h      |   32 +
>   arch/arm/include/asm/arch-s5pc2xx/uart.h           |   58 +
>   arch/arm/include/asm/io.h                          |   32 +-
>   arch/arm/include/asm/mach-types.h                  | 2305 
> +++++++++++++++++++-
>   .../{faraday/a320evb/config.mk => cm_t35/Makefile} |   42 +-
>   board/cm_t35/cm_t35.c                              |  371 ++++
>   board/davinci/common/misc.c                        |    2 +-
>   board/davinci/dm355evm/dm355evm.c                  |   41 +
>   board/davinci/dm365evm/dm365evm.c                  |   49 +
>   board/davinci/dm6467evm/dm6467evm.c                |   26 +
>   board/efikamx/Makefile                             |   52 +
>   board/{faraday/a320evb => efikamx}/config.mk       |   24 +-
>   board/efikamx/efikamx.c                            |  689 ++++++
>   board/efikamx/imximage.cfg                         |  122 +
>   board/faraday/a320evb/a320evb.c                    |    3 +-
>   board/freescale/mx35pdk/Makefile                   |   49 +
>   board/freescale/mx35pdk/lowlevel_init.S            |  363 +++
>   board/freescale/mx35pdk/mx35pdk.c                  |  297 +++
>   board/freescale/mx35pdk/mx35pdk.h                  |  101 +
>   board/freescale/mx51evk/mx51evk.c                  |   17 +-
>   .../config.mk => freescale/mx53evk/Makefile}       |   43 +-
>   .../a320evb => freescale/mx53evk}/config.mk        |   23 +-
>   board/freescale/mx53evk/imximage.cfg               |  112 +
>   board/freescale/mx53evk/mx53evk.c                  |  397 ++++
>   board/samsung/universal_c210/Makefile              |   51 +
>   board/samsung/universal_c210/lowlevel_init.S       |  395 ++++
>   board/samsung/universal_c210/onenand.c             |   34 +
>   board/samsung/universal_c210/universal.c           |  250 +++
>   boards.cfg                                         |    5 +
>   doc/README.imximage                                |   12 +-
>   doc/README.mx35pdk                                 |  188 ++
>   doc/README.omap3                                   |   16 +-
>   drivers/block/Makefile                             |    1 +
>   drivers/block/mxc_ata.c                            |  146 ++
>   drivers/gpio/mxc_gpio.c                            |    9 +-
>   drivers/i2c/mxc_i2c.c                              |  172 ++-
>   drivers/misc/Makefile                              |    5 +-
>   drivers/misc/fsl_pmic.c                            |   45 +-
>   drivers/misc/mc9sdz60.c                            |   51 +
>   drivers/mmc/Makefile                               |    1 +
>   drivers/mmc/davinci_mmc.c                          |  404 ++++
>   drivers/mtd/nand/mxc_nand.c                        |    6 +-
>   drivers/net/davinci_emac.c                         |   15 +-
>   drivers/net/fec_mxc.c                              |    2 +-
>   drivers/net/fec_mxc.h                              |    4 +-
>   drivers/serial/serial_mxc.c                        |    9 +-
>   drivers/serial/serial_s5p.c                        |    2 +-
>   drivers/spi/mxc_spi.c                              |  200 +-
>   include/configs/a320evb.h                          |   14 +-
>   include/configs/cm_t35.h                           |  352 +++
>   include/configs/davinci_dm355evm.h                 |   22 +
>   include/configs/davinci_dm365evm.h                 |   22 +
>   include/configs/davinci_dm6467evm.h                |   30 +-
>   include/configs/davinci_sonata.h                   |    1 +
>   include/configs/efikamx.h                          |  232 ++
>   include/configs/mx35pdk.h                          |  303 +++
>   include/configs/mx51evk.h                          |    5 +-
>   include/configs/mx53evk.h                          |  193 ++
>   include/configs/s5pc210_universal.h                |  244 +++
>   include/configs/vision2.h                          |    3 +-
>   include/mc13892.h                                  |   44 +
>   include/mc9sdz60.h                                 |   84 +
>   include/mmc.h                                      |    3 +
>   include/netdev.h                                   |    1 +
>   tools/imximage.c                                   |  525 ++++--
>   tools/imximage.h                                   |  110 +-
>   132 files changed, 13054 insertions(+), 743 deletions(-)
>   create mode 100644 arch/arm/cpu/arm1136/mx35/Makefile
>   create mode 100644 arch/arm/cpu/arm1136/mx35/asm-offsets.c
>   create mode 100644 arch/arm/cpu/arm1136/mx35/generic.c
>   create mode 100644 arch/arm/cpu/arm1136/mx35/iomux.c
>   create mode 100644 arch/arm/cpu/arm1136/mx35/timer.c
>   create mode 100644 arch/arm/cpu/arm926ejs/davinci/et1011c.c
>   copy board/faraday/a320evb/config.mk => 
> arch/arm/cpu/armv7/s5pc2xx/Makefile (56%)
>   create mode 100644 arch/arm/cpu/armv7/s5pc2xx/clock.c
>   create mode 100644 arch/arm/cpu/armv7/s5pc2xx/soc.c
>   create mode 100644 arch/arm/include/asm/arch-davinci/sdmmc_defs.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/clock.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/crm_regs.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/imx-regs.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/iomux.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/mx35_pins.h
>   create mode 100644 arch/arm/include/asm/arch-mx35/sys_proto.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/adc.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clk.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clock.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/cpu.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/gpio.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/mmc.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/pwm.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sys_proto.h
>   create mode 100644 arch/arm/include/asm/arch-s5pc2xx/uart.h
>   copy board/{faraday/a320evb/config.mk => cm_t35/Makefile} (54%)
>   create mode 100644 board/cm_t35/cm_t35.c
>   create mode 100644 board/efikamx/Makefile
>   copy board/{faraday/a320evb => efikamx}/config.mk (62%)
>   create mode 100644 board/efikamx/efikamx.c
>   create mode 100644 board/efikamx/imximage.cfg
>   create mode 100644 board/freescale/mx35pdk/Makefile
>   create mode 100644 board/freescale/mx35pdk/lowlevel_init.S
>   create mode 100644 board/freescale/mx35pdk/mx35pdk.c
>   create mode 100644 board/freescale/mx35pdk/mx35pdk.h
>   copy board/{faraday/a320evb/config.mk => freescale/mx53evk/Makefile} (50%)
>   rename board/{faraday/a320evb => freescale/mx53evk}/config.mk (62%)
>   create mode 100644 board/freescale/mx53evk/imximage.cfg
>   create mode 100644 board/freescale/mx53evk/mx53evk.c
>   create mode 100644 board/samsung/universal_c210/Makefile
>   create mode 100644 board/samsung/universal_c210/lowlevel_init.S
>   create mode 100644 board/samsung/universal_c210/onenand.c
>   create mode 100644 board/samsung/universal_c210/universal.c
>   create mode 100644 doc/README.mx35pdk
>   create mode 100644 drivers/block/mxc_ata.c
>   create mode 100644 drivers/misc/mc9sdz60.c
>   create mode 100644 drivers/mmc/davinci_mmc.c
>   create mode 100644 include/configs/cm_t35.h
>   create mode 100644 include/configs/efikamx.h
>   create mode 100644 include/configs/mx35pdk.h
>   create mode 100644 include/configs/mx53evk.h
>   create mode 100644 include/configs/s5pc210_universal.h
>   create mode 100644 include/mc9sdz60.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
One of the advantages of being a captain is being able to ask for ad-
vice without necessarily having to take it.
	-- Kirk, "Dagger of the Mind", stardate 2715.2

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

* [U-Boot] Pull request: u-boot-arm
@ 2011-02-02  0:09 Albert ARIBAUD
  2011-02-02 20:57 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Albert ARIBAUD @ 2011-02-02  0:09 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

Please pull from u-boot-arm/master to go into rc1 of upcoming release.

The following changes since commit 6f918bd46482f889f4d94623b09daf659a1974bd:

   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-31 
23:20:32 +0100)

are available in the git repository at:

   git://www.denx.de/git/u-boot-arm.git master

Alexander Holler (1):
       ARM: Avoid compiler optimization for readb, writeb and friends.

Anatolij Gustschin (2):
       SPI: mxc_spi: fix swapping bug and add missing swapping in 
unaligned rx case
       SPI: mxc_spi: add SPI clock calculation and setup to the driver

Heiko Schocher (2):
       arm1136: timer: Replace bss variable by gd
       arm926ejs: timer: Replace bss variable by gdr

Jens Scharsig (1):
       remove (double) LED initialization in arm920t start.s

Liu Hui-R64343 (10):
       MX51EVK: UART does not print out the early information
       MX5: Add initial support for MX53 processor
       fec_mxc: add support for MX53 processor
       serial_mxc: add support for MX53 processor
       mxc_gpio: add support for MX53 processor
       mxc_i2c: add support for MX53 processor
       fsl_pmic: add I2C interface support
       MX5:MX53: add initial support for MX53EVK board
       imximage: Add MX53 boot image support
       ARM: */start.S: code cleanup

Marek Vasut (4):
       BLOCK: Add freescale IMX51 PATA driver
       MC13892: Add SWx buck switchers definitions
       MX51EVK: Use SWx macros in PMIC init
       iMX5: EfikaMX: Preliminary board support

Mike Rapoport (1):
       OMAP3: add CM-T35 board

Minkyu Kang (4):
       armv7: s5pc1xx: don't use function pointer for clock functions
       S5P: serial: Use the inline function instead of static value
       armv7: add support for S5PC210 SoC
       armv7: add support for s5pc210 universal board

Po-Yu Chuang (1):
       arm: a320evb: fixes for relocation support

Sandeep Paulraj (12):
       Davinci MMCSD Support
       DaVinci DM355: Adding MMC/SD support for DM355 EVM
       DaVinci DM365: Adding MMC/SD support for DM365 EVM
       DM365: Fix Build Error
       DaVinci EMAC: Fix davinci_eth_gigabit_enable
       DaVinci EMAC: Add name to Ethernet device
       DaVinci DM6467: Added ET1011C (LSI) PHY support
       ARM: Update mach types
       DaVinci DM6467: Enhance board Support
       DaVinci DM6467: Fix Build Error
       DaVinci Sonata: Fix Build Error
       DaVinci: Remove incorrect CONFIG option

Stefano Babic (13):
       mxc_nand: add support for i.MX35 processor
       Add support for MX35 processor
       serial_mxc: add support for Freescale's i.MX35 processor
       mxc_i2c: Add support for the i.MX35 processor
       I2C: mxc_i2c: get rid of __REG access
       I2C: mxc_i2c: address failure with mx35 processor
       Add basic support for Freescale's mc9sdz60
       SPI: mxc_spi: add support for i.MX35 processor
       SPI: mxc_spi: replace fixed offsets with structures
       Add support for Freescale's mx35pdk board.
       MX5: Reuse the gd->tbl value for timestamp and add gd->lastinc 
for lastinc bss
       MXC: removed warnings from IMX51 ATA driver
       ARM: fix broken build of ARM

  MAINTAINERS                                        |   17 +-
  arch/arm/config.mk                                 |    2 +-
  arch/arm/cpu/arm1136/mx31/timer.c                  |   19 +-
  arch/arm/cpu/arm1136/mx35/Makefile                 |   63 +
  arch/arm/cpu/arm1136/mx35/asm-offsets.c            |   43 +
  arch/arm/cpu/arm1136/mx35/generic.c                |  463 ++++
  arch/arm/cpu/arm1136/mx35/iomux.c                  |  116 +
  arch/arm/cpu/arm1136/mx35/timer.c                  |  120 +
  arch/arm/cpu/arm1136/omap24xx/timer.c              |   19 +-
  arch/arm/cpu/arm1136/start.S                       |    2 -
  arch/arm/cpu/arm1176/start.S                       |    2 -
  arch/arm/cpu/arm720t/start.S                       |    2 -
  arch/arm/cpu/arm920t/start.S                       |    5 -
  arch/arm/cpu/arm925t/start.S                       |    2 -
  arch/arm/cpu/arm926ejs/davinci/Makefile            |    2 +-
  arch/arm/cpu/arm926ejs/davinci/cpu.c               |   14 +-
  arch/arm/cpu/arm926ejs/davinci/et1011c.c           |   55 +
  arch/arm/cpu/arm926ejs/kirkwood/timer.c            |    6 +-
  arch/arm/cpu/arm926ejs/mb86r0x/timer.c             |    6 +-
  arch/arm/cpu/arm926ejs/mx25/timer.c                |    6 +-
  arch/arm/cpu/arm926ejs/mx27/timer.c                |    6 +-
  arch/arm/cpu/arm926ejs/omap/timer.c                |    6 +-
  arch/arm/cpu/arm926ejs/orion5x/timer.c             |    6 +-
  arch/arm/cpu/arm926ejs/spear/timer.c               |    6 +-
  arch/arm/cpu/arm926ejs/start.S                     |    2 -
  arch/arm/cpu/arm926ejs/versatile/timer.c           |    6 +-
  arch/arm/cpu/arm946es/start.S                      |    2 -
  arch/arm/cpu/arm_intcm/start.S                     |    2 -
  arch/arm/cpu/armv7/mx5/iomux.c                     |   30 +-
  arch/arm/cpu/armv7/mx5/lowlevel_init.S             |   91 +-
  arch/arm/cpu/armv7/mx5/soc.c                       |   22 +-
  arch/arm/cpu/armv7/mx5/timer.c                     |    6 +-
  arch/arm/cpu/armv7/s5p-common/cpu_info.c           |    2 -
  arch/arm/cpu/armv7/s5pc1xx/clock.c                 |   38 +-
  .../arm/cpu/armv7/s5pc2xx/Makefile                 |   37 +-
  arch/arm/cpu/armv7/s5pc2xx/clock.c                 |  220 ++
  arch/arm/cpu/armv7/s5pc2xx/soc.c                   |   30 +
  arch/arm/cpu/armv7/start.S                         |    2 -
  arch/arm/cpu/ixp/start.S                           |    2 -
  arch/arm/cpu/lh7a40x/start.S                       |    2 -
  arch/arm/cpu/pxa/start.S                           |    2 -
  arch/arm/cpu/s3c44b0/start.S                       |    2 -
  arch/arm/cpu/sa1100/start.S                        |    2 -
  arch/arm/include/asm/arch-davinci/emac_defs.h      |    3 +
  arch/arm/include/asm/arch-davinci/hardware.h       |    1 +
  arch/arm/include/asm/arch-davinci/sdmmc_defs.h     |  175 ++
  arch/arm/include/asm/arch-mx31/mx31-regs.h         |   11 +
  arch/arm/include/asm/arch-mx35/clock.h             |   45 +
  arch/arm/include/asm/arch-mx35/crm_regs.h          |  270 +++
  arch/arm/include/asm/arch-mx35/imx-regs.h          |  303 +++
  arch/arm/include/asm/arch-mx35/iomux.h             |  295 +++
  arch/arm/include/asm/arch-mx35/mx35_pins.h         |  355 +++
  arch/arm/include/asm/arch-mx35/sys_proto.h         |   31 +
  arch/arm/include/asm/arch-mx5/asm-offsets.h        |    5 +
  arch/arm/include/asm/arch-mx5/imx-regs.h           |   94 +-
  arch/arm/include/asm/arch-mx5/iomux.h              |  102 -
  arch/arm/include/asm/arch-mx5/mx5x_pins.h          |  469 ++++-
  arch/arm/include/asm/arch-s5pc1xx/clk.h            |   10 +-
  arch/arm/include/asm/arch-s5pc1xx/uart.h           |    5 +-
  arch/arm/include/asm/arch-s5pc2xx/adc.h            |   42 +
  arch/arm/include/asm/arch-s5pc2xx/clk.h            |   36 +
  arch/arm/include/asm/arch-s5pc2xx/clock.h          |  255 +++
  arch/arm/include/asm/arch-s5pc2xx/cpu.h            |  103 +
  arch/arm/include/asm/arch-s5pc2xx/gpio.h           |  112 +
  arch/arm/include/asm/arch-s5pc2xx/mmc.h            |   71 +
  arch/arm/include/asm/arch-s5pc2xx/pwm.h            |   55 +
  arch/arm/include/asm/arch-s5pc2xx/sys_proto.h      |   32 +
  arch/arm/include/asm/arch-s5pc2xx/uart.h           |   58 +
  arch/arm/include/asm/io.h                          |   32 +-
  arch/arm/include/asm/mach-types.h                  | 2305 
+++++++++++++++++++-
  .../{faraday/a320evb/config.mk => cm_t35/Makefile} |   42 +-
  board/cm_t35/cm_t35.c                              |  371 ++++
  board/davinci/common/misc.c                        |    2 +-
  board/davinci/dm355evm/dm355evm.c                  |   41 +
  board/davinci/dm365evm/dm365evm.c                  |   49 +
  board/davinci/dm6467evm/dm6467evm.c                |   26 +
  board/efikamx/Makefile                             |   52 +
  board/{faraday/a320evb => efikamx}/config.mk       |   24 +-
  board/efikamx/efikamx.c                            |  689 ++++++
  board/efikamx/imximage.cfg                         |  122 +
  board/faraday/a320evb/a320evb.c                    |    3 +-
  board/freescale/mx35pdk/Makefile                   |   49 +
  board/freescale/mx35pdk/lowlevel_init.S            |  363 +++
  board/freescale/mx35pdk/mx35pdk.c                  |  297 +++
  board/freescale/mx35pdk/mx35pdk.h                  |  101 +
  board/freescale/mx51evk/mx51evk.c                  |   17 +-
  .../config.mk => freescale/mx53evk/Makefile}       |   43 +-
  .../a320evb => freescale/mx53evk}/config.mk        |   23 +-
  board/freescale/mx53evk/imximage.cfg               |  112 +
  board/freescale/mx53evk/mx53evk.c                  |  397 ++++
  board/samsung/universal_c210/Makefile              |   51 +
  board/samsung/universal_c210/lowlevel_init.S       |  395 ++++
  board/samsung/universal_c210/onenand.c             |   34 +
  board/samsung/universal_c210/universal.c           |  250 +++
  boards.cfg                                         |    5 +
  doc/README.imximage                                |   12 +-
  doc/README.mx35pdk                                 |  188 ++
  doc/README.omap3                                   |   16 +-
  drivers/block/Makefile                             |    1 +
  drivers/block/mxc_ata.c                            |  146 ++
  drivers/gpio/mxc_gpio.c                            |    9 +-
  drivers/i2c/mxc_i2c.c                              |  172 ++-
  drivers/misc/Makefile                              |    5 +-
  drivers/misc/fsl_pmic.c                            |   45 +-
  drivers/misc/mc9sdz60.c                            |   51 +
  drivers/mmc/Makefile                               |    1 +
  drivers/mmc/davinci_mmc.c                          |  404 ++++
  drivers/mtd/nand/mxc_nand.c                        |    6 +-
  drivers/net/davinci_emac.c                         |   15 +-
  drivers/net/fec_mxc.c                              |    2 +-
  drivers/net/fec_mxc.h                              |    4 +-
  drivers/serial/serial_mxc.c                        |    9 +-
  drivers/serial/serial_s5p.c                        |    2 +-
  drivers/spi/mxc_spi.c                              |  200 +-
  include/configs/a320evb.h                          |   14 +-
  include/configs/cm_t35.h                           |  352 +++
  include/configs/davinci_dm355evm.h                 |   22 +
  include/configs/davinci_dm365evm.h                 |   22 +
  include/configs/davinci_dm6467evm.h                |   30 +-
  include/configs/davinci_sonata.h                   |    1 +
  include/configs/efikamx.h                          |  232 ++
  include/configs/mx35pdk.h                          |  303 +++
  include/configs/mx51evk.h                          |    5 +-
  include/configs/mx53evk.h                          |  193 ++
  include/configs/s5pc210_universal.h                |  244 +++
  include/configs/vision2.h                          |    3 +-
  include/mc13892.h                                  |   44 +
  include/mc9sdz60.h                                 |   84 +
  include/mmc.h                                      |    3 +
  include/netdev.h                                   |    1 +
  tools/imximage.c                                   |  525 ++++--
  tools/imximage.h                                   |  110 +-
  132 files changed, 13054 insertions(+), 743 deletions(-)
  create mode 100644 arch/arm/cpu/arm1136/mx35/Makefile
  create mode 100644 arch/arm/cpu/arm1136/mx35/asm-offsets.c
  create mode 100644 arch/arm/cpu/arm1136/mx35/generic.c
  create mode 100644 arch/arm/cpu/arm1136/mx35/iomux.c
  create mode 100644 arch/arm/cpu/arm1136/mx35/timer.c
  create mode 100644 arch/arm/cpu/arm926ejs/davinci/et1011c.c
  copy board/faraday/a320evb/config.mk => 
arch/arm/cpu/armv7/s5pc2xx/Makefile (56%)
  create mode 100644 arch/arm/cpu/armv7/s5pc2xx/clock.c
  create mode 100644 arch/arm/cpu/armv7/s5pc2xx/soc.c
  create mode 100644 arch/arm/include/asm/arch-davinci/sdmmc_defs.h
  create mode 100644 arch/arm/include/asm/arch-mx35/clock.h
  create mode 100644 arch/arm/include/asm/arch-mx35/crm_regs.h
  create mode 100644 arch/arm/include/asm/arch-mx35/imx-regs.h
  create mode 100644 arch/arm/include/asm/arch-mx35/iomux.h
  create mode 100644 arch/arm/include/asm/arch-mx35/mx35_pins.h
  create mode 100644 arch/arm/include/asm/arch-mx35/sys_proto.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/adc.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clk.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clock.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/cpu.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/gpio.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/mmc.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/pwm.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sys_proto.h
  create mode 100644 arch/arm/include/asm/arch-s5pc2xx/uart.h
  copy board/{faraday/a320evb/config.mk => cm_t35/Makefile} (54%)
  create mode 100644 board/cm_t35/cm_t35.c
  create mode 100644 board/efikamx/Makefile
  copy board/{faraday/a320evb => efikamx}/config.mk (62%)
  create mode 100644 board/efikamx/efikamx.c
  create mode 100644 board/efikamx/imximage.cfg
  create mode 100644 board/freescale/mx35pdk/Makefile
  create mode 100644 board/freescale/mx35pdk/lowlevel_init.S
  create mode 100644 board/freescale/mx35pdk/mx35pdk.c
  create mode 100644 board/freescale/mx35pdk/mx35pdk.h
  copy board/{faraday/a320evb/config.mk => freescale/mx53evk/Makefile} (50%)
  rename board/{faraday/a320evb => freescale/mx53evk}/config.mk (62%)
  create mode 100644 board/freescale/mx53evk/imximage.cfg
  create mode 100644 board/freescale/mx53evk/mx53evk.c
  create mode 100644 board/samsung/universal_c210/Makefile
  create mode 100644 board/samsung/universal_c210/lowlevel_init.S
  create mode 100644 board/samsung/universal_c210/onenand.c
  create mode 100644 board/samsung/universal_c210/universal.c
  create mode 100644 doc/README.mx35pdk
  create mode 100644 drivers/block/mxc_ata.c
  create mode 100644 drivers/misc/mc9sdz60.c
  create mode 100644 drivers/mmc/davinci_mmc.c
  create mode 100644 include/configs/cm_t35.h
  create mode 100644 include/configs/efikamx.h
  create mode 100644 include/configs/mx35pdk.h
  create mode 100644 include/configs/mx53evk.h
  create mode 100644 include/configs/s5pc210_universal.h
  create mode 100644 include/mc9sdz60.h

Amicalement,
-- 
Albert.

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-17 21:34 ` Loïc Minier
@ 2010-11-17 21:54   ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-17 21:54 UTC (permalink / raw)
  To: u-boot

Dear =?iso-8859-1?Q?Lo=EFc?= Minier,

In message <20101117213409.GA16160@bee.dooz.org> you wrote:
>         Hey
> 
> On Wed, Nov 17, 2010, Wolfgang Denk wrote:
> > Sanjeev Premi (3):
> >       omap3evm: Support relocation
> >       omap3evm: Wrap function under CONFIG_USB_OMAP3
> >       omap3evm: Fix mechanism to identify board revision
> 
>  I was expecting this would fix the build of omap3_evm, but it still
>  fails for me:
>  http://hudson.dooz.org/job/u-boot_master/BOARD=3Domap3_evm/39/console
> make[1]: Entering directory `/srv/hudson.dooz.org/home/jobs/u-boot_master/w=
> orkspace/BOARD/omap3_evm/arch/arm/cpu/armv7'
> arm-linux-gnueabi-gcc   -D__ASSEMBLY__ -g  -Os   -fno-common -ffixed-r8 -ms=
> oft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=3D0x80008000 -I/srv/hudson.=
> dooz.org/home/jobs/u-boot_master/workspace/BOARD/omap3_evm/include -fno-bui=
> ltin -ffreestanding -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.4.5=
> /include -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=3Daapcs-linux -mno-thum=
> b-interwork -march=3Darmv5   \
>                 -o start.o start.S -c
> start.S: Assembler messages:
> start.S:144: Error: constant expression expected -- `ldr sp,=3D((0x4020FFFC=
> -CONFIG_SYS_GBL_DATA_SIZE))'
> make[1]: *** [start.o] Error 1
> make[1]: Leaving directory `/srv/hudson.dooz.org/home/jobs/u-boot_master/wo=
> rkspace/BOARD/omap3_evm/arch/arm/cpu/armv7'

CONFIG_SYS_GBL_DATA_SIZE does not exist any more; it now gets
auto-generated.  Seems there are a few boards out there that escaped
the change:

	-> find * -type f | xargs egrep -l CONFIG_SYS_GBL_DATA_SIZE
	include/configs/io.h
	include/configs/devkit8000.h
	include/configs/omap3_evm.h
	include/configs/iocon.h

Patches welcome.

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
"To take a significant step forward, you must make a series of finite
improvements." - Donald J. Atwood, General Motors

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-17 19:50 Wolfgang Denk
  2010-11-17 19:55 ` Wolfgang Denk
@ 2010-11-17 21:34 ` Loïc Minier
  2010-11-17 21:54   ` Wolfgang Denk
  1 sibling, 1 reply; 40+ messages in thread
From: Loïc Minier @ 2010-11-17 21:34 UTC (permalink / raw)
  To: u-boot

        Hey

On Wed, Nov 17, 2010, Wolfgang Denk wrote:
> Sanjeev Premi (3):
>       omap3evm: Support relocation
>       omap3evm: Wrap function under CONFIG_USB_OMAP3
>       omap3evm: Fix mechanism to identify board revision

 I was expecting this would fix the build of omap3_evm, but it still
 fails for me:
 http://hudson.dooz.org/job/u-boot_master/BOARD=omap3_evm/39/console
make[1]: Entering directory `/srv/hudson.dooz.org/home/jobs/u-boot_master/workspace/BOARD/omap3_evm/arch/arm/cpu/armv7'
arm-linux-gnueabi-gcc   -D__ASSEMBLY__ -g  -Os   -fno-common -ffixed-r8 -msoft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x80008000 -I/srv/hudson.dooz.org/home/jobs/u-boot_master/workspace/BOARD/omap3_evm/include -fno-builtin -ffreestanding -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.4.5/include -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5   \
                -o start.o start.S -c
start.S: Assembler messages:
start.S:144: Error: constant expression expected -- `ldr sp,=((0x4020FFFC-CONFIG_SYS_GBL_DATA_SIZE))'
make[1]: *** [start.o] Error 1
make[1]: Leaving directory `/srv/hudson.dooz.org/home/jobs/u-boot_master/workspace/BOARD/omap3_evm/arch/arm/cpu/armv7'

   Thanks,
-- 
Lo?c Minier

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

* [U-Boot] Pull request: u-boot-arm
  2010-11-17 19:50 Wolfgang Denk
@ 2010-11-17 19:55 ` Wolfgang Denk
  2010-11-17 21:34 ` Loïc Minier
  1 sibling, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-17 19:55 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang Denk,

In message <20101117195029.907FB14E646@gemini.denx.de> you wrote:
> The following changes since commit d963e84c92a63b4e6c4f2f80482a5ecbe9b24fe0:
> 
>   Merge branch 'master' of /home/wd/git/u-boot/master (2010-11-12 22:24:06 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-arm.git master
> 
> Alagu Sankar (1):
>       mmc: Add multi-block read support to the generic mmc driver
> 
> Albert Aribaud (2):
>       ARM: fix linker file for newer ld support
>       tx25: fix linker file for newer ld support
> 
> Enric Balletbo i Serra (2):
>       ARMV7: OMAP3: Use generic mmc driver on IGEP v2
>       ARMV7: OMAP3: Use generic mmc driver on OMAP3 IGEP module
> 
> Heiko Schocher (1):
>       armv7, beagle: Second SDRAM bank don;t work
> 
> Koen Kooi (1):
>       ARMV7: OMAP3: Add expansion board detection for Beagle
> 
> Reinhard Meyer (2):
>       AT91: add 2nd SPI to 9260/9XE/9G20
>       AT91: add header file for the Shutdown Controller
> 
> Sanjeev Premi (3):
>       omap3evm: Support relocation
>       omap3evm: Wrap function under CONFIG_USB_OMAP3
>       omap3evm: Fix mechanism to identify board revision
> 
> Steve Sakoman (5):
>       ARMV7: OMAP3: IGEP: Rename TEXT_BASE
>       ARMV7: Fix build for non-OMAP3 boards
>       ARMV7: OMAP3: Add expansion board detection for Overo
>       ARMV7: OMAP: Fix build after introduction of GENERATED_GBL_DATA_SIZE
>       mmc: Clean up generic mmc driver multi-block write functions
> 
> Wolfgang Denk (2):
>       Merge branch 'at91' of git://git.denx.de/u-boot-atmel
>       Merge branch 'master' of git://git.denx.de/u-boot-ti
> 
>  arch/arm/cpu/arm1136/start.S                 |   16 ---
>  arch/arm/cpu/arm1136/u-boot.lds              |   38 ++++---
>  arch/arm/cpu/arm1176/u-boot.lds              |   37 +++----
>  arch/arm/cpu/arm926ejs/u-boot.lds            |   30 +++--
>  arch/arm/cpu/armv7/omap3/sdrc.c              |    7 ++
>  arch/arm/cpu/armv7/start.S                   |   24 ----
>  arch/arm/cpu/armv7/u-boot.lds                |   46 +++++----
>  arch/arm/cpu/pxa/u-boot.lds                  |   35 ++++--
>  arch/arm/include/asm/arch-at91/at91_shdwn.h  |   38 +++++++
>  arch/arm/include/asm/arch-at91/at91sam9260.h |    1 +
>  arch/arm/include/asm/arch-at91/hardware.h    |    1 +
>  arch/arm/include/asm/arch-at91/memory-map.h  |    1 +
>  arch/arm/lib/cache.c                         |    2 +-
>  board/isee/igep0020/config.mk                |    2 +-
>  board/isee/igep0020/igep0020.c               |    9 ++
>  board/isee/igep0030/config.mk                |    3 +-
>  board/isee/igep0030/igep0030.c               |    9 ++
>  board/overo/overo.c                          |  115 ++++++++++++++++++++
>  board/overo/overo.h                          |    4 +
>  board/ti/beagle/beagle.c                     |   95 ++++++++++++++++
>  board/ti/beagle/beagle.h                     |   46 ++++++++-
>  board/ti/evm/config.mk                       |    2 +-
>  board/ti/evm/evm.c                           |   24 ++++-
>  board/ti/evm/evm.h                           |    2 +
>  drivers/mmc/mmc.c                            |  148 +++++++++----------------
>  include/configs/igep0020.h                   |    9 ++-
>  include/configs/igep0030.h                   |    9 ++-
>  include/configs/omap3_beagle.h               |    8 +-
>  include/configs/omap3_evm.h                  |   11 ++
>  include/configs/omap3_overo.h                |    7 +-
>  include/configs/omap4_panda.h                |    6 +-
>  include/configs/omap4_sdp4430.h              |    6 +-
>  nand_spl/board/karo/tx25/u-boot.lds          |   40 ++++----
>  33 files changed, 576 insertions(+), 255 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-at91/at91_shdwn.h

Applied.

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
"The whole world is about three drinks behind."     - Humphrey Bogart

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

* [U-Boot] Pull request: u-boot-arm
@ 2010-11-17 19:50 Wolfgang Denk
  2010-11-17 19:55 ` Wolfgang Denk
  2010-11-17 21:34 ` Loïc Minier
  0 siblings, 2 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-11-17 19:50 UTC (permalink / raw)
  To: u-boot

The following changes since commit d963e84c92a63b4e6c4f2f80482a5ecbe9b24fe0:

  Merge branch 'master' of /home/wd/git/u-boot/master (2010-11-12 22:24:06 +0100)

are available in the git repository at:

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

Alagu Sankar (1):
      mmc: Add multi-block read support to the generic mmc driver

Albert Aribaud (2):
      ARM: fix linker file for newer ld support
      tx25: fix linker file for newer ld support

Enric Balletbo i Serra (2):
      ARMV7: OMAP3: Use generic mmc driver on IGEP v2
      ARMV7: OMAP3: Use generic mmc driver on OMAP3 IGEP module

Heiko Schocher (1):
      armv7, beagle: Second SDRAM bank don;t work

Koen Kooi (1):
      ARMV7: OMAP3: Add expansion board detection for Beagle

Reinhard Meyer (2):
      AT91: add 2nd SPI to 9260/9XE/9G20
      AT91: add header file for the Shutdown Controller

Sanjeev Premi (3):
      omap3evm: Support relocation
      omap3evm: Wrap function under CONFIG_USB_OMAP3
      omap3evm: Fix mechanism to identify board revision

Steve Sakoman (5):
      ARMV7: OMAP3: IGEP: Rename TEXT_BASE
      ARMV7: Fix build for non-OMAP3 boards
      ARMV7: OMAP3: Add expansion board detection for Overo
      ARMV7: OMAP: Fix build after introduction of GENERATED_GBL_DATA_SIZE
      mmc: Clean up generic mmc driver multi-block write functions

Wolfgang Denk (2):
      Merge branch 'at91' of git://git.denx.de/u-boot-atmel
      Merge branch 'master' of git://git.denx.de/u-boot-ti

 arch/arm/cpu/arm1136/start.S                 |   16 ---
 arch/arm/cpu/arm1136/u-boot.lds              |   38 ++++---
 arch/arm/cpu/arm1176/u-boot.lds              |   37 +++----
 arch/arm/cpu/arm926ejs/u-boot.lds            |   30 +++--
 arch/arm/cpu/armv7/omap3/sdrc.c              |    7 ++
 arch/arm/cpu/armv7/start.S                   |   24 ----
 arch/arm/cpu/armv7/u-boot.lds                |   46 +++++----
 arch/arm/cpu/pxa/u-boot.lds                  |   35 ++++--
 arch/arm/include/asm/arch-at91/at91_shdwn.h  |   38 +++++++
 arch/arm/include/asm/arch-at91/at91sam9260.h |    1 +
 arch/arm/include/asm/arch-at91/hardware.h    |    1 +
 arch/arm/include/asm/arch-at91/memory-map.h  |    1 +
 arch/arm/lib/cache.c                         |    2 +-
 board/isee/igep0020/config.mk                |    2 +-
 board/isee/igep0020/igep0020.c               |    9 ++
 board/isee/igep0030/config.mk                |    3 +-
 board/isee/igep0030/igep0030.c               |    9 ++
 board/overo/overo.c                          |  115 ++++++++++++++++++++
 board/overo/overo.h                          |    4 +
 board/ti/beagle/beagle.c                     |   95 ++++++++++++++++
 board/ti/beagle/beagle.h                     |   46 ++++++++-
 board/ti/evm/config.mk                       |    2 +-
 board/ti/evm/evm.c                           |   24 ++++-
 board/ti/evm/evm.h                           |    2 +
 drivers/mmc/mmc.c                            |  148 +++++++++----------------
 include/configs/igep0020.h                   |    9 ++-
 include/configs/igep0030.h                   |    9 ++-
 include/configs/omap3_beagle.h               |    8 +-
 include/configs/omap3_evm.h                  |   11 ++
 include/configs/omap3_overo.h                |    7 +-
 include/configs/omap4_panda.h                |    6 +-
 include/configs/omap4_sdp4430.h              |    6 +-
 nand_spl/board/karo/tx25/u-boot.lds          |   40 ++++----
 33 files changed, 576 insertions(+), 255 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-at91/at91_shdwn.h

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
######## This message was made from 100% recycled electrons. ########

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

* [U-Boot] Pull request: u-boot-arm
  2010-10-19 22:08 Wolfgang Denk
@ 2010-10-19 22:14 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-19 22:14 UTC (permalink / raw)
  To: u-boot

In message <20101019220814.50EA1136320@gemini.denx.de> I wrote:
> The following changes since commit 1ba91ba23396005ef7b42381cc21f0baf78d0d60:
>
>   dlmalloc.c: Fix gcc alias warning (2010-10-18 22:44:31 +0200)
>
> are available in the git repository at:
>   git://git.denx.de/u-boot-arm.git master
>
> Albert Aribaud (2):
>       arm: implement ELF relocations
>       edminiv2: add support for ELF relocations
>
> Andreas Bie?mann (3):
>       at91rm9200ek: convert to at91
>       at91rm9200: enable USB support
>       at91rm9200ek: enbable USB support
>
> Eric Cooper (1):
>       Makefile: rename TEXT_BASE to CONFIG_SYS_TEXT_BASE
>
> Heiko Schocher (4):
>       arm926ejs, magnesium: add support for ELF relocations
>       arm926ejs, tx25: add support for ELF relocations
>       armv7, beagle: add support for ELF relocations
>       arm1136, qong: add support for ELF relocations
>
> Jason Liu (2):
>       MX5: rename mx51 to mx5
>       MX5: Remove dead code with ENABLE_IMPRECISE_ABORT
>
> Jens Scharsig (1):
>       update board EB+CPUx9K2
>
> John Rigby (7):
>       common/image.c fix length calculation in boot_relocate_fdt
>       common/image.c remove extra calls to be32_to_cpu in boot_get_fdt
>       FDT: Add fixup support for multiple banks of memory
>       FDT: only call boot_get_fdt from generic code
>       boot: change some arch ifdefs to feature ifdefs
>       ARM: add flat device tree support
>       ARM: enable device tree for beagle
>
> Magnus Lilja (1):
>       i.MX31: Fix Litekit board to use new ARM relocation support.
>
> Marek Vasut (19):
>       PXA: pxafb: Fix indent problems
>       PXA: pxa-regs.h cleanup
>       PXA: pxafb: Add ACX517AKN support
>       PXA: pxafb: Add support for Sharp LQ038J7DH53
>       PXA: pxafb: Marvell Littleton LCD definition
>       common: Enable serial for PXA250
>       PXA: Palm Tungsten|C Support
>       PXA: Add initial Palm LifeDrive support
>       PXA: Voipac270 improvements
>       PXA: Balloon3 board support
>       PXA: Add missing MAINTAINERS entries
>       PXA: Add necessary information for RELOC
>       PXA: Fix reloc, Push lowlevel init into C code
>       PXA: Fix vpac270 for Reloc
>       PXA: Fix ZipitZ2 for Reloc
>       PXA: Fix Balloon3 for Reloc
>       PXA: Fix vpac270 OneNAND booter
>       Build: PXA: Fix Vpac270 build variants
>       Build: PXA: Fix TrizepsIV build variants
>
> Mikhail Kshevetskiy (4):
>       PXA: remove unused u-boot.lds from board/vpac270
>       PXA: cleanup vpac270 config and set CONFIG_SYS_HZ to 1000
>       PXA: fix environment sector size, kernel and environment location for>  vpac270
>       PXA: fix MDREFR[APD] bit setting
>
> Reinhard Meyer (1):
>       AT91 clock/timer: move static data to global_data struct
>
> Stefano Babic (1):
>       MX31: add delay between USB port setup and reset
>
> Wolfgang Denk (4):
>       QONG: fix and update board config file
>       Merge branch 'master' of git://git.denx.de/u-boot-imx
>       Merge branch 'elf_reloc'
>       Merge branch 'at91' of git://git.denx.de/u-boot-atmel
>
>  MAINTAINERS                                        |   13 +
>  MAKEALL                                            |    7 +-
>  Makefile                                           |   19 +-
>  README                                             |   13 +
>  arch/arm/config.mk                                 |   12 +-
>  arch/arm/cpu/arm1136/start.S                       |  171 +-
>  arch/arm/cpu/arm1136/u-boot.lds                    |   15 +-
>  arch/arm/cpu/arm926ejs/at91/clock.c                |   55 +-
>  arch/arm/cpu/arm926ejs/at91/timer.c                |   85 +-
>  arch/arm/cpu/arm926ejs/start.S                     |  162 +-
>  arch/arm/cpu/arm926ejs/u-boot.lds                  |   26 +-
>  arch/arm/cpu/armv7/{mx51 => mx5}/Makefile          |    0
>  arch/arm/cpu/armv7/{mx51 => mx5}/clock.c           |   42 +-
>  arch/arm/cpu/armv7/{mx51 => mx5}/iomux.c           |    2 +-
>  arch/arm/cpu/armv7/{mx51 => mx5}/lowlevel_init.S   |   14 -
>  arch/arm/cpu/armv7/{mx51 => mx5}/soc.c             |   28 +-
>  arch/arm/cpu/armv7/{mx51 => mx5}/speed.c           |    0
>  arch/arm/cpu/armv7/{mx51 => mx5}/timer.c           |    8 +-
>  arch/arm/cpu/armv7/{mx51 => mx5}/u-boot.lds        |    0
>  arch/arm/cpu/armv7/start.S                         |  131 +-
>  arch/arm/cpu/armv7/u-boot.lds                      |    7 +
>  arch/arm/cpu/pxa/cpu.c                             |  255 ++-
>  arch/arm/cpu/pxa/i2c.c                             |   69 +-
>  arch/arm/cpu/pxa/pxafb.c                           |  365 ++-
>  arch/arm/cpu/pxa/start.S                           |  344 +--
>  arch/arm/cpu/pxa/timer.c                           |    7 +-
>  arch/arm/cpu/pxa/usb.c                             |   61 +-
>  arch/arm/include/asm/arch-at91/hardware.h          |    1 +
>  .../asm/{arch-mx51 => arch-mx5}/asm-offsets.h      |    0
>  .../include/asm/{arch-mx51 => arch-mx5}/clock.h    |    0
>  .../include/asm/{arch-mx51 => arch-mx5}/crm_regs.h |    0
>  .../include/asm/{arch-mx51 => arch-mx5}/imx-regs.h |    0
>  .../include/asm/{arch-mx51 => arch-mx5}/iomux.h    |    8 +-
>  .../mx51_pins.h => arch-mx5/mx5x_pins.h}           |    6 +-
>  .../asm/{arch-mx51 => arch-mx5}/sys_proto.h        |    0
>  arch/arm/include/asm/arch-pxa/hardware.h           |   61 +-
>  arch/arm/include/asm/arch-pxa/macro.h              |   20 +-
>  arch/arm/include/asm/arch-pxa/pxa-regs.h           | 2688 +++++++++++-----> ----
>  arch/arm/include/asm/config.h                      |    5 +-
>  arch/arm/include/asm/global_data.h                 |   14 +
>  arch/arm/include/asm/u-boot-arm.h                  |   14 +-
>  arch/arm/lib/board.c                               |    8 +-
>  arch/arm/lib/bootm.c                               |  137 +-
>  arch/arm/lib/cache.c                               |    2 +-
>  arch/m68k/include/asm/config.h                     |    3 +
>  arch/microblaze/lib/bootm.c                        |   14 +-
>  arch/nios2/lib/bootm.c                             |    8 +-
>  arch/powerpc/include/asm/config.h                  |    3 +
>  arch/sparc/include/asm/config.h                    |    1 +
>  board/BuS/eb_cpux9k2/config.mk                     |    1 -
>  board/BuS/eb_cpux9k2/cpux9k2.c                     |    7 +-
>  board/LaCie/edminiv2/config.mk                     |    3 +-
>  board/atmel/at91rm9200ek/Makefile                  |    5 -
>  board/atmel/at91rm9200ek/at91rm9200ek.c            |   60 +-
>  board/atmel/at91rm9200ek/config.mk                 |    3 +-
>  board/atmel/at91rm9200ek/led.c                     |   58 +-
>  board/atmel/at91rm9200ek/mux.c                     |   38 -
>  .../arm/cpu/armv7/mx51 => board/balloon3}/Makefile |   27 +-
>  board/balloon3/balloon3.c                          |  238 ++
>  board/colibri_pxa270/colibri_pxa270.c              |   33 +-
>  board/cradle/cradle.c                              |    5 +-
>  board/cradle/lowlevel_init.S                       |    4 +-
>  board/csb226/csb226.c                              |   13 +-
>  board/delta/delta.c                                |   37 +-
>  board/delta/nand.c                                 |  110 +-
>  board/freescale/mx51evk/mx51evk.c                  |    2 +-
>  board/innokom/innokom.c                            |   14 +-
>  board/karo/tx25/config.mk                          |    2 +-
>  board/logicpd/imx27lite/config.mk                  |    4 +
>  board/logicpd/imx31_litekit/config.mk              |    2 +-
>  board/logicpd/imx31_litekit/imx31_litekit.c        |   10 +-
>  {arch/arm/cpu/armv7/mx51 => board/palmld}/Makefile |   27 +-
>  board/palmld/config.mk                             |    1 +
>  board/{zipitz2 => palmld}/lowlevel_init.S          |    9 +-
>  board/palmld/palmld.c                              |   69 +
>  board/{vpac270 => palmld}/u-boot.lds               |    7 +-
>  {arch/arm/cpu/armv7/mx51 => board/palmtc}/Makefile |   27 +-
>  board/palmtc/config.mk                             |    1 +
>  board/{vpac270 => palmtc}/lowlevel_init.S          |    3 +-
>  .../at91rm9200ek/partition.c => palmtc/palmtc.c}   |   61 +-
>  .../at91rm9200ek/misc.c => palmtc/u-boot.lds}      |   50 +-
>  board/pxa255_idp/pxa_idp.c                         |   27 +-
>  board/trizepsiv/conxs.c                            |   35 +-
>  board/ttcontrol/vision2/vision2.c                  |    2 +-
>  board/vpac270/Makefile                             |   17 +-
>  board/vpac270/config.mk                            |    1 -
>  board/vpac270/vpac270.c                            |   92 +-
>  board/wepep250/wepep250.c                          |   11 +-
>  board/zipitz2/Makefile                             |   10 +-
>  board/zipitz2/config.mk                            |    1 -
>  board/zipitz2/zipitz2.c                            |   57 +-
>  board/zylonite/nand.c                              |  110 +-
>  boards.cfg                                         |   14 +-
>  common/cmd_bootm.c                                 |    6 +-
>  common/fdt_support.c                               |   86 +-
>  common/image.c                                     |   16 +-
>  common/serial.c                                    |    2 +-
>  doc/README.arm-relocation                          |  222 +--
>  drivers/mmc/pxa_mmc.c                              |   98 +-
>  drivers/serial/serial_pxa.c                        |   94 +-
>  drivers/usb/host/ehci-mxc.c                        |    2 +
>  include/configs/at91rm9200ek.h                     |  286 +--
>  include/configs/balloon3.h                         |  274 ++
>  include/configs/cerf250.h                          |    3 +
>  include/configs/colibri_pxa270.h                   |    3 +
>  include/configs/cradle.h                           |    5 +-
>  include/configs/csb226.h                           |    3 +
>  include/configs/delta.h                            |    4 +
>  include/configs/eb_cpux9k2.h                       |   23 +-
>  include/configs/edminiv2.h                         |    5 +
>  include/configs/imx31_litekit.h                    |    7 +
>  include/configs/innokom.h                          |    3 +
>  include/configs/lubbock.h                          |    3 +
>  include/configs/mx51evk.h                          |    4 +-
>  include/configs/omap3_beagle.h                     |    9 +
>  include/configs/palmld.h                           |  276 ++
>  include/configs/palmtc.h                           |  248 ++
>  include/configs/pleb2.h                            |    3 +
>  include/configs/pxa255_idp.h                       |    3 +
>  include/configs/qong.h                             |   32 +-
>  include/configs/trizepsiv.h                        |    3 +
>  include/configs/tx25.h                             |    2 +-
>  include/configs/vision2.h                          |    4 +-
>  include/configs/vpac270.h                          |  138 +-
>  include/configs/wepep250.h                         |    4 +
>  include/configs/xaeniax.h                          |    3 +
>  include/configs/xm250.h                            |    3 +
>  include/configs/xsengine.h                         |    3 +
>  include/configs/zipitz2.h                          |   10 +-
>  include/configs/zylonite.h                         |    3 +
>  include/fdt_support.h                              |    1 +
>  include/image.h                                    |    9 +-
>  nand_spl/board/karo/tx25/u-boot.lds                |   13 +
>  onenand_ipl/board/vpac270/Makefile                 |    5 +-
>  134 files changed, 4843 insertions(+), 3290 deletions(-)
>  copy arch/arm/cpu/armv7/{mx51 => mx5}/Makefile (100%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/clock.c (85%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/iomux.c (99%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/lowlevel_init.S (95%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/soc.c (81%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/speed.c (100%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/timer.c (92%)
>  rename arch/arm/cpu/armv7/{mx51 => mx5}/u-boot.lds (100%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/asm-offsets.h (100%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/clock.h (100%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/crm_regs.h (100%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/imx-regs.h (100%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/iomux.h (98%)
>  rename arch/arm/include/asm/{arch-mx51/mx51_pins.h => arch-mx5/mx5x_pins> .h} (99%)
>  rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/sys_proto.h (100%)
>  delete mode 100644 board/BuS/eb_cpux9k2/config.mk
>  delete mode 100644 board/atmel/at91rm9200ek/mux.c
>  copy {arch/arm/cpu/armv7/mx51 => board/balloon3}/Makefile (70%)
>  create mode 100644 board/balloon3/balloon3.c
>  copy {arch/arm/cpu/armv7/mx51 => board/palmld}/Makefile (70%)
>  create mode 100644 board/palmld/config.mk
>  rename board/{zipitz2 => palmld}/lowlevel_init.S (90%)
>  create mode 100644 board/palmld/palmld.c
>  rename board/{vpac270 => palmld}/u-boot.lds (90%)
>  rename {arch/arm/cpu/armv7/mx51 => board/palmtc}/Makefile (70%)
>  create mode 100644 board/palmtc/config.mk
>  rename board/{vpac270 => palmtc}/lowlevel_init.S (95%)
>  rename board/{atmel/at91rm9200ek/partition.c => palmtc/palmtc.c} (50%)
>  rename board/{atmel/at91rm9200ek/misc.c => palmtc/u-boot.lds} (57%)
>  delete mode 100644 board/vpac270/config.mk
>  delete mode 100644 board/zipitz2/config.mk
>  create mode 100644 include/configs/balloon3.h
>  create mode 100644 include/configs/palmld.h
>  create mode 100644 include/configs/palmtc.h

Applied.

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
If the facts don't fit the theory, change the facts.
                                                   -- Albert Einstein

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

* [U-Boot] Pull request: u-boot-arm
@ 2010-10-19 22:08 Wolfgang Denk
  2010-10-19 22:14 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-19 22:08 UTC (permalink / raw)
  To: u-boot

The following changes since commit 1ba91ba23396005ef7b42381cc21f0baf78d0d60:

  dlmalloc.c: Fix gcc alias warning (2010-10-18 22:44:31 +0200)

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

Albert Aribaud (2):
      arm: implement ELF relocations
      edminiv2: add support for ELF relocations

Andreas Bie?mann (3):
      at91rm9200ek: convert to at91
      at91rm9200: enable USB support
      at91rm9200ek: enbable USB support

Eric Cooper (1):
      Makefile: rename TEXT_BASE to CONFIG_SYS_TEXT_BASE

Heiko Schocher (4):
      arm926ejs, magnesium: add support for ELF relocations
      arm926ejs, tx25: add support for ELF relocations
      armv7, beagle: add support for ELF relocations
      arm1136, qong: add support for ELF relocations

Jason Liu (2):
      MX5: rename mx51 to mx5
      MX5: Remove dead code with ENABLE_IMPRECISE_ABORT

Jens Scharsig (1):
      update board EB+CPUx9K2

John Rigby (7):
      common/image.c fix length calculation in boot_relocate_fdt
      common/image.c remove extra calls to be32_to_cpu in boot_get_fdt
      FDT: Add fixup support for multiple banks of memory
      FDT: only call boot_get_fdt from generic code
      boot: change some arch ifdefs to feature ifdefs
      ARM: add flat device tree support
      ARM: enable device tree for beagle

Magnus Lilja (1):
      i.MX31: Fix Litekit board to use new ARM relocation support.

Marek Vasut (19):
      PXA: pxafb: Fix indent problems
      PXA: pxa-regs.h cleanup
      PXA: pxafb: Add ACX517AKN support
      PXA: pxafb: Add support for Sharp LQ038J7DH53
      PXA: pxafb: Marvell Littleton LCD definition
      common: Enable serial for PXA250
      PXA: Palm Tungsten|C Support
      PXA: Add initial Palm LifeDrive support
      PXA: Voipac270 improvements
      PXA: Balloon3 board support
      PXA: Add missing MAINTAINERS entries
      PXA: Add necessary information for RELOC
      PXA: Fix reloc, Push lowlevel init into C code
      PXA: Fix vpac270 for Reloc
      PXA: Fix ZipitZ2 for Reloc
      PXA: Fix Balloon3 for Reloc
      PXA: Fix vpac270 OneNAND booter
      Build: PXA: Fix Vpac270 build variants
      Build: PXA: Fix TrizepsIV build variants

Mikhail Kshevetskiy (4):
      PXA: remove unused u-boot.lds from board/vpac270
      PXA: cleanup vpac270 config and set CONFIG_SYS_HZ to 1000
      PXA: fix environment sector size, kernel and environment location for vpac270
      PXA: fix MDREFR[APD] bit setting

Reinhard Meyer (1):
      AT91 clock/timer: move static data to global_data struct

Stefano Babic (1):
      MX31: add delay between USB port setup and reset

Wolfgang Denk (4):
      QONG: fix and update board config file
      Merge branch 'master' of git://git.denx.de/u-boot-imx
      Merge branch 'elf_reloc'
      Merge branch 'at91' of git://git.denx.de/u-boot-atmel

 MAINTAINERS                                        |   13 +
 MAKEALL                                            |    7 +-
 Makefile                                           |   19 +-
 README                                             |   13 +
 arch/arm/config.mk                                 |   12 +-
 arch/arm/cpu/arm1136/start.S                       |  171 +-
 arch/arm/cpu/arm1136/u-boot.lds                    |   15 +-
 arch/arm/cpu/arm926ejs/at91/clock.c                |   55 +-
 arch/arm/cpu/arm926ejs/at91/timer.c                |   85 +-
 arch/arm/cpu/arm926ejs/start.S                     |  162 +-
 arch/arm/cpu/arm926ejs/u-boot.lds                  |   26 +-
 arch/arm/cpu/armv7/{mx51 => mx5}/Makefile          |    0
 arch/arm/cpu/armv7/{mx51 => mx5}/clock.c           |   42 +-
 arch/arm/cpu/armv7/{mx51 => mx5}/iomux.c           |    2 +-
 arch/arm/cpu/armv7/{mx51 => mx5}/lowlevel_init.S   |   14 -
 arch/arm/cpu/armv7/{mx51 => mx5}/soc.c             |   28 +-
 arch/arm/cpu/armv7/{mx51 => mx5}/speed.c           |    0
 arch/arm/cpu/armv7/{mx51 => mx5}/timer.c           |    8 +-
 arch/arm/cpu/armv7/{mx51 => mx5}/u-boot.lds        |    0
 arch/arm/cpu/armv7/start.S                         |  131 +-
 arch/arm/cpu/armv7/u-boot.lds                      |    7 +
 arch/arm/cpu/pxa/cpu.c                             |  255 ++-
 arch/arm/cpu/pxa/i2c.c                             |   69 +-
 arch/arm/cpu/pxa/pxafb.c                           |  365 ++-
 arch/arm/cpu/pxa/start.S                           |  344 +--
 arch/arm/cpu/pxa/timer.c                           |    7 +-
 arch/arm/cpu/pxa/usb.c                             |   61 +-
 arch/arm/include/asm/arch-at91/hardware.h          |    1 +
 .../asm/{arch-mx51 => arch-mx5}/asm-offsets.h      |    0
 .../include/asm/{arch-mx51 => arch-mx5}/clock.h    |    0
 .../include/asm/{arch-mx51 => arch-mx5}/crm_regs.h |    0
 .../include/asm/{arch-mx51 => arch-mx5}/imx-regs.h |    0
 .../include/asm/{arch-mx51 => arch-mx5}/iomux.h    |    8 +-
 .../mx51_pins.h => arch-mx5/mx5x_pins.h}           |    6 +-
 .../asm/{arch-mx51 => arch-mx5}/sys_proto.h        |    0
 arch/arm/include/asm/arch-pxa/hardware.h           |   61 +-
 arch/arm/include/asm/arch-pxa/macro.h              |   20 +-
 arch/arm/include/asm/arch-pxa/pxa-regs.h           | 2688 +++++++++++---------
 arch/arm/include/asm/config.h                      |    5 +-
 arch/arm/include/asm/global_data.h                 |   14 +
 arch/arm/include/asm/u-boot-arm.h                  |   14 +-
 arch/arm/lib/board.c                               |    8 +-
 arch/arm/lib/bootm.c                               |  137 +-
 arch/arm/lib/cache.c                               |    2 +-
 arch/m68k/include/asm/config.h                     |    3 +
 arch/microblaze/lib/bootm.c                        |   14 +-
 arch/nios2/lib/bootm.c                             |    8 +-
 arch/powerpc/include/asm/config.h                  |    3 +
 arch/sparc/include/asm/config.h                    |    1 +
 board/BuS/eb_cpux9k2/config.mk                     |    1 -
 board/BuS/eb_cpux9k2/cpux9k2.c                     |    7 +-
 board/LaCie/edminiv2/config.mk                     |    3 +-
 board/atmel/at91rm9200ek/Makefile                  |    5 -
 board/atmel/at91rm9200ek/at91rm9200ek.c            |   60 +-
 board/atmel/at91rm9200ek/config.mk                 |    3 +-
 board/atmel/at91rm9200ek/led.c                     |   58 +-
 board/atmel/at91rm9200ek/mux.c                     |   38 -
 .../arm/cpu/armv7/mx51 => board/balloon3}/Makefile |   27 +-
 board/balloon3/balloon3.c                          |  238 ++
 board/colibri_pxa270/colibri_pxa270.c              |   33 +-
 board/cradle/cradle.c                              |    5 +-
 board/cradle/lowlevel_init.S                       |    4 +-
 board/csb226/csb226.c                              |   13 +-
 board/delta/delta.c                                |   37 +-
 board/delta/nand.c                                 |  110 +-
 board/freescale/mx51evk/mx51evk.c                  |    2 +-
 board/innokom/innokom.c                            |   14 +-
 board/karo/tx25/config.mk                          |    2 +-
 board/logicpd/imx27lite/config.mk                  |    4 +
 board/logicpd/imx31_litekit/config.mk              |    2 +-
 board/logicpd/imx31_litekit/imx31_litekit.c        |   10 +-
 {arch/arm/cpu/armv7/mx51 => board/palmld}/Makefile |   27 +-
 board/palmld/config.mk                             |    1 +
 board/{zipitz2 => palmld}/lowlevel_init.S          |    9 +-
 board/palmld/palmld.c                              |   69 +
 board/{vpac270 => palmld}/u-boot.lds               |    7 +-
 {arch/arm/cpu/armv7/mx51 => board/palmtc}/Makefile |   27 +-
 board/palmtc/config.mk                             |    1 +
 board/{vpac270 => palmtc}/lowlevel_init.S          |    3 +-
 .../at91rm9200ek/partition.c => palmtc/palmtc.c}   |   61 +-
 .../at91rm9200ek/misc.c => palmtc/u-boot.lds}      |   50 +-
 board/pxa255_idp/pxa_idp.c                         |   27 +-
 board/trizepsiv/conxs.c                            |   35 +-
 board/ttcontrol/vision2/vision2.c                  |    2 +-
 board/vpac270/Makefile                             |   17 +-
 board/vpac270/config.mk                            |    1 -
 board/vpac270/vpac270.c                            |   92 +-
 board/wepep250/wepep250.c                          |   11 +-
 board/zipitz2/Makefile                             |   10 +-
 board/zipitz2/config.mk                            |    1 -
 board/zipitz2/zipitz2.c                            |   57 +-
 board/zylonite/nand.c                              |  110 +-
 boards.cfg                                         |   14 +-
 common/cmd_bootm.c                                 |    6 +-
 common/fdt_support.c                               |   86 +-
 common/image.c                                     |   16 +-
 common/serial.c                                    |    2 +-
 doc/README.arm-relocation                          |  222 +--
 drivers/mmc/pxa_mmc.c                              |   98 +-
 drivers/serial/serial_pxa.c                        |   94 +-
 drivers/usb/host/ehci-mxc.c                        |    2 +
 include/configs/at91rm9200ek.h                     |  286 +--
 include/configs/balloon3.h                         |  274 ++
 include/configs/cerf250.h                          |    3 +
 include/configs/colibri_pxa270.h                   |    3 +
 include/configs/cradle.h                           |    5 +-
 include/configs/csb226.h                           |    3 +
 include/configs/delta.h                            |    4 +
 include/configs/eb_cpux9k2.h                       |   23 +-
 include/configs/edminiv2.h                         |    5 +
 include/configs/imx31_litekit.h                    |    7 +
 include/configs/innokom.h                          |    3 +
 include/configs/lubbock.h                          |    3 +
 include/configs/mx51evk.h                          |    4 +-
 include/configs/omap3_beagle.h                     |    9 +
 include/configs/palmld.h                           |  276 ++
 include/configs/palmtc.h                           |  248 ++
 include/configs/pleb2.h                            |    3 +
 include/configs/pxa255_idp.h                       |    3 +
 include/configs/qong.h                             |   32 +-
 include/configs/trizepsiv.h                        |    3 +
 include/configs/tx25.h                             |    2 +-
 include/configs/vision2.h                          |    4 +-
 include/configs/vpac270.h                          |  138 +-
 include/configs/wepep250.h                         |    4 +
 include/configs/xaeniax.h                          |    3 +
 include/configs/xm250.h                            |    3 +
 include/configs/xsengine.h                         |    3 +
 include/configs/zipitz2.h                          |   10 +-
 include/configs/zylonite.h                         |    3 +
 include/fdt_support.h                              |    1 +
 include/image.h                                    |    9 +-
 nand_spl/board/karo/tx25/u-boot.lds                |   13 +
 onenand_ipl/board/vpac270/Makefile                 |    5 +-
 134 files changed, 4843 insertions(+), 3290 deletions(-)
 copy arch/arm/cpu/armv7/{mx51 => mx5}/Makefile (100%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/clock.c (85%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/iomux.c (99%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/lowlevel_init.S (95%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/soc.c (81%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/speed.c (100%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/timer.c (92%)
 rename arch/arm/cpu/armv7/{mx51 => mx5}/u-boot.lds (100%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/asm-offsets.h (100%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/clock.h (100%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/crm_regs.h (100%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/imx-regs.h (100%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/iomux.h (98%)
 rename arch/arm/include/asm/{arch-mx51/mx51_pins.h => arch-mx5/mx5x_pins.h} (99%)
 rename arch/arm/include/asm/{arch-mx51 => arch-mx5}/sys_proto.h (100%)
 delete mode 100644 board/BuS/eb_cpux9k2/config.mk
 delete mode 100644 board/atmel/at91rm9200ek/mux.c
 copy {arch/arm/cpu/armv7/mx51 => board/balloon3}/Makefile (70%)
 create mode 100644 board/balloon3/balloon3.c
 copy {arch/arm/cpu/armv7/mx51 => board/palmld}/Makefile (70%)
 create mode 100644 board/palmld/config.mk
 rename board/{zipitz2 => palmld}/lowlevel_init.S (90%)
 create mode 100644 board/palmld/palmld.c
 rename board/{vpac270 => palmld}/u-boot.lds (90%)
 rename {arch/arm/cpu/armv7/mx51 => board/palmtc}/Makefile (70%)
 create mode 100644 board/palmtc/config.mk
 rename board/{vpac270 => palmtc}/lowlevel_init.S (95%)
 rename board/{atmel/at91rm9200ek/partition.c => palmtc/palmtc.c} (50%)
 rename board/{atmel/at91rm9200ek/misc.c => palmtc/u-boot.lds} (57%)
 delete mode 100644 board/vpac270/config.mk
 delete mode 100644 board/zipitz2/config.mk
 create mode 100644 include/configs/balloon3.h
 create mode 100644 include/configs/palmld.h
 create mode 100644 include/configs/palmtc.h

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
He'd heard her use that sweet, innocent  tone  of  voice  before.  It
meant that, pretty soon, there was going to be trouble.
                                        - Terry Pratchett, _Truckers_

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

* [U-Boot] Pull request: u-boot-arm
  2010-10-17 18:24 Wolfgang Denk
@ 2010-10-17 18:36 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-17 18:36 UTC (permalink / raw)
  To: u-boot

In message <20101017182418.DE8EF13558AD@gemini.denx.de> you wrote:
> The following changes since commit e1b4c57096b87b4ada56df4154d9acee6a59141f:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2010-10-13 20:59:47 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-arm.git master
> 
> Ben Gardiner (7):
>       davinci_nand, trivial : use symbolic ECC start command
>       da850evm : enable NAND even when not in NAND boot mode
>       da850evm: setup the NAND flash timings
>       da850evm: setup NAND support under CONFIG_USE_NAND
>       da850evm: add mtdpart and ubi commands with NAND support
>       da850evm: basic MII EMAC support
>       da850evm: fix linux bootparam address
> 
> Enric Balletbo i Serra (3):
>       OMAP3: SDRC: Introduce Numonyx DDR type
>       OMAP3: Add support for the IGEP v2 board.
>       OMAP3: Add support for the OMAP3 IGEP module.
> 
> Loic Minier (1):
>       mx51evk: add u-boot.imx to ALL target
> 
> Stefano Babic (6):
>       FPGA: add support for downloading Lattice bitstream
>       MX31: Adding missing iomux pin to MX.31 registers
>       MX31: Add support to update FPGA bitstream
>       MX31: add support for setting pin pads
>       MX31: Add support for MXC EHCI controller
>       MX31: Add USB Host support to the QONG board
> 
> Steve Sakoman (8):
>       env_mmc: Fix crashing bug encountered after enabling ARM relocation
>       ARMV7: OMAP: Use default vendor/product ID for USB gadget
>       ARMV7: OMAP4: Use generic mmc driver on Beagle
>       ARMV7: OMAP4: Use generic mmc driver on Overo
>       ARMV7: OMAP3: Implement relocation for Overo
>       ARMV7: OMAP3: Enable cache support on Overo
>       ARMV7: OMAP3: Fix bug in get_sdr_cs_offset()
>       ARMV7: OMAP4: Implement relocation for Panda and OMAP4430SDP
> 
> Sukumar Ghorai (5):
>       MMC: Fix for capacity calculation on eMMC
>       ARMV7: OMAP: Add new mmc driver compatible with CONFIG_GENERIC_MMC
>       ARMV7: OMAP4: Use generic mmc driver on Panda
>       ARMV7: OMAP4: Use generic mmc driver on SDP4430
>       ARMV7: OMAP4: Enable saveenv to eMMC for SDP4430
> 
> Wolfgang Denk (1):
>       Merge branch 'master' of git://git.denx.de/u-boot-imx
> 
>  MAINTAINERS                                    |    5 +
>  MAKEALL                                        |    2 +
>  arch/arm/cpu/arm1136/mx31/generic.c            |   17 +
>  arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
>  arch/arm/cpu/armv7/omap4/board.c               |    5 +
>  arch/arm/include/asm/arch-mx31/mx31-regs.h     |  411 +++
>  arch/arm/include/asm/arch-omap3/mem.h          |   43 +
>  arch/arm/include/asm/arch-omap3/mmc_host_def.h |   10 +
>  arch/arm/include/asm/arch-omap4/mmc_host_def.h |   10 +
>  arch/arm/lib/board.c                           |   10 +-
>  board/davedenx/qong/Makefile                   |    2 +-
>  board/davedenx/qong/fpga.c                     |   95 +
>  board/davedenx/qong/qong.c                     |   44 +
>  board/davedenx/qong/qong_fpga.h                |    3 +-
>  board/davinci/da8xxevm/da850evm.c              |   89 +
>  board/freescale/mx51evk/config.mk              |    1 +
>  board/isee/igep0020/Makefile                   |   49 +
>  board/isee/igep0020/config.mk                  |   33 +
>  board/isee/igep0020/igep0020.c                 |  129 +
>  board/isee/igep0020/igep0020.h                 |  156 ++
>  board/isee/igep0030/Makefile                   |   49 +
>  board/isee/igep0030/config.mk                  |   34 +
>  board/isee/igep0030/igep0030.c                 |   71 +
>  board/isee/igep0030/igep0030.h                 |  147 ++
>  board/overo/config.mk                          |    2 +-
>  board/overo/overo.c                            |    9 +
>  board/ti/beagle/beagle.c                       |    9 +
>  board/ti/panda/config.mk                       |    4 +-
>  board/ti/panda/panda.c                         |    9 +
>  board/ti/sdp4430/config.mk                     |    3 +-
>  board/ti/sdp4430/sdp.c                         |   10 +
>  boards.cfg                                     |    2 +
>  common/env_mmc.c                               |   17 +-
>  drivers/fpga/Makefile                          |    1 +
>  drivers/fpga/fpga.c                            |   11 +
>  drivers/fpga/ivm_core.c                        | 3167 ++++++++++++++++++++++++
>  drivers/fpga/lattice.c                         |  399 +++
>  drivers/mmc/Makefile                           |    1 +
>  drivers/mmc/mmc.c                              |   11 +
>  drivers/mmc/omap_hsmmc.c                       |  415 ++++
>  drivers/mtd/nand/davinci_nand.c                |    3 +-
>  drivers/usb/host/Makefile                      |    1 +
>  drivers/usb/host/ehci-mxc.c                    |  130 +
>  drivers/video/mx3fb.c                          |   31 -
>  include/configs/da850evm.h                     |   54 +-
>  include/configs/igep0020.h                     |  228 ++
>  include/configs/igep0030.h                     |  215 ++
>  include/configs/omap3_beagle.h                 |   15 +-
>  include/configs/omap3_overo.h                  |   14 +-
>  include/configs/omap4_panda.h                  |   23 +-
>  include/configs/omap4_sdp4430.h                |   35 +-
>  include/configs/qong.h                         |   21 +-
>  include/fpga.h                                 |    1 +
>  include/lattice.h                              |  319 +++
>  54 files changed, 6472 insertions(+), 105 deletions(-)
>  create mode 100644 board/davedenx/qong/fpga.c
>  create mode 100644 board/isee/igep0020/Makefile
>  create mode 100644 board/isee/igep0020/config.mk
>  create mode 100644 board/isee/igep0020/igep0020.c
>  create mode 100644 board/isee/igep0020/igep0020.h
>  create mode 100644 board/isee/igep0030/Makefile
>  create mode 100644 board/isee/igep0030/config.mk
>  create mode 100644 board/isee/igep0030/igep0030.c
>  create mode 100644 board/isee/igep0030/igep0030.h
>  create mode 100755 drivers/fpga/ivm_core.c
>  create mode 100644 drivers/fpga/lattice.c
>  create mode 100644 drivers/mmc/omap_hsmmc.c
>  create mode 100644 drivers/usb/host/ehci-mxc.c
>  create mode 100644 include/configs/igep0020.h
>  create mode 100644 include/configs/igep0030.h
>  create mode 100755 include/lattice.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
Computers are not intelligent.  They only think they are.

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

* [U-Boot] Pull request: u-boot-arm
@ 2010-10-17 18:24 Wolfgang Denk
  2010-10-17 18:36 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-17 18:24 UTC (permalink / raw)
  To: u-boot

The following changes since commit e1b4c57096b87b4ada56df4154d9acee6a59141f:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2010-10-13 20:59:47 +0200)

are available in the git repository at:

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

Ben Gardiner (7):
      davinci_nand, trivial : use symbolic ECC start command
      da850evm : enable NAND even when not in NAND boot mode
      da850evm: setup the NAND flash timings
      da850evm: setup NAND support under CONFIG_USE_NAND
      da850evm: add mtdpart and ubi commands with NAND support
      da850evm: basic MII EMAC support
      da850evm: fix linux bootparam address

Enric Balletbo i Serra (3):
      OMAP3: SDRC: Introduce Numonyx DDR type
      OMAP3: Add support for the IGEP v2 board.
      OMAP3: Add support for the OMAP3 IGEP module.

Loic Minier (1):
      mx51evk: add u-boot.imx to ALL target

Stefano Babic (6):
      FPGA: add support for downloading Lattice bitstream
      MX31: Adding missing iomux pin to MX.31 registers
      MX31: Add support to update FPGA bitstream
      MX31: add support for setting pin pads
      MX31: Add support for MXC EHCI controller
      MX31: Add USB Host support to the QONG board

Steve Sakoman (8):
      env_mmc: Fix crashing bug encountered after enabling ARM relocation
      ARMV7: OMAP: Use default vendor/product ID for USB gadget
      ARMV7: OMAP4: Use generic mmc driver on Beagle
      ARMV7: OMAP4: Use generic mmc driver on Overo
      ARMV7: OMAP3: Implement relocation for Overo
      ARMV7: OMAP3: Enable cache support on Overo
      ARMV7: OMAP3: Fix bug in get_sdr_cs_offset()
      ARMV7: OMAP4: Implement relocation for Panda and OMAP4430SDP

Sukumar Ghorai (5):
      MMC: Fix for capacity calculation on eMMC
      ARMV7: OMAP: Add new mmc driver compatible with CONFIG_GENERIC_MMC
      ARMV7: OMAP4: Use generic mmc driver on Panda
      ARMV7: OMAP4: Use generic mmc driver on SDP4430
      ARMV7: OMAP4: Enable saveenv to eMMC for SDP4430

Wolfgang Denk (1):
      Merge branch 'master' of git://git.denx.de/u-boot-imx

 MAINTAINERS                                    |    5 +
 MAKEALL                                        |    2 +
 arch/arm/cpu/arm1136/mx31/generic.c            |   17 +
 arch/arm/cpu/armv7/omap3/sdrc.c                |    2 +-
 arch/arm/cpu/armv7/omap4/board.c               |    5 +
 arch/arm/include/asm/arch-mx31/mx31-regs.h     |  411 +++
 arch/arm/include/asm/arch-omap3/mem.h          |   43 +
 arch/arm/include/asm/arch-omap3/mmc_host_def.h |   10 +
 arch/arm/include/asm/arch-omap4/mmc_host_def.h |   10 +
 arch/arm/lib/board.c                           |   10 +-
 board/davedenx/qong/Makefile                   |    2 +-
 board/davedenx/qong/fpga.c                     |   95 +
 board/davedenx/qong/qong.c                     |   44 +
 board/davedenx/qong/qong_fpga.h                |    3 +-
 board/davinci/da8xxevm/da850evm.c              |   89 +
 board/freescale/mx51evk/config.mk              |    1 +
 board/isee/igep0020/Makefile                   |   49 +
 board/isee/igep0020/config.mk                  |   33 +
 board/isee/igep0020/igep0020.c                 |  129 +
 board/isee/igep0020/igep0020.h                 |  156 ++
 board/isee/igep0030/Makefile                   |   49 +
 board/isee/igep0030/config.mk                  |   34 +
 board/isee/igep0030/igep0030.c                 |   71 +
 board/isee/igep0030/igep0030.h                 |  147 ++
 board/overo/config.mk                          |    2 +-
 board/overo/overo.c                            |    9 +
 board/ti/beagle/beagle.c                       |    9 +
 board/ti/panda/config.mk                       |    4 +-
 board/ti/panda/panda.c                         |    9 +
 board/ti/sdp4430/config.mk                     |    3 +-
 board/ti/sdp4430/sdp.c                         |   10 +
 boards.cfg                                     |    2 +
 common/env_mmc.c                               |   17 +-
 drivers/fpga/Makefile                          |    1 +
 drivers/fpga/fpga.c                            |   11 +
 drivers/fpga/ivm_core.c                        | 3167 ++++++++++++++++++++++++
 drivers/fpga/lattice.c                         |  399 +++
 drivers/mmc/Makefile                           |    1 +
 drivers/mmc/mmc.c                              |   11 +
 drivers/mmc/omap_hsmmc.c                       |  415 ++++
 drivers/mtd/nand/davinci_nand.c                |    3 +-
 drivers/usb/host/Makefile                      |    1 +
 drivers/usb/host/ehci-mxc.c                    |  130 +
 drivers/video/mx3fb.c                          |   31 -
 include/configs/da850evm.h                     |   54 +-
 include/configs/igep0020.h                     |  228 ++
 include/configs/igep0030.h                     |  215 ++
 include/configs/omap3_beagle.h                 |   15 +-
 include/configs/omap3_overo.h                  |   14 +-
 include/configs/omap4_panda.h                  |   23 +-
 include/configs/omap4_sdp4430.h                |   35 +-
 include/configs/qong.h                         |   21 +-
 include/fpga.h                                 |    1 +
 include/lattice.h                              |  319 +++
 54 files changed, 6472 insertions(+), 105 deletions(-)
 create mode 100644 board/davedenx/qong/fpga.c
 create mode 100644 board/isee/igep0020/Makefile
 create mode 100644 board/isee/igep0020/config.mk
 create mode 100644 board/isee/igep0020/igep0020.c
 create mode 100644 board/isee/igep0020/igep0020.h
 create mode 100644 board/isee/igep0030/Makefile
 create mode 100644 board/isee/igep0030/config.mk
 create mode 100644 board/isee/igep0030/igep0030.c
 create mode 100644 board/isee/igep0030/igep0030.h
 create mode 100755 drivers/fpga/ivm_core.c
 create mode 100644 drivers/fpga/lattice.c
 create mode 100644 drivers/mmc/omap_hsmmc.c
 create mode 100644 drivers/usb/host/ehci-mxc.c
 create mode 100644 include/configs/igep0020.h
 create mode 100644 include/configs/igep0030.h
 create mode 100755 include/lattice.h

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
Documentation is like sex: when it is good, it is  very,  very  good;
and when it is bad, it is better than nothing.         - Dick Brandon

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

* [U-Boot] Pull request: u-boot-arm
  2010-10-13 18:40 Wolfgang Denk
@ 2010-10-13 19:00 ` Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-13 19:00 UTC (permalink / raw)
  To: u-boot


In message <20101013184030.B935C1365CC@gemini.denx.de> you wrote:
> The following changes since commit bfc7bea6adc46e1db2f5a5e3464d7652ed67c864:
>
>   Merge branch 'master' of git://git.denx.de/u-boot-x86 (2010-10-11 10:00:34 +0200)
>
> are available in the git repository at:
>
>   git://git.denx.de/u-boot-arm.git master
>
> Albert Aribaud (6):
>       arm: bugfix: replace ble with blo in start.S files
>       orion5x: fix relocation-incompatible code
>       mvsata_ide: adjust port init sequence
>       orion5x: optimize window size computation
>       mvsata_ide: adjust port init sequence
>       orion5x: optimize window size computation
>
> Alexander Stein (1):
>       at91: Add arch_preboot_os which disables PIT in a faster way
>
> Andreas Bie?mann (6):
>       at91_emac.c: fix 'Warning: eth device name has a space!'
>       at91_emac.c: poll for IDLE when writing PHY
>       at91_emac.h: fix typo in register definition
>       atmel_usart: change register access to C structure
>       arch/arm/include/asm/sizes.h: cleanups
>       board/armltd/integrator/split_by_variant.sh: fix 'echo -n'
>
> Ben Gardiner (1):
>       ARM: relocation: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC
>
> Heiko Schocher (1):
>       ARM: relocation: fix typo in comment
>
> Matt Waddel (2):
>       ARMV7: Versatile Express Coretile CortexA9x4 support
>       ARMV7: Fixed baudrate setting in pl01x driver
>
> Prafulla Wadaskar (8):
>       Kirkwood: print_cpuinfo fixed for valid devid revid
>       Kirkwood: dram_init is moved to dram.c
>       kirkwood: added common config file mv-common.h
>       Kirkwood: Changes specific to ARM relocation support
>       Kirkwood: print_cpuinfo fixed for valid devid revid
>       Kirkwood: dram_init is moved to dram.c
>       kirkwood: added common config file mv-common.h
>       Kirkwood: Changes specific to ARM relocation support
>
> Reinhard Meyer (1):
>       AT91: convert cpu.c to struct SoC access
>
> Stefano Babic (10):
>       Use common function to set GPIOs for MX3 and MX5
>       ARM: Use syslib functions for all CORTEXA8
>       MX51: Added pins definition to set up pads
>       MX51: add structure to access System Reset Controller
>       MXC: Add watchdog support to serial driver
>       MX51: Drop unused header file for mx51evk
>       MXC: Correct SPI_CPOL setting in SPI driver
>       MXC: Fix byte-ordering in SPI driver for i.MX31/i.MX51
>       MX51: Register definitions cannot be included in board config file
>       MX51: Support for TTECH vision2 board
>
> Wolfgang Denk (3):
>       Merge branch 'master' of git://git.denx.de/u-boot-imx
>       Merge branch 'at91' of git://git.denx.de/u-boot-atmel
>       Merge branch 'master' of git://git.denx.de/u-boot-marvell
>
>  MAINTAINERS                                        |    5 +
>  MAKEALL                                            |    1 +
>  arch/arm/cpu/arm1136/start.S                       |    8 +-
>  arch/arm/cpu/arm1176/start.S                       |   10 +-
>  arch/arm/cpu/arm720t/start.S                       |   10 +-
>  arch/arm/cpu/arm920t/start.S                       |   10 +-
>  arch/arm/cpu/arm925t/start.S                       |   10 +-
>  arch/arm/cpu/arm926ejs/at91/cpu.c                  |   48 +-
>  arch/arm/cpu/arm926ejs/kirkwood/cpu.c              |   34 +-
>  arch/arm/cpu/arm926ejs/kirkwood/dram.c             |   38 +
>  arch/arm/cpu/arm926ejs/orion5x/cpu.c               |  112 ++--
>  arch/arm/cpu/arm926ejs/orion5x/timer.c             |    6 +-
>  arch/arm/cpu/arm926ejs/start.S                     |   10 +-
>  arch/arm/cpu/arm946es/start.S                      |    8 +-
>  arch/arm/cpu/arm_intcm/start.S                     |   10 +-
>  arch/arm/cpu/armv7/Makefile                        |    3 +-
>  arch/arm/cpu/armv7/omap-common/Makefile            |    1 -
>  arch/arm/cpu/armv7/start.S                         |    8 +-
>  arch/arm/cpu/armv7/{omap-common => }/syslib.c      |    0
>  arch/arm/cpu/ixp/start.S                           |   10 +-
>  arch/arm/cpu/lh7a40x/start.S                       |   11 +-
>  arch/arm/cpu/pxa/start.S                           |    8 +-
>  arch/arm/cpu/s3c44b0/start.S                       |   12 +-
>  arch/arm/cpu/sa1100/start.S                        |   10 +-
>  arch/arm/include/asm/arch-arm925t/sizes.h          |   50 --
>  arch/arm/include/asm/arch-arm926ejs/sizes.h        |   51 --
>  arch/arm/include/asm/arch-armv7/sysctrl.h          |   70 ++
>  .../arm/include/asm/arch-armv7/systimer.h          |   54 +-
>  .../arm/include/asm/arch-armv7/wdt.h               |   57 +-
>  arch/arm/include/asm/arch-at91/at91_emac.h         |    2 +-
>  arch/arm/include/asm/arch-kirkwood/cpu.h           |    2 +
>  arch/arm/include/asm/arch-mx31/mx31-regs.h         |   14 +-
>  arch/arm/include/asm/arch-mx31/mx31.h              |   25 -
>  arch/arm/include/asm/arch-mx51/imx-regs.h          |   26 +-
>  arch/arm/include/asm/arch-mx51/mx51_pins.h         |   44 ++
>  arch/arm/include/asm/arch-mx51/sys_proto.h         |    1 +
>  arch/arm/include/asm/arch-omap/sizes.h             |   52 --
>  arch/arm/include/asm/arch-omap24xx/omap2420.h      |    2 +-
>  arch/arm/include/asm/arch-omap24xx/sizes.h         |   49 --
>  arch/arm/include/asm/arch-orion5x/cpu.h            |    1 +
>  arch/arm/include/asm/sizes.h                       |    5 +-
>  board/Marvell/guruplug/guruplug.c                  |   11 -
>  board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c    |   11 -
>  board/Marvell/openrd_base/openrd_base.c            |   11 -
>  board/Marvell/rd6281a/rd6281a.c                    |   11 -
>  board/Marvell/sheevaplug/sheevaplug.c              |   11 -
>  board/armltd/integrator/split_by_variant.sh        |  129 ++--
>  board/armltd/vexpress/Makefile                     |   49 ++
>  board/armltd/vexpress/ca9x4_ct_vxp.c               |  220 ++++++
>  board/armltd/vexpress/config.mk                    |   23 +
>  board/armltd/vexpress/u-boot.lds                   |   65 ++
>  board/davedenx/qong/qong.c                         |   29 +-
>  board/freescale/mx51evk/mx51evk.c                  |    2 -
>  board/ttcontrol/vision2/Makefile                   |   48 ++
>  board/ttcontrol/vision2/config.mk                  |   25 +
>  board/ttcontrol/vision2/imximage_hynix.cfg         |  209 ++++++
>  board/ttcontrol/vision2/vision2.c                  |  711 ++++++++++++++++> ++++
>  boards.cfg                                         |    2 +
>  drivers/block/mvsata_ide.c                         |   42 +-
>  drivers/gpio/Makefile                              |    2 +-
>  drivers/gpio/{mx31_gpio.c => mxc_gpio.c}           |   47 +-
>  drivers/misc/fsl_pmic.c                            |   10 +-
>  drivers/net/at91_emac.c                            |   22 +-
>  drivers/serial/atmel_usart.c                       |   36 +-
>  drivers/serial/atmel_usart.h                       |   56 +-
>  drivers/serial/serial_mxc.c                        |    7 +-
>  drivers/serial/serial_pl01x.c                      |   93 +--
>  drivers/spi/mxc_spi.c                              |  168 ++++--
>  include/configs/ca9x4_ct_vxp.h                     |  196 ++++++
>  include/configs/da850evm.h                         |    1 -
>  include/configs/guruplug.h                         |  103 +---
>  include/configs/h2_p2_dbg_board.h                  |    2 +-
>  include/configs/imx27lite-common.h                 |    3 +-
>  include/configs/imx31_litekit.h                    |    4 +-
>  include/configs/imx31_phycore.h                    |    2 +-
>  include/configs/keymile-common.h                   |    1 +
>  include/configs/km_arm.h                           |    2 +-
>  include/configs/mv-common.h                        |  230 +++++++
>  include/configs/mv88f6281gtw_ge.h                  |  120 +---
>  include/configs/mx31ads.h                          |    4 +-
>  include/configs/mx31pdk.h                          |    4 +-
>  include/configs/mx51evk.h                          |    2 +-
>  include/configs/omap1510.h                         |    2 +-
>  include/configs/omap3_beagle.h                     |    3 +-
>  include/configs/omap730.h                          |    2 +-
>  include/configs/openrd_base.h                      |  146 +----
>  include/configs/qong.h                             |    9 +-
>  include/configs/rd6281a.h                          |  101 +---
>  include/configs/sheevaplug.h                       |  104 +---
>  include/configs/tx25.h                             |    3 +-
>  include/configs/vision2.h                          |  214 ++++++
>  include/mc13892.h                                  |    3 +
>  .../mx51evk/mx51evk.h => include/mxc_gpio.h        |   50 +-
>  93 files changed, 2904 insertions(+), 1345 deletions(-)
>  rename arch/arm/cpu/armv7/{omap-common => }/syslib.c (100%)
>  delete mode 100644 arch/arm/include/asm/arch-arm925t/sizes.h
>  delete mode 100644 arch/arm/include/asm/arch-arm926ejs/sizes.h
>  create mode 100644 arch/arm/include/asm/arch-armv7/sysctrl.h
>  copy board/freescale/mx51evk/mx51evk.h => arch/arm/include/asm/arch-armv> 7/systimer.h (55%)
>  copy board/freescale/mx51evk/mx51evk.h => arch/arm/include/asm/arch-armv> 7/wdt.h (55%)
>  delete mode 100644 arch/arm/include/asm/arch-omap/sizes.h
>  delete mode 100644 arch/arm/include/asm/arch-omap24xx/sizes.h
>  create mode 100644 board/armltd/vexpress/Makefile
>  create mode 100644 board/armltd/vexpress/ca9x4_ct_vxp.c
>  create mode 100644 board/armltd/vexpress/config.mk
>  create mode 100644 board/armltd/vexpress/u-boot.lds
>  create mode 100644 board/ttcontrol/vision2/Makefile
>  create mode 100644 board/ttcontrol/vision2/config.mk
>  create mode 100644 board/ttcontrol/vision2/imximage_hynix.cfg
>  create mode 100644 board/ttcontrol/vision2/vision2.c
>  rename drivers/gpio/{mx31_gpio.c => mxc_gpio.c} (63%)
>  create mode 100644 include/configs/ca9x4_ct_vxp.h
>  create mode 100644 include/configs/mv-common.h
>  create mode 100644 include/configs/vision2.h
>  rename board/freescale/mx51evk/mx51evk.h => include/mxc_gpio.h (54%)

Applied.

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
Stupidity, like virtue, is its own reward.

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

* [U-Boot] Pull request: u-boot-arm
@ 2010-10-13 18:40 Wolfgang Denk
  2010-10-13 19:00 ` Wolfgang Denk
  0 siblings, 1 reply; 40+ messages in thread
From: Wolfgang Denk @ 2010-10-13 18:40 UTC (permalink / raw)
  To: u-boot

The following changes since commit bfc7bea6adc46e1db2f5a5e3464d7652ed67c864:

  Merge branch 'master' of git://git.denx.de/u-boot-x86 (2010-10-11 10:00:34 +0200)

are available in the git repository at:

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

Albert Aribaud (6):
      arm: bugfix: replace ble with blo in start.S files
      orion5x: fix relocation-incompatible code
      mvsata_ide: adjust port init sequence
      orion5x: optimize window size computation
      mvsata_ide: adjust port init sequence
      orion5x: optimize window size computation

Alexander Stein (1):
      at91: Add arch_preboot_os which disables PIT in a faster way

Andreas Bie?mann (6):
      at91_emac.c: fix 'Warning: eth device name has a space!'
      at91_emac.c: poll for IDLE when writing PHY
      at91_emac.h: fix typo in register definition
      atmel_usart: change register access to C structure
      arch/arm/include/asm/sizes.h: cleanups
      board/armltd/integrator/split_by_variant.sh: fix 'echo -n'

Ben Gardiner (1):
      ARM: relocation: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC

Heiko Schocher (1):
      ARM: relocation: fix typo in comment

Matt Waddel (2):
      ARMV7: Versatile Express Coretile CortexA9x4 support
      ARMV7: Fixed baudrate setting in pl01x driver

Prafulla Wadaskar (8):
      Kirkwood: print_cpuinfo fixed for valid devid revid
      Kirkwood: dram_init is moved to dram.c
      kirkwood: added common config file mv-common.h
      Kirkwood: Changes specific to ARM relocation support
      Kirkwood: print_cpuinfo fixed for valid devid revid
      Kirkwood: dram_init is moved to dram.c
      kirkwood: added common config file mv-common.h
      Kirkwood: Changes specific to ARM relocation support

Reinhard Meyer (1):
      AT91: convert cpu.c to struct SoC access

Stefano Babic (10):
      Use common function to set GPIOs for MX3 and MX5
      ARM: Use syslib functions for all CORTEXA8
      MX51: Added pins definition to set up pads
      MX51: add structure to access System Reset Controller
      MXC: Add watchdog support to serial driver
      MX51: Drop unused header file for mx51evk
      MXC: Correct SPI_CPOL setting in SPI driver
      MXC: Fix byte-ordering in SPI driver for i.MX31/i.MX51
      MX51: Register definitions cannot be included in board config file
      MX51: Support for TTECH vision2 board

Wolfgang Denk (3):
      Merge branch 'master' of git://git.denx.de/u-boot-imx
      Merge branch 'at91' of git://git.denx.de/u-boot-atmel
      Merge branch 'master' of git://git.denx.de/u-boot-marvell

 MAINTAINERS                                        |    5 +
 MAKEALL                                            |    1 +
 arch/arm/cpu/arm1136/start.S                       |    8 +-
 arch/arm/cpu/arm1176/start.S                       |   10 +-
 arch/arm/cpu/arm720t/start.S                       |   10 +-
 arch/arm/cpu/arm920t/start.S                       |   10 +-
 arch/arm/cpu/arm925t/start.S                       |   10 +-
 arch/arm/cpu/arm926ejs/at91/cpu.c                  |   48 +-
 arch/arm/cpu/arm926ejs/kirkwood/cpu.c              |   34 +-
 arch/arm/cpu/arm926ejs/kirkwood/dram.c             |   38 +
 arch/arm/cpu/arm926ejs/orion5x/cpu.c               |  112 ++--
 arch/arm/cpu/arm926ejs/orion5x/timer.c             |    6 +-
 arch/arm/cpu/arm926ejs/start.S                     |   10 +-
 arch/arm/cpu/arm946es/start.S                      |    8 +-
 arch/arm/cpu/arm_intcm/start.S                     |   10 +-
 arch/arm/cpu/armv7/Makefile                        |    3 +-
 arch/arm/cpu/armv7/omap-common/Makefile            |    1 -
 arch/arm/cpu/armv7/start.S                         |    8 +-
 arch/arm/cpu/armv7/{omap-common => }/syslib.c      |    0
 arch/arm/cpu/ixp/start.S                           |   10 +-
 arch/arm/cpu/lh7a40x/start.S                       |   11 +-
 arch/arm/cpu/pxa/start.S                           |    8 +-
 arch/arm/cpu/s3c44b0/start.S                       |   12 +-
 arch/arm/cpu/sa1100/start.S                        |   10 +-
 arch/arm/include/asm/arch-arm925t/sizes.h          |   50 --
 arch/arm/include/asm/arch-arm926ejs/sizes.h        |   51 --
 arch/arm/include/asm/arch-armv7/sysctrl.h          |   70 ++
 .../arm/include/asm/arch-armv7/systimer.h          |   54 +-
 .../arm/include/asm/arch-armv7/wdt.h               |   57 +-
 arch/arm/include/asm/arch-at91/at91_emac.h         |    2 +-
 arch/arm/include/asm/arch-kirkwood/cpu.h           |    2 +
 arch/arm/include/asm/arch-mx31/mx31-regs.h         |   14 +-
 arch/arm/include/asm/arch-mx31/mx31.h              |   25 -
 arch/arm/include/asm/arch-mx51/imx-regs.h          |   26 +-
 arch/arm/include/asm/arch-mx51/mx51_pins.h         |   44 ++
 arch/arm/include/asm/arch-mx51/sys_proto.h         |    1 +
 arch/arm/include/asm/arch-omap/sizes.h             |   52 --
 arch/arm/include/asm/arch-omap24xx/omap2420.h      |    2 +-
 arch/arm/include/asm/arch-omap24xx/sizes.h         |   49 --
 arch/arm/include/asm/arch-orion5x/cpu.h            |    1 +
 arch/arm/include/asm/sizes.h                       |    5 +-
 board/Marvell/guruplug/guruplug.c                  |   11 -
 board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c    |   11 -
 board/Marvell/openrd_base/openrd_base.c            |   11 -
 board/Marvell/rd6281a/rd6281a.c                    |   11 -
 board/Marvell/sheevaplug/sheevaplug.c              |   11 -
 board/armltd/integrator/split_by_variant.sh        |  129 ++--
 board/armltd/vexpress/Makefile                     |   49 ++
 board/armltd/vexpress/ca9x4_ct_vxp.c               |  220 ++++++
 board/armltd/vexpress/config.mk                    |   23 +
 board/armltd/vexpress/u-boot.lds                   |   65 ++
 board/davedenx/qong/qong.c                         |   29 +-
 board/freescale/mx51evk/mx51evk.c                  |    2 -
 board/ttcontrol/vision2/Makefile                   |   48 ++
 board/ttcontrol/vision2/config.mk                  |   25 +
 board/ttcontrol/vision2/imximage_hynix.cfg         |  209 ++++++
 board/ttcontrol/vision2/vision2.c                  |  711 ++++++++++++++++++++
 boards.cfg                                         |    2 +
 drivers/block/mvsata_ide.c                         |   42 +-
 drivers/gpio/Makefile                              |    2 +-
 drivers/gpio/{mx31_gpio.c => mxc_gpio.c}           |   47 +-
 drivers/misc/fsl_pmic.c                            |   10 +-
 drivers/net/at91_emac.c                            |   22 +-
 drivers/serial/atmel_usart.c                       |   36 +-
 drivers/serial/atmel_usart.h                       |   56 +-
 drivers/serial/serial_mxc.c                        |    7 +-
 drivers/serial/serial_pl01x.c                      |   93 +--
 drivers/spi/mxc_spi.c                              |  168 ++++--
 include/configs/ca9x4_ct_vxp.h                     |  196 ++++++
 include/configs/da850evm.h                         |    1 -
 include/configs/guruplug.h                         |  103 +---
 include/configs/h2_p2_dbg_board.h                  |    2 +-
 include/configs/imx27lite-common.h                 |    3 +-
 include/configs/imx31_litekit.h                    |    4 +-
 include/configs/imx31_phycore.h                    |    2 +-
 include/configs/keymile-common.h                   |    1 +
 include/configs/km_arm.h                           |    2 +-
 include/configs/mv-common.h                        |  230 +++++++
 include/configs/mv88f6281gtw_ge.h                  |  120 +---
 include/configs/mx31ads.h                          |    4 +-
 include/configs/mx31pdk.h                          |    4 +-
 include/configs/mx51evk.h                          |    2 +-
 include/configs/omap1510.h                         |    2 +-
 include/configs/omap3_beagle.h                     |    3 +-
 include/configs/omap730.h                          |    2 +-
 include/configs/openrd_base.h                      |  146 +----
 include/configs/qong.h                             |    9 +-
 include/configs/rd6281a.h                          |  101 +---
 include/configs/sheevaplug.h                       |  104 +---
 include/configs/tx25.h                             |    3 +-
 include/configs/vision2.h                          |  214 ++++++
 include/mc13892.h                                  |    3 +
 .../mx51evk/mx51evk.h => include/mxc_gpio.h        |   50 +-
 93 files changed, 2904 insertions(+), 1345 deletions(-)
 rename arch/arm/cpu/armv7/{omap-common => }/syslib.c (100%)
 delete mode 100644 arch/arm/include/asm/arch-arm925t/sizes.h
 delete mode 100644 arch/arm/include/asm/arch-arm926ejs/sizes.h
 create mode 100644 arch/arm/include/asm/arch-armv7/sysctrl.h
 copy board/freescale/mx51evk/mx51evk.h => arch/arm/include/asm/arch-armv7/systimer.h (55%)
 copy board/freescale/mx51evk/mx51evk.h => arch/arm/include/asm/arch-armv7/wdt.h (55%)
 delete mode 100644 arch/arm/include/asm/arch-omap/sizes.h
 delete mode 100644 arch/arm/include/asm/arch-omap24xx/sizes.h
 create mode 100644 board/armltd/vexpress/Makefile
 create mode 100644 board/armltd/vexpress/ca9x4_ct_vxp.c
 create mode 100644 board/armltd/vexpress/config.mk
 create mode 100644 board/armltd/vexpress/u-boot.lds
 create mode 100644 board/ttcontrol/vision2/Makefile
 create mode 100644 board/ttcontrol/vision2/config.mk
 create mode 100644 board/ttcontrol/vision2/imximage_hynix.cfg
 create mode 100644 board/ttcontrol/vision2/vision2.c
 rename drivers/gpio/{mx31_gpio.c => mxc_gpio.c} (63%)
 create mode 100644 include/configs/ca9x4_ct_vxp.h
 create mode 100644 include/configs/mv-common.h
 create mode 100644 include/configs/vision2.h
 rename board/freescale/mx51evk/mx51evk.h => include/mxc_gpio.h (54%)

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] 40+ messages in thread

* [U-Boot] Pull request u-boot-arm
@ 2010-08-10 21:03 Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-08-10 21:03 UTC (permalink / raw)
  To: u-boot

> The following changes since commit 201532a69cf7e7a84bff354fdab45947425d22b4:
> 
>   Merge branch 'master' of ../master (2010-08-10 22:20:27 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-arm.git master
> 
> Albert Aribaud (6):
>       ide: add configuration
>       ide: reorder object files alphabetically
>       ide: add mvsata_ide driver
>       cmd_ide: add support for orion5x
>       edminiv2: add mvsata_ide and cmd_ide support
>       orion5x: allow overriding default mappings windows
> 
> Li Haibo (1):
>       MX51EVK: fix return value of get_timer_masked
> 
> Prafulla Wadaskar (2):
>       cmd_ide: add support for Kirkwood
>       Kirkwood: openrd_base: Added SATA support
> 
> Reinhard Meyer (1):
>       fix cmd_mmc.c, line 136 missing "
> 
> Steve Sakoman (8):
>       ARMV7: Add pad mux support for OMAP4
>       ARMV7: Fix udelay for OMAP4
>       ARMV7: Modify i2c driver for more reliable operation on OMAP4
>       ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems
>       ARMV7: Restructure omap3 musb driver to allow code sharing between OMAP3 and OMAP4
>       ARMV7: Enable musb driver and usbtty on OMAP4430 SDP
>       ARMV7: Enable musb driver and usbtty on OMAP4 Panda
>       ARMV7: Update default environment for OMAP4 boards
> 
>  arch/arm/cpu/arm926ejs/orion5x/cpu.c          |   40 ++--
>  arch/arm/cpu/armv7/mx51/timer.c               |    2 +-
>  arch/arm/cpu/armv7/omap-common/timer.c        |    9 -
>  arch/arm/cpu/armv7/omap4/board.c              |   11 +
>  arch/arm/include/asm/arch-kirkwood/kirkwood.h |    5 +
>  arch/arm/include/asm/arch-omap3/cpu.h         |    3 +
>  arch/arm/include/asm/arch-omap3/i2c.h         |    4 +-
>  arch/arm/include/asm/arch-omap4/cpu.h         |    3 +
>  arch/arm/include/asm/arch-omap4/mux_omap4.h   |  344 +++++++++++++++++++++++++
>  arch/arm/include/asm/arch-omap4/omap4.h       |    2 +
>  arch/arm/include/asm/arch-omap4/sys_proto.h   |    1 +
>  arch/arm/include/asm/arch-orion5x/cpu.h       |   98 ++++++--
>  arch/arm/include/asm/arch-orion5x/orion5x.h   |    3 +
>  arch/powerpc/include/asm/config.h             |    3 +
>  board/ti/panda/panda.c                        |   26 ++
>  board/ti/panda/panda.h                        |  265 +++++++++++++++++++
>  board/ti/sdp4430/sdp.c                        |   26 ++
>  board/ti/sdp4430/sdp.h                        |  265 +++++++++++++++++++
>  common/cmd_ide.c                              |   25 ++-
>  common/cmd_mmc.c                              |    2 +-
>  doc/README.PXA_CF                             |    8 +
>  drivers/block/Makefile                        |    7 +-
>  drivers/block/mvsata_ide.c                    |  140 ++++++++++
>  drivers/i2c/omap24xx_i2c.c                    |   31 ++-
>  drivers/i2c/omap24xx_i2c.h                    |    4 +
>  drivers/power/Makefile                        |    1 +
>  drivers/power/twl6030.c                       |   78 ++++++
>  drivers/usb/musb/omap3.c                      |   16 ++
>  drivers/usb/musb/omap3.h                      |    3 +-
>  include/configs/ap325rxa.h                    |    1 +
>  include/configs/edminiv2.h                    |   34 +++-
>  include/configs/ms7720se.h                    |    1 +
>  include/configs/omap4_panda.h                 |   26 ++-
>  include/configs/omap4_sdp4430.h               |   26 ++-
>  include/configs/openrd_base.h                 |   31 +++
>  include/configs/r2dplus.h                     |    1 +
>  include/configs/r7780mp.h                     |    1 +
>  include/twl6030.h                             |   91 +++++++
>  38 files changed, 1556 insertions(+), 81 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-omap4/mux_omap4.h
>  create mode 100644 board/ti/panda/panda.h
>  create mode 100644 board/ti/sdp4430/sdp.h
>  create mode 100644 drivers/block/mvsata_ide.c
>  create mode 100644 drivers/power/twl6030.c
>  create mode 100644 include/twl6030.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
"Confound these ancestors.... They've stolen our best ideas!"
- Ben Jonson

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

* [U-Boot] Pull request u-boot-arm
@ 2010-08-10 20:51 Wolfgang Denk
  0 siblings, 0 replies; 40+ messages in thread
From: Wolfgang Denk @ 2010-08-10 20:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit 201532a69cf7e7a84bff354fdab45947425d22b4:

  Merge branch 'master' of ../master (2010-08-10 22:20:27 +0200)

are available in the git repository at:

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

Albert Aribaud (6):
      ide: add configuration
      ide: reorder object files alphabetically
      ide: add mvsata_ide driver
      cmd_ide: add support for orion5x
      edminiv2: add mvsata_ide and cmd_ide support
      orion5x: allow overriding default mappings windows

Li Haibo (1):
      MX51EVK: fix return value of get_timer_masked

Prafulla Wadaskar (2):
      cmd_ide: add support for Kirkwood
      Kirkwood: openrd_base: Added SATA support

Reinhard Meyer (1):
      fix cmd_mmc.c, line 136 missing "

Steve Sakoman (8):
      ARMV7: Add pad mux support for OMAP4
      ARMV7: Fix udelay for OMAP4
      ARMV7: Modify i2c driver for more reliable operation on OMAP4
      ARMV7: Add support for the TWL6030 I2C power chip used in OMAP4 systems
      ARMV7: Restructure omap3 musb driver to allow code sharing between OMAP3 and OMAP4
      ARMV7: Enable musb driver and usbtty on OMAP4430 SDP
      ARMV7: Enable musb driver and usbtty on OMAP4 Panda
      ARMV7: Update default environment for OMAP4 boards

 arch/arm/cpu/arm926ejs/orion5x/cpu.c          |   40 ++--
 arch/arm/cpu/armv7/mx51/timer.c               |    2 +-
 arch/arm/cpu/armv7/omap-common/timer.c        |    9 -
 arch/arm/cpu/armv7/omap4/board.c              |   11 +
 arch/arm/include/asm/arch-kirkwood/kirkwood.h |    5 +
 arch/arm/include/asm/arch-omap3/cpu.h         |    3 +
 arch/arm/include/asm/arch-omap3/i2c.h         |    4 +-
 arch/arm/include/asm/arch-omap4/cpu.h         |    3 +
 arch/arm/include/asm/arch-omap4/mux_omap4.h   |  344 +++++++++++++++++++++++++
 arch/arm/include/asm/arch-omap4/omap4.h       |    2 +
 arch/arm/include/asm/arch-omap4/sys_proto.h   |    1 +
 arch/arm/include/asm/arch-orion5x/cpu.h       |   98 ++++++--
 arch/arm/include/asm/arch-orion5x/orion5x.h   |    3 +
 arch/powerpc/include/asm/config.h             |    3 +
 board/ti/panda/panda.c                        |   26 ++
 board/ti/panda/panda.h                        |  265 +++++++++++++++++++
 board/ti/sdp4430/sdp.c                        |   26 ++
 board/ti/sdp4430/sdp.h                        |  265 +++++++++++++++++++
 common/cmd_ide.c                              |   25 ++-
 common/cmd_mmc.c                              |    2 +-
 doc/README.PXA_CF                             |    8 +
 drivers/block/Makefile                        |    7 +-
 drivers/block/mvsata_ide.c                    |  140 ++++++++++
 drivers/i2c/omap24xx_i2c.c                    |   31 ++-
 drivers/i2c/omap24xx_i2c.h                    |    4 +
 drivers/power/Makefile                        |    1 +
 drivers/power/twl6030.c                       |   78 ++++++
 drivers/usb/musb/omap3.c                      |   16 ++
 drivers/usb/musb/omap3.h                      |    3 +-
 include/configs/ap325rxa.h                    |    1 +
 include/configs/edminiv2.h                    |   34 +++-
 include/configs/ms7720se.h                    |    1 +
 include/configs/omap4_panda.h                 |   26 ++-
 include/configs/omap4_sdp4430.h               |   26 ++-
 include/configs/openrd_base.h                 |   31 +++
 include/configs/r2dplus.h                     |    1 +
 include/configs/r7780mp.h                     |    1 +
 include/twl6030.h                             |   91 +++++++
 38 files changed, 1556 insertions(+), 81 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-omap4/mux_omap4.h
 create mode 100644 board/ti/panda/panda.h
 create mode 100644 board/ti/sdp4430/sdp.h
 create mode 100644 drivers/block/mvsata_ide.c
 create mode 100644 drivers/power/twl6030.c
 create mode 100644 include/twl6030.h

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

end of thread, other threads:[~2011-05-23  7:06 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-26 20:29 [U-Boot] Pull request: u-boot-arm Wolfgang Denk
2010-11-26 20:55 ` Wolfgang Denk
2010-11-27  7:43   ` Dirk Behme
2010-11-27  9:06     ` Albert ARIBAUD
2010-11-27 17:19       ` Paulraj, Sandeep
2010-11-27 19:36         ` Wolfgang Denk
2010-11-27 18:50       ` Wolfgang Denk
2010-11-27 19:42         ` Albert ARIBAUD
2010-11-27 20:50           ` Wolfgang Denk
2010-11-27 21:15             ` Albert ARIBAUD
2010-11-27 22:09               ` Albert ARIBAUD
2010-11-27 22:27                 ` Albert ARIBAUD
2010-12-06 13:55                   ` [U-Boot] [PATCH] Fix Stelian's email address Stelian Pop
2010-11-28  7:40                 ` [U-Boot] Pull request: u-boot-arm Dirk Behme
2010-11-28  5:15         ` Thomas Weber
2010-11-27 23:33     ` Steve Sakoman
2010-11-27 23:57       ` Paulraj, Sandeep
2010-11-28  3:15         ` Steve Sakoman
2010-11-29 20:16     ` Dirk Behme
2010-11-29 20:27       ` Paulraj, Sandeep
  -- strict thread matches above, loose matches on Subject: below --
2011-05-23  7:06 Albert ARIBAUD
2011-05-18 12:20 Albert ARIBAUD
2011-05-18 12:42 ` Wolfgang Denk
2011-02-21  7:33 Albert ARIBAUD
2011-02-21 22:16 ` Wolfgang Denk
2011-02-17 20:49 Albert ARIBAUD
2011-02-02  0:09 Albert ARIBAUD
2011-02-02 20:57 ` Wolfgang Denk
2010-11-17 19:50 Wolfgang Denk
2010-11-17 19:55 ` Wolfgang Denk
2010-11-17 21:34 ` Loïc Minier
2010-11-17 21:54   ` Wolfgang Denk
2010-10-19 22:08 Wolfgang Denk
2010-10-19 22:14 ` Wolfgang Denk
2010-10-17 18:24 Wolfgang Denk
2010-10-17 18:36 ` Wolfgang Denk
2010-10-13 18:40 Wolfgang Denk
2010-10-13 19:00 ` Wolfgang Denk
2010-08-10 21:03 [U-Boot] Pull request u-boot-arm Wolfgang Denk
2010-08-10 20:51 Wolfgang Denk

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.