]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - CHANGELOG
Update CHANGELOG, prepare -rc2
[karo-tx-uboot.git] / CHANGELOG
index 17c56916767d4e5300ce0059c9439bc5b31d6398..4bf806ef49730b42a48a71563f4b5502ff4bbe84 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
+commit f2352877cb2daac88115192fb09991a2397d0b27
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Dec 6 23:58:28 2009 -0600
+
+    MAKEALL: Fix return value
+
+    Previously MAKEALL would always return a value of 0, even if 1 or more
+    boards did not compile.  This change causes MAKEALL to return 0 if all
+    boards were able to build, otherwise 1.
+
+    This change also requires changing the script interpreter from sh to
+    bash to support bash's PIPESTATUS variable.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Dec 6 01:33:24 2009 -0600
+
+    tools/mkimage: Remove duplicate line of code
+
+    Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and
+    6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the
+    same manner.  Unfortunately git was "smart" enough to merge both changes
+    which resulted in some duplicate code.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+    Reordered code and comment a bit.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit df002fa6b9cd475909ede35bf95b803c2289c6a4
+Author: Heiko Schocher <hs@denx.de>
+Date:  Sat Dec 5 11:59:51 2009 +0100
+
+    i2c: fix dangling comment in do_i2c_mw()
+
+    commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused
+    code in do_i2c_mw(), but missed to also remove the respective
+    commment. This patch fixes this.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit f8450829f921cf10667af98a8d08edfa3d998f04
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Dec 1 19:30:47 2009 +0100
+
+    52xx, manroland: add fdt_fixup_memory() in ft_board_setup()
+
+    To update the real memory size in the memory node on the
+    uc101 and mucmc52 boards call fdt_fixup_memory() in
+    ft_board_setup().
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 0ec81db20294efdad2454a753e79f1fe244a43ca
+Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
+Date:  Tue Dec 1 14:05:55 2009 +0100
+
+    Fix computation in nand_util.c:get_len_incl_bad
+
+    Depending on offset, flash size and the number of bad blocks,
+    get_len_incl_bad may return a too small value which may lead to:
+
+    1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the
+    bad block aware read/write code. This may hurt performance, but does
+    not have any adverse effects.
+
+    2) If there are bad blocks, the nand_{read,write}_skip_bad may choose
+    the bad block unaware read/write code (if len_incl_bad == *length)
+    which leads to corrupted data.
+
+    Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
+
+commit aabb8cb0818e285aeed0cfaf243635997e07554d
+Author: Evan Samanas <esamanas@xes-inc.com>
+Date:  Mon Nov 9 20:08:36 2009 -0600
+
+    nfs: NfsTimeout() updates
+
+    - NfsTimeout() does not correctly update the NFS timeout value which
+      results in NfsTimeout() only being called once in certain situations.
+      This can result in the 'nfs' command hanging indefinetly.  For
+      example, the command:
+
+       nfs 192.168.0.1:/home/user/file
+
+      will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
+      NFS server running.
+
+      This issue is resolved by reinitializting the NFS timeout value inside
+      NfsTimeout() when a timeout occurs.
+
+    - Make the 'nfs' command print the 'T' character when a timeout occurs.
+      Previously there was no indication that timeouts were occuring.
+
+    - Mimic the 'tftpboot' command and when a download fails print "Retry
+      count exceeded; starting again", and restart the download taking the
+      'netretry' environment variable into account.
+
+    Signed-off-by: Evan Samanas <esamanas@xes-inc.com>
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+    Tested on TQM8xxL.
+
+    Tested by: Wolfgang Denk <wd@denx.de>
+
+    Tested on MPC8527DS.
+
+    Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
+
+commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Nov 18 19:08:59 2009 -0600
+
+    bootm: Fix help message's sub-command ordering
+
+    The help message for the 'bootm' command listed the 'cmdline' and 'bdt'
+    sub-commands in the wrong order which resulted in the error below when
+    following the 'help' command's instructions:
+
+      "Trying to execute a command out of order"
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a93c92cddaedd5f0720e0da15c6664f7a688b582
+Author: Robert P. J. Day <rpjday@crashcourse.ca>
+Date:  Tue Nov 17 07:30:23 2009 -0500
+
+    help: Correct syntax of nandecc help output.
+
+    "nandecc" help output should not reproduce the command name, nor have
+    a trailing newline.
+
+    Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
+
+commit c2fff331a32ceca837d76eb7827d6340da270d52
+Author: Mike Rapoport <mike@compulab.co.il>
+Date:  Wed Nov 11 10:03:03 2009 +0200
+
+    smc911x: update SMC911X related configuration description
+
+    Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X
+    Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options
+    are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update
+    README to reflect that change.
+
+    Signed-off-by: Mike Rapoport <mike@compulab.co.il>
+
+commit 45b6b65c6bf06a589ef3123192af94b0381db27b
+Author: Mike Rapoport <mike@compulab.co.il>
+Date:  Wed Nov 11 10:03:09 2009 +0200
+
+    smc911x: fix typo in smc911x_handle_mac_address name
+
+    Signed-off-by: Mike Rapoport <mike@compulab.co.il>
+
+commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc
+Author: Ed Swarthout <Ed.Swarthout@freescale.com>
+Date:  Thu Nov 19 02:47:28 2009 -0600
+
+    fix nfs symlink name corruption
+
+    An off by one error may cause nfs readlink lookup fail if
+    nfs_path_buff has non-zero data from a previous use.
+
+    Loading: *** ERROR: File lookup fail
+
+    Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
+
+commit e8fac25e83426fdf461c66aa8a2530ec28ec536e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Dec 7 21:06:40 2009 +0100
+
+    at91sam9261ek.c: fix minor coding style issue.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4713010adf5beda87410d637ebfc58db0db9a9db
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Dec 6 01:21:28 2009 +0100
+
+    trab: fix warning: implicit declaration of function 'disable_vfd'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a9f99ab44b473fb394169ba365f8b4380f981584
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Dec 6 00:53:18 2009 +0100
+
+    zlib.c: avoid build conflicts for cradle board
+
+    Commit dce3d79710 updated the zlib code to v0.95; this caused
+    conflicts when building for the "cradle" board, because the (pretty
+    generic) preprocessor variable "OFF" was used in multiple files.
+    Make sure to avoid further conflicts by #undef'ing it in zlib.c
+    before redefining it.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    cc: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+    cc: Angelo Castello <angelo.castello@st.com>
+    cc: Alessandro Rubini <rubini-list@gnudd.com>
+
+commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Dec 6 00:26:19 2009 +0100
+
+    Fix out-of-tree building of "apollon" board.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f68ab43de67f59925542efb6bcec30f4a84fe695
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Dec 4 05:35:15 2009 -0500
+
+    lzma: ignore unset filesizes
+
+    The Linux kernel build system changed how it compresses things with LZMA
+    such that the header no longer contains the filesize (it is instead set to
+    all F's).  So if we get a LZMA image that has -1 for the 64bit field,
+    let's just assume that the decompressed size is unknown and continue on.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Tue Dec 1 17:16:19 2009 +0100
+
+    README: Rearrange paragraphs to regain linear arrangement.
+
+    Two later additions to the Configuration Option section unfortunately
+    split the description of Show boot progress and the list of its call outs.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Nov 24 16:42:10 2009 -0600
+
+    tools/mkimage: Print FIT image contents after creation
+
+    Previously, there was no indication to the user that a FIT image was
+    successfully created after executing mkimage.  For example:
+
+      $ mkimage -f uImage.its uImage.itb
+      DTC: dts->dtb  on file "uImage.its"
+
+    Adding some additional output after creating a FIT image lets the user
+    know exactly what is contained in their image, eg:
+
+      $ mkimage -f uImage.its uImage.itb
+      DTC: dts->dtb  on file "uImage.its"
+      FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty
+      Created:        Tue Nov 24 15:43:01 2009
+       Image 0 (kernel@1)
+       Description:  Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty
+       Type:         Kernel Image
+       Compression:  gzip compressed
+       Data Size:    2707311 Bytes = 2643.86 kB = 2.58 MB
+       Architecture: PowerPC
+       OS:           Linux
+       Load Address: 0x00000000
+       Entry Point:  0x00000000
+       Hash algo:    crc32
+       Hash value:   efe0798b
+       Hash algo:    sha1
+       Hash value:   ecafba8c95684f2c8fec67e33c41ec88df1534d7
+       Image 1 (fdt@1)
+       Description:  Flattened Device Tree blob
+       Type:         Flat Device Tree
+       Compression:  uncompressed
+       Data Size:    12288 Bytes = 12.00 kB = 0.01 MB
+       Architecture: PowerPC
+       Hash algo:    crc32
+       Hash value:   a5cab676
+       Hash algo:    sha1
+       Hash value:   168722b13e305283cfd6603dfe8248cc329adea6
+       Default Configuration: 'config@1'
+       Configuration 0 (config@1)
+       Description:  Default Linux kernel
+       Kernel:       kernel@1
+       FDT:          fdt@1
+
+    This brings the behavior of creating a FIT image in line with creating a
+    standard uImage, which also prints out the uImage contents after
+    creation.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 8e1c89663cc8796b85588910046e03b388a7597c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Nov 24 16:42:09 2009 -0600
+
+    tools/fit_image.c: Remove unused fit_set_header()
+
+    The FIT fit_set_header() function was copied from the standard uImage's
+    image_set_header() function during mkimage reorganization. However, the
+    fit_set_header() function is not used since FIT images use a standard
+    device tree blob header.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Nov 24 16:42:08 2009 -0600
+
+    tools/mkimage: Assume FDT image type for FIT images
+
+    When building a Flattened Image Tree (FIT) the image type needs to be
+    "flat_dt". Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a
+    regression which caused the user to need to specify the "-T flat_dt"
+    parameter on the command line when building a FIT image.  The "-T
+    flat_dt" parameter should not be needed and is at odds with the current
+    FIT image documentation.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 270737acca21f3939f814de5dcf350a1c3d80d83
+Author: Michael Brandt <Michael.Brandt@emsyso.de>
+Date:  Sun Nov 22 14:13:27 2009 +0100
+
+    EXT2FS: fix inode size for ext2fs rev#0
+
+    extfs.c assumes that there is always a valid inode_size field in the
+    superblock. But this is not true for ext2fs rev 0. Such ext2fs images
+    are for instance generated by genext2fs. Symptoms on ARM machines are
+    messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will
+    print nothing.
+    This fix checks for rev 0 and uses then 128 bytes as inode size.
+
+    Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de>
+    Tested on: TQM5200S
+    Tested-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit bcb324d68f7955c1136dafc944eb55db8ebaa601
+Author: Robert P. J. Day <rpjday@crashcourse.ca>
+Date:  Thu Nov 19 11:00:28 2009 -0500
+
+    Remove superfluous preprocessor tests from some cmd_*.c files.
+
+    A small number of common/cmd_*.c files contain preprocessor tests that
+    are apparently superfluous since those same tests are used in the
+    Makefile to control the compilation of those files.  Those tests are
+    clearly redundant as long as they surround the entirety of the source
+    in those files.
+
+    Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
+
+commit ad53226156fa64b6d04c0d1d6e91e09979cbea15
+Author: Robert P. J. Day <rpjday@crashcourse.ca>
+Date:  Tue Nov 17 01:59:29 2009 -0500
+
+    README: Update the list of directories.
+
+    Bring the directory listing more into line with current content.
+
+    Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
+
+commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b
+Author: Pratap Chandu <pratap.rrke@gmail.com>
+Date:  Thu Nov 12 19:28:25 2009 +0530
+
+    Removes dead code in the file common/cmd_i2c.c
+
+    There is some dead code enclosed by #if 0 .... #endif in the file
+    common/cmd_i2c.c
+    This patch removes the dead code.
+
+    Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com>
+
+commit 64a480601a5614b441de692ae15a62c51e0bb381
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 11 17:51:56 2009 -0500
+
+    smc91111_eeprom: drop CONFIG stub protection
+
+    Since the Makefile now controls the compilation of this, there is no need
+    for CONFIG checking nor the stub function.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f3a7bddc06c927c36a1a99a97131299479ef207a
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Wed Nov 11 19:56:58 2009 +0100
+
+    RTC: Fix return code in MC13783 RTC driver.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit d52e3e0176a74c30549251e16c5c00a363c544d2
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Wed Nov 11 19:56:36 2009 +0100
+
+    cmd_date: Fix spelling in error message.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit c253122395753abb9e531d8906c5265dc8803fb1
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Nov 11 10:36:28 2009 -0600
+
+    Move do_irqinfo() to common/cmd_irq.c
+
+    cmd_irq.c is a much better home and it is already conditionally
+    compiled based on CONFIG_CMD_IRQ.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Nov 11 10:36:19 2009 -0600
+
+    cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE
+
+    cmd_license is already conditionally compiled at the Makefile-level.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 06015146a15adc7455440c491d543f6a8091551d
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Nov 9 15:18:52 2009 -0600
+
+    m41t11: Remove unused functions
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 9ef78511cda39987e5fc10febf386fd19f58ecf7
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Nov 9 15:17:50 2009 -0600
+
+    circbuf: Move to lib_generic and conditionally compile
+
+    circbuf could be used as a generic library and is only currently
+    needed when CONFIG_USB_TTY is defined.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 604f7ce55ad74694ef8743ad2e99933dc0265e46
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Mon Nov 9 22:43:00 2009 +0530
+
+    Fix build failure in examples/standalone
+
+    Some versions of 'make' do not handle trailing white-spaces
+    properly. Trailing spaces in ELF causes a 'fake' source to
+    be added to the variable COBJS; leading to build failure
+    (listed below). The problem was found with GNU Make 3.80.
+
+    Using text-function 'strip' as a workaround for the problem.
+
+    make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone'
+    arm-none-linux-gnueabi-gcc -g  -Os  -fno-common -ffixed-r8 -msoft-float
+    -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include
+    -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1-
+    203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe  -DCONFIG_
+    ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5
+    -Wall -Wstrict-prototypes -fno-stack-protector -g  -Os   -fno-common -ff
+    ixed-r8 -msoft-float   -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje
+    ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co
+    desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ
+    e -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-inte
+    rwork -march=armv5 -I.. -Bstatic -T u-boot.lds  -Ttext 0x80e80000 -o .c
+    arm-none-linux-gnueabi-gcc: no input files
+    make[1]: *** [.c] Error 1
+    make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone'
+    make: *** [examples/standalone] Error 2
+    premi #
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+    Fixed typo (s/ElF/ELF/).
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit af860962b544ddf323c4ff68454f00d31e44df0a
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Wed Nov 4 18:30:08 2009 -0600
+
+    85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files
+
+    A bunch of the 85xx boards have this cruft in them - it's not used
+    anywhere.  Delete it.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit deec1fbd4f704dded2e668bb9e368631981ea139
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Dec 2 22:26:30 2009 +0100
+
+    MAINTAINERS: update responsible for MPC85xx/86xx
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Kumar Gala <galak@kernel.crashing.org>
+    Cc: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d
+Author: Ira W. Snyder <iws@ovro.caltech.edu>
+Date:  Wed Nov 4 13:37:59 2009 -0800
+
+    Fix example FIT image source files
+
+    The example FIT image source files do not compile with the latest dtc and
+    mkimage. The following error message is produced:
+
+    DTC: dts->dtb  on file "kernel.its"
+    Error: kernel.its 7:0 - 1:0 syntax error
+    FATAL ERROR: Unable to parse input tree
+    ./mkimage: Can't read kernel.itb.tmp: Invalid argument
+
+    The FIT image source files are missing the "/dts-v1/;" directive at the
+    beginning of the file. Add the directive to the examples.
+
+    Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
+
+commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 4 16:13:19 2009 -0500
+
+    img2srec: use standard types
+
+    The img2srec code creates a lot of typedefs with common names.  These
+    easily clash with system headers that include these typedefs (like mingw).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8204e068110e8abe5db9c3b7df9971b58cda8f26
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 4 16:03:25 2009 -0500
+
+    tools: gitignore *.exe binaries
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 425d3b666eee5c58fdb82fb894a535dd71782a05
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Nov 3 23:31:07 2009 -0600
+
+    ppc: Move conditional compilation of kgdb.c to Makefile
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e06ab6546b332acc55ac4e7c31338662328b0fb3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Nov 3 11:36:39 2009 -0500
+
+    spi_flash.h: pull in linux/types.h for u## types
+
+commit 0008555f4d57c15ad86ee735861ca0d783042f61
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Nov 3 11:36:26 2009 -0500
+
+    bootm: mark local boot_os[] table static
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7
+Author: Nishanth Menon <nm@ti.com>
+Date:  Mon Nov 2 09:40:18 2009 -0600
+
+    mkconfig: deny messed up ARCH definition
+
+    Refuse to setup a platform if the command line ARCH= is not the same
+    as the one required for the board. This prevents any user with
+    prehistoric aliases from messing up their builds.
+
+    Reported in thread:
+    http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html
+
+    Inputs from: Mike Frysinger and Wolfgang Denk:
+    http://lists.denx.de/pipermail/u-boot/2009-November/063642.html
+
+    Cc: Wolfgang Denk <wd@denx.de>
+    Cc: Mike Frysinger <vapier@gentoo.org>
+    Cc: Anand Gadiyar <gadiyar@ti.com>
+    Cc: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+
+commit 67b96e87da1b84660fa1e5b78cc760246d116814
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Wed Oct 28 22:13:39 2009 +0100
+
+    Repair the 'netretry=once' option.
+
+    'netretry = once' does the same as 'netretry = yes', because it is not stored
+    when it was tried once.
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Thu Oct 29 14:24:22 2009 +0100
+
+    Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 01826abc02ce160501534788e63629ccbe31b05c
+Author: Grazvydas Ignotas <notasas@gmail.com>
+Date:  Thu Nov 12 11:46:07 2009 +0200
+
+    OMAP3: pandora: fix booting without serial attached
+
+    When the board is booted without serial cable attached (which
+    is how most of them will be used) UART RX is left floating and
+    sometimes picks noise, which interrupts countdown and enters
+    U-Boot prompt instead of booting the kernel.
+
+    Fix this by setting up internal pullup on UART RX pin. This
+    does not prevent serial from working as the internal pullup
+    is weak.
+
+    Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
+
+commit 41dfd8a60324243dbe2dc313a607910824a68aa7
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Wed Oct 28 22:13:37 2009 +0100
+
+    Add support for CS2 dataflash for Atmel-SPI.
+
+    The only missing chipselect line support is CS2, and I need it on
+    CS2...
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit faf36c1437c95e4a86835633d9801c5f6396a3c7
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Wed Oct 28 22:13:36 2009 +0100
+
+    Fix mingw tools build
+
+    mkimage does not build due to missing strtok_r() and getline() implementation
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 6a590c5f5fd12cdd27f3153522acfac3854590e7
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Wed Oct 28 22:13:35 2009 +0100
+
+    Building of FIT images does not work.
+
+    The type is not set for generation of the FIT images, resulting
+    in no images being created without printing or returning an error
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae
+Author: Renato Andreola <renato.andreola@imagos.it>
+Date:  Mon Nov 23 16:45:14 2009 -0500
+
+    Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to
+       missing cache flush.
+
+       Added instruction and data caches flush.
+
+    Signed-off-by: Scott McNutt <smcnutt@psyent.com>
+
+commit de03825386eaedb5e17261dd87cde86e9a764ba9
+Author: Scott McNutt <smcnutt@psyent.com>
+Date:  Mon Nov 23 16:29:40 2009 -0500
+
+    Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables)
+
+    Signed-off-by: Scott McNutt <smcnutt@psyent.com>
+
+commit 57baa379cf2f67df89a5c6052767fd25daff20bd
+Author: Scott McNutt <smcnutt@psyent.com>
+Date:  Mon Nov 23 15:54:25 2009 -0500
+
+    Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from
+       the standalone examples.
+
+    Signed-off-by: Scott McNutt <smcnutt@psyent.com>
+
+commit fcffb680e77fcb48598d4a9944dbe2d4503170e0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Oct 14 19:28:03 2009 -0400
+
+    sf: fix stmicro offset setup while erasing
+
+    Reported-by: Peter Gombos <gombos@protecta.hu>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d394a7795027d96ca55799df40bd5c4a13dbeebe
+Author: Jason McMullan <mcmullan@netapp.com>
+Date:  Fri Oct 9 17:12:23 2009 -0400
+
+    sf: new driver for Winbond W25X16/32/64 devices
+
+    Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cada315100c88894b85972a91309a6f2413966b6
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Thu Oct 1 23:55:17 2009 +0200
+
+    mpc8260: move FDT memory node fixup into common CPU code.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+    Tested-by: Heiko Schocher <hs@denx.de>
+
+commit f2cea405f83da46b72098ea874fb3eefe185d312
+Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
+Date:  Wed Sep 23 15:52:35 2009 +0800
+
+    Add driver for FTRTC010 real time clock
+
+    Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
+
+    Edited commit message.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c0356a88011330646e960dfac8a2c909bede3304
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Mon Aug 17 16:42:52 2009 +0100
+
+    MIMC200: set default fbmem value
+
+    This patch adds a default bootargs "fbmem" value to the
+    CONFIG_BOOTARGS string for the MIMC200 board.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Tue Oct 27 19:58:09 2009 +0100
+
+    ppc4xx: Initialize magnetic coupler on VOM405 boards
+
+    This patch fixes an ugly behavior of the IL712 magnetic coupler
+    as used on VOM405. These parts will remember their last state
+    over a power cycle which might cause unwanted behavior.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit be0db3e3141c6c6b4e232b51091f35a284cc54e5
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Oct 26 09:58:45 2009 +0100
+
+    ppc4xx: Initialize magnetic couplers in PLU405
+
+    This patch fixes an ugly behavior of the IL712 magnetic couplers
+    as used on PLU405. These parts will remember their last state
+    over a power cycle which might cause unwanted behavior.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 067f54c66acd469870ef6946e1591bfcc02de1b3
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Oct 26 09:55:40 2009 +0100
+
+    Add minimal SJA1000 header for basic CAN mode
+
+    This patch is in preparation for the upcoming PLU405 board fix.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit cdbdbe65f5f006cba208accee5a126c659d4b867
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Nov 13 08:52:21 2009 -0600
+
+    ppc/85xx: Fix how we determine the number of CAM entries
+
+    We were incorrectly use the max CAM size as the number of entries in
+    the array for setting up the addrmap.  We should be using the NENTRY
+    field which is the low 12-bits of TLB1CFG.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fbd47b6753b08162436d9ccad1e63c8d43ede54c
+Author: Mike Rapoport <mike@compulab.co.il>
+Date:  Thu Nov 12 15:35:08 2009 +0200
+
+    smc911x: make smc911x_initialize return correct value
+
+    Make smc911x_initialize return -1 on error and number of interfaces
+    detected otherwise.
+
+    Signed-off-by: Mike Rapoport <mike@compulab.co.il>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit c44efcf97b335dcef7d014f65b7d3094e79adb13
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Nov 12 22:26:02 2009 -0500
+
+    smc911x_eeprom: fix building after smc911x overhaul
+
+    When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was
+    missed.  The config option needed updating as well as overhauling of the
+    rergister read/write functions.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Tested-by: Mike Rapoport <mike.rapoport@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3ad95deb30ac73bd57e966d321215a17d3236f9f
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Thu Nov 12 07:26:37 2009 +0800
+
+    fsl-ddr: Fix the chip-select interleaving issue
+
+    commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
+    introduced one new bug to chip-select interleaving.
+
+    Single DDR controller also can do the chip-select
+    interleaving if there is dual-rank or qual-rank DIMMs.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce
+Author: javier Martin <javier.martin@vista-silicon.com>
+Date:  Thu Oct 29 08:22:43 2009 +0100
+
+    mxc_fec: avoid free() calls to already freed pointers.
+
+    Sometimes, inside NetLoop, eth_halt() is called before eth_init() has
+    been called. This is harmless except for free() calls to pointers
+    which have not been allocated yet.
+
+    This patch initializes those pointers to NULL and allocates them only
+    the first time. This way we can get rid of free calls in halt callback.
+
+    This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
+
+    Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit e8f1546a88b4ade6a910c4a7958a774ee1b40023
+Author: javier Martin <javier.martin@vista-silicon.com>
+Date:  Thu Oct 29 08:18:34 2009 +0100
+
+    mxc_fec: fix some erroneous PHY accesses.
+
+    This patch fixes erroneous access to the ethernet PHY which broke the driver.
+    1. Selector field in the auto-negotiation register must be 0x00001 for
+    using 802.3, not 0x00000 which is reseved.
+    2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not
+    0x0 fixed address.
+
+    This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
+
+    Now using proper defines for auto-negotiation register.
+
+    Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463
+Author: Ron Lee <ron@debian.org>
+Date:  Wed Aug 5 20:14:01 2009 +0200
+
+    ARM Don't inline weak symbols
+
+    ------------------------------------------------------------------------
+
+    GCC 4.4 complains about this now.
+
+    Signed-off-by: Ron Lee <ron@debian.org>
+
+commit d14c7ec2b51fb92c4a5218b299b772c3d186510d
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Nov 9 13:09:57 2009 -0800
+
+    Fix SMC91111 regression: lpd7a40x build failures
+
+    Both lpd7a400 and lpd7a404 failed to compile because they had
+    CONFIG_SMC_USE_IOFUNCS defined:
+
+    examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw'
+
+    Also removed an orphaned paren in lpd7a404.h
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 1031ae960ce6ce8332190278a06e2d72c2b2793e
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Nov 9 14:01:08 2009 -0800
+
+    SMC91111: Clean up SMC_inx macros on xsengine and xaeniax
+
+    This patch fixes the following warnings:
+
+    Configuring for xaeniax board...
+    smc91111_eeprom.c: In function 'print_macaddr':
+    smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of &
+    smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of &
+    ...
+    Configuring for xsengine board...
+    smc91111_eeprom.c: In function 'print_macaddr':
+    smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift
+    smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Nov 9 11:43:18 2009 -0800
+
+    Fix CS8900 regression on impa7 board
+
+    The following error was seen on impa7 board, due to its use of a 32-bit bus
+    on CS8900.
+    cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1
+
+    This patch gives the macro the correct number of arguments
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Nov 1 22:39:56 2009 -0500
+
+    clarify eth driver halt/recv steps
+
+    The dev->halt() func can be called at any time, and the dev->recv() func
+    does not need to use NetRxPackets[] when calling NetReceive().
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a
+Author: Hui.Tang <zetalabs@gmail.com>
+Date:  Thu Nov 5 09:58:44 2009 +0800
+
+    Fix cs8900 dev->priv not init issue
+
+    Ensure all CS8900 data structures are assigned before accessing device
+
+    Signed-off-by: Hui.Tang <zetalabs@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Nov 3 14:34:45 2009 +0100
+
+    ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES)
+
+    This error only appears when DEBUG is enabled in this driver. That's why
+    it went unnoticed till now.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Oct 29 18:37:45 2009 +0100
+
+    ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z)
+
+    This patch fixes a problem only seen very occasionally on Canyonlands.
+    The NOR flash interface (CFI driver) doesn't work reliably in all cases.
+    Erasing and/or programming sometimes doesn't work. Sometimes with
+    an error message, like "flash not erased" when trying to program an
+    area that should have just been erased. And sometimes without any error
+    messages. As mentioned above, this problem was only seen rarely and with
+    some PLL configuration (CPU speed, EBC speed).
+
+    Now I spotted this problem a few times, when running my Canyonlands with
+    the following setup (chip_config):
+
+    1000-nor        - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
+
+    Changing the EBC configuration to not release the bus into high
+    impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1
+    in EBC0_CFG) seems to fix this problem. I haven't seen any failure
+    anymore with this patch applied.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: David Mitchell <dmitchell@amcc.com>
+    Cc: Jeff Mann <MannJ@embeddedplanet.com>
+
+commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Thu Oct 29 12:29:37 2009 +0100
+
+    ARM: Use Linux version for unaligned access code
+
+    The asm-arm/unaligned.h includes linux/unaligned/access_ok.h
+    This file is unsafe to be used on ARM, since it does an unaligned memory
+    accesses which fails on ARM.
+
+    Lookin at Linux the basic difference seems to be the header
+    "include/asm-arm/unaligned.h". The Linux version of "unaligned.h"
+    does *not* include "access_ok.h" at all. It includes "le_byteshift.h"
+    and "be_byteshift.h" instead.
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    --
+     include/asm-arm/unaligned.h           |    3 -
+     include/linux/unaligned/be_byteshift.h |  70 +++++++++++++++++++++++++++++++++
+     include/linux/unaligned/le_byteshift.h |  70 +++++++++++++++++++++++++++++++++
+     3 files changed, 142 insertions(+), 1 deletion(-)
+     create mode 100644 include/linux/unaligned/be_byteshift.h
+     create mode 100644 include/linux/unaligned/le_byteshift.h
+
+commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Nov 4 18:02:10 2009 -0600
+
+    ppc/85xx: Fix inclusion of 83xx immap in 85xx builds
+
+    The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should
+    not be including the immap_83xx.h when building 85xx.  We can just get
+    this all from common.h
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 107b579c75256212d4bf8b99ee8d68e0078f3646
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Wed Nov 4 17:34:04 2009 -0600
+
+    86xx: Remove redundant code in initdram
+
+    The same code exists both inside an #ifdef and outside of it.
+    Remove the extra code for all the 86xx boards.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 715d8f7608f77c93f1807a032644893fd5b6d08b
+Author: Ed Swarthout <Ed.Swarthout@freescale.com>
+Date:  Mon Nov 2 09:05:49 2009 -0600
+
+    fsl_pci_init_port end-point initialization is broken
+
+    commit 70ed869e broke fsl pcie end-point initialization.
+    Returning 0 is not correct.  The function must return the first free
+    bus number for the next controller.
+
+    fsl_pci_init() must still be called and a bus allocated even if the
+    controller is an end-point.
+
+    Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
+    Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 01471d538fb163f472a769f21267d7676c91267c
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Nov 4 01:29:04 2009 -0600
+
+    Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support"
+
+    This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc.
+
+    There isn't any need to modify the API for fsl_pci_init_port to pass the
+    status of host/agent(end-point) status.  We can determine that
+    internally to fsl_pci_init_port.  Revert the patch that makes the API
+    change.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ff88229549e08fdd3f9127c1cc4db11a3576250f
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Sat Oct 31 07:59:55 2009 +0800
+
+    ppc/85xx: Fix misc L2 cache enabling bug
+
+    We need loop-check the flash clear lock and enable bit for L2 cache.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 59434fe243962758742af5cb8e2ced976e17c302
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Fri Oct 30 10:16:27 2009 +0900
+
+    sh: Update lowlevel_init.S of espt-giga
+
+    There was the point that did not use write macro.
+    Change to write macro.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit f1cae1969d9e971fb72827a5731ce7e752464aa2
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Fri Oct 30 10:01:25 2009 +0900
+
+    sh: Move some defs to convince 'pcrel too far'
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com>
+
+commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Thu Oct 15 13:36:34 2009 +0900
+
+    sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
+
+    By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
+    (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
+    malloc_bin_reloc function. This commit remove this.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 0775437293a6963cb21244dfae6978cbf67c6bfe
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Wed Oct 21 21:53:39 2009 -0700
+
+    Fix DM9000 MAC address handling
+
+    Proper behavior is to pull MAC address from NVRAM in the initialization() an
+    stuff it in dev->address, then program the device from dev->address in
+    the init() function.
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Oct 28 22:07:56 2009 +0100
+
+    sbc8349: fix incorrect comment
+
+    The comment for the BR0_PRELIM port size initialization incorrectly
+    stated 32 bit, while it's actually 16 bit. The code is correct.
+
+    Reported-by: Guenter Koellner <guenter.koellner@nsn.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a38f85e180a30b6225808828ded1017b1a5418c6
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Wed Oct 28 11:05:03 2009 -0400
+
+    Fix Compliation warning for TNY-A9260 and TNY-A9G20
+
+    The patch fixes a compilation warning by defining
+    CONFIG_SYS_64BIT_VSPRINTF in the config file
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 264e42ee54f1d322805d9068168fd362b413fd09
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Wed Oct 28 11:04:53 2009 -0400
+
+    Fix Compliation warning for SBC35-A9G20 board
+
+    The patch fixes a compilation warning by defining
+    CONFIG_SYS_64BIT_VSPRINTF in the config file
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 353462f6ff9769091fb644d44d8025f20a4192d9
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Wed Oct 28 09:37:33 2009 -0500
+
+    galaxy5200: Add default environment variables
+
+    Extend bootdelay to 10 seconds.  Set boot retry time to 120 seconds and use
+    reset to retry.  Define default bootcommand and bootargs for production.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit fa36ae790eb10ce70935f9a78f07703719dca422
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Oct 27 15:15:55 2009 +0100
+
+    cfi: Add weak default function for flash_cmd_reset()
+
+    Currently the CFI driver issues both AMD and Intel reset commands.
+    This is because the driver doesn't know yet which chips are connected.
+    This dual reset seems to cause problems with the M29W128G chips as
+    reported by Richard Retanubun. This patch now introduces a weak default
+    function for the CFI reset command, still with both resets. This can
+    be overridden by a board specific version if necessary.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com>
+
+commit 4946775c6db52dba28f72ba3525764b54f1d4593
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Oct 28 00:49:47 2009 +0100
+
+    Coding Style cleanup; update CHANGELOG, prepare -rc1
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 246c69225c7b962d5c93e92282b78ca9fc5fefee
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Oct 25 15:12:56 2009 -0500
+
+    Add 'editenv' command
+
+    The editenv command can be used to edit an environment variable.
+    Editing an environment variable is useful when one wants to tweak an
+    existing variable, for example fix a typo or change the baudrate in the
+    'bootargs' environment variable.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b0fa8e50632a628766db23f5c884ec63f1469552
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Oct 25 15:12:55 2009 -0500
+
+    setenv(): Delete 0-length environment variables
+
+    Previously setenv() would only delete an environment variable if it
+    was passed a NULL string pointer as a value.  It should also delete an
+    environment variable when it encounters a valid string pointer of
+    0-length.
+
+    This change/fix is generally useful and is necessary for the upcoming
+    "editenv" command.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit ecc5500ee487170d8af6ff893fd1e0082380a01a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Oct 25 15:12:54 2009 -0500
+
+    readline(): Add ability to modify a string buffer
+
+    If the 'buf' parameter is a non-0-length string, its contents will be
+    edited.  Previously, the initial contents of 'buf' were ignored and the
+    user entered its contents from scratch.
+
+    This change is necessary to support the upcoming "editenv" command but
+    could also be used for future commands which require a user to modify
+    an existing string.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit f923943843cd617d681387e7fe81a48060cc6401
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Oct 25 15:12:53 2009 -0500
+
+    cread_line(): Remove unused variables
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Oct 25 15:12:52 2009 -0500
+
+    Check for NULL prompt in readline_into_buffer()
+
+    Previously, passing readline() or readline_into_buffer() a NULL 'prompt'
+    parameter would result in puts() printing garbage when
+    CONFIG_CMDLINE_EDITING was enabled.
+
+    Note that no board currently triggers this bug.  Enabling
+    CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in
+    the bug appearing. This change is only intended to prevent someone
+    from running into this issue in the future.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Oct 25 23:00:09 2009 +0100
+
+    drivers/net/phy/miiphybb.c: fix warning: no newline at end of file
+
+    Add missing newline.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com>
+    Cc: Ben Warren <biggerbadderben@gmail.com>
+
+commit a747a7f31059b9069e97c78bba5496409c33aa05
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Oct 27 00:03:32 2009 +0100
+
+    Revert "env: only build env_embedded and envcrc when needed"
+
+    Breaks building on many boards, and no really clean fix available yet.
+
+    This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
+
+commit 3fca80375981fe83d4674a0267183b469a1ea7ff
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:16 2009 +0400
+
+    mpc85xx: Configure QE USB for MPC8569E-MDS boards
+
+    Setup QE pin multiplexing for USB function, configure needed BCSRs
+    and add some fdt fixups.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:13 2009 +0400
+
+    mpc85xx: Configure QE UART for MPC8569E-MDS boards
+
+    To make QE UART usable by Linux we should setup pin multiplexing
+    and turn UCC2 Ethernet node into UCC2 QE UART node.
+
+    Also, QE UART is mutually exclusive with UART0, so we can't enable
+    it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype
+    board with eSDHC in 1- or 4-bits mode.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 70d665b1d230b9575a647948e8db3da1e6743e5c
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:11 2009 +0400
+
+    mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards
+
+    SPI Flash (M25P40) is connected to the SPI1 bus, we need a few
+    qe_iop entries to actually enable SPI1 on these boards.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:09 2009 +0400
+
+    mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards
+
+    This patch sets memory window for Serial RapidIO on MPC8569E-MDS
+    boards.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a29155e12286cc5ec2df72c1cab28e3659bfdad5
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:08 2009 +0400
+
+    mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards
+
+    Simply add some defines, and adjust TLBe setup to include some
+    space for eLBC NAND.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7f52ed5ef1b490da282ace3316be381a6abf96a5
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:06 2009 +0400
+
+    mpc85xx: Add eSDHC support for MPC8569E-MDS boards
+
+    eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2
+    (in 1-bit mode). When eSDHC is used, we should switch u-boot console to
+    UART1, and make the proper device-tree fixups.
+
+    Because of an erratum in prototype boards it is impossible to use eSDHC
+    without disabling UART0 (which makes it quite easy to 'brick' the board
+    by simply issung 'setenv hwconfig esdhc', and not able to interact with
+    U-Boot anylonger).
+
+    So, but default we assume that the board is a prototype, which is a most
+    safe assumption. There is no way to determine board revision from a
+    register, so we use hwconfig.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 48618126f78f05042dae428811809b594f747eb9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Oct 23 15:55:48 2009 -0500
+
+    xpedite5370: Enable multi-core support
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Oct 23 15:55:47 2009 -0500
+
+    85xx: MP Boot Page Translation update
+
+    This change has 3 goals:
+    - Have secondary cores be released into spin loops at their 'true'
+      address in SDRAM.  Previously, secondary cores were put into spin
+      loops in the 0xfffffxxx address range which required that boot page
+      translation was always enabled while cores were in their spin loops.
+
+    - Allow the TLB window that the primary core uses to access the
+      secondary cores boot page to be placed at any address.  Previously, a
+      TLB window at 0xfffff000 was always used to access the seconary cores'
+      boot page.  This TLB address requirement overlapped with other
+      peripherals on some boards (eg XPedite5370).  By default, the boot
+      page TLB will still use the 0xfffffxxx address range, but this can be
+      overridden on a board-by-board basis by defining a custom
+      CONFIG_BPTR_VIRT_ADDR.  Note that the TLB used to map the boot page
+      remains in use while U-Boot executes.  Previously it was only
+      temporarily used, then restored to its initial value.
+
+    - Allow Boot Page Translation to be disabled on bootup.  Previously,
+      Boot Page Translation was always left enabled after secondary cores
+      were brought out of reset.  This caused the 0xfffffxxx address range
+      to somewhat "magically" be translated to an address in SDRAM.  Some
+      boards may not want this oddity in their memory map, so defining
+      CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after
+      the secondary cores are initialized.
+
+    These changes are only applicable to 85xx boards with CONFIG_MP defined.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Tue Oct 27 12:18:55 2009 +0530
+
+    ppc/85xx/pci: fsl_pci_init: pcie agent mode support
+
+    Originally written by Jason Jin and Mingkai Hu for mpc8536.
+
+    When QorIQ based board is configured as a PCIe agent, then unlock/enable
+    inbound PCI configuration cycles and init a 4K inbound memory window;
+    so that a PCIe host can access the PCIe agents SDRAM at address 0x0
+
+    * Supported in fsl_pci_init_port() after adding pcie_ep as a param
+    * Revamped copyright in drivers/pci/fsl_pci_init.c
+    * Mods in 85xx based board specific pci init after this change
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Tue Oct 27 09:36:38 2009 +0530
+
+    85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 924024c396761c267b948f38d78e9905f2036501
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Tue Oct 27 09:26:55 2009 +0530
+
+    85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB.
+
+    The data being modified was in NOR flash which caused the crash.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf
+Author: Sergey Mironov <ierton@gmail.com>
+Date:  Wed Sep 23 16:47:38 2009 +0400
+
+    Fix bug in jumptable call stubs for SPARC.
+
+    Signed-off-by: Sergey Mironov <ierton@gmail.com>
+    Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
+
+commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Oct 15 17:47:04 2009 +0400
+
+    fdt_support: Add multi-serial support for stdout fixup
+
+    Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX
+    constant. With multi-serial support, the CONS_INDEX may no longer
+    represent actual console, so we should try to extract port number
+    from the current stdio device name instead of always hard-coding the
+    constant value.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Gerald Van Baren <vanbaren@cideas.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit da0e5f7ee828f246d85997486fff308837069453
+Author: Leon Woestenberg <leon.woestenberg@gmail.com>
+Date:  Mon Oct 26 10:03:32 2009 +0100
+
+    ppc/85xx: Fix crashes due to generation of SPE instruction
+
+    U-Boot crashed on the last instruction:
+
+    int parse_stream_outer(struct in_str *inp, int flag)
+    {
+    effa4784:      94 21 ff 38     stwu    r1,-200(r1)
+    effa4788:      7c 08 02 a6     mflr    r0
+    effa478c:      42 9f 00 05     bcl-    20,4*cr7+so,effa4790 <parse_stream_outer+0xc>
+    effa4790:      7d 80 00 26     mfcr    r12
+    effa4794:      13 c1 b3 21     evstdd  r30,176(r1)
+
+    ...which is a  SPE instruction, although -mno-spe was used.
+
+    tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version
+    powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3
+
+    Seems to be a known issue (since 2008-04?!)
+
+    Googled some, turns out this patch/workaround works for me on MPC8536DS.
+
+    See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info
+
+    Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 654ea1f3184235694306ddc5874baa27ad3018fe
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Thu Oct 22 00:10:23 2009 -0500
+
+    ppc/85xx: Make L2 support more robust
+
+    According the user manual, we need loop-check the L2 enable bit set.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Oct 26 21:21:25 2009 -0500
+
+    ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c
+
+    nand_boot.c: In function 'board_init_f':
+    nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Oct 26 21:18:33 2009 -0500
+
+    ppc/85xx: Fix building NAND_SPL out of tree
+
+    We need to source files to exist in the O=<FOO> nand_spl dir when
+    we build out of tree.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Fri Oct 23 10:52:38 2009 +0200
+
+    License cleanup: Fix license header for some esd display configurations
+
+    These files were autogenerated by EPSON configuration tools.
+    This patch replaces the autogenerated file headers by the GPL
+    license notice.
+
+    This change is done with the explicit permission
+    of Epson Research & Development / IC Software Development.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+
+commit 4166ee58d30ada7b298b9c941067f0341c2dccbe
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Oct 9 17:12:44 2009 -0400
+
+    sf: add GPL-2 license info
+
+    Some of the new spi flash files were missing explicit license lines.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit d535a493004fb701f131b132402a7704f9c9342d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Oct 21 23:29:51 2009 -0500
+
+    fdt: Fix fdt padding issue for initrd mem_rsv
+
+    Its possible that we end up with a device tree that happens to be a
+    particular size that after we call fdt_resize() we don't have any
+    space left for the initrd mem_rsv.
+
+    Fix this be adding a second mem_rsv into the size calculation.  We
+    had one to cover the fdt itself and we have the potential of adding
+    a second for the initrd.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Gerald Van Baren <vanbaren@cideas.com>
+
+commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e
+Author: Steve Sakoman <sakoman@gmail.com>
+Date:  Tue Oct 20 18:21:18 2009 +0200
+
+    ARM: OMAP3: Refactors the SM911x driver
+
+    Move the test up in the function to not hang on systems without ethernet.
+
+    Signed-off-by: Steve Sakoman <sakoman@gmail.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit f3807374787e4394efb767e2e8527887f57e51b8
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Oct 15 11:19:15 2009 +0900
+
+    s5pc1xx: SMDKC100: fix compile warnings
+
+    fix the following compile warnings
+    warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 8003c361deec3ee651451662efd05352f1abdd40
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Oct 6 08:44:22 2009 +0200
+
+    arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
+
+    U-boot for Marvell Kirkwood boards no longer work after the EABI changes
+    introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
+    turns out to be caused by a stack alignment issue. The armv5te
+    instructions ldrd/strd instructions require 8-byte alignment to work
+    properly (otherwise undefined behavior).
+
+    Tested on an OpenRD base board, where both printouts and ubifs stuff now
+    works.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit e63e5904b48528f3f3cc98317df6fc62fab25bf9
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sat Oct 17 12:41:06 2009 -0500
+
+    TI OMAP3 SDP3430: Initial Support
+
+    Start of support of
+    Texas Instruments Software Development Platform(SDP)
+    for OMAP3430 - SDP3430
+
+    Highlights of this platform are:
+    Flash Memory devices:
+       Sibley NOR, Micron 8bit NAND and OneNAND
+    Connectivity:
+       3 UARTs and expanded 4 UART ports + IrDA
+       Ethernet, USB
+    Other peripherals:
+       TWL5030 PMIC+Audio+Keypad
+       VGA display
+    Expansion ports:
+       Memory devices plugin boards (PISMO)
+       Connectivity board for GPS,WLAN etc.
+    Completely configurable boot sequence and device mapping
+    etc.
+
+    Support default jumpering and:
+     - UART1/ttyS0 console(legacy sdp3430 u-boot)
+     - UART3/ttyS2 console (matching other boards,
+                and SDP HW docs)
+     - Ethernet
+     - mmc0
+     - NOR boot
+
+    Currently the UART1 is enabled by default. for
+    compatibility with other OMAP3 u-boot platforms,
+    enable the #define of CONSOLE_J9.
+
+    Conflicts:
+
+       Makefile
+
+    Fixed the conflict with smdkc100_config by moving omap_sdp3430_config
+    to it is alphabetically sorted location above zoom1.
+
+    Signed-off-by: David Brownell <david-b@pacbell.net>
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Oct 13 19:35:11 2009 -0400
+
+    TI DaVinci: Adding Copyright for DM365 EVM
+
+    Forgot to add Copyright while submitting the patch.
+    This patch adds the copyright.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Oct 13 12:32:32 2009 -0400
+
+    TI DaVinci: Fix DM6467 EVM Compilation Warning
+
+    Due to new TI boards being added to U-Boot, the hardware.h
+    is getting very messy. The warning being fixed is due to
+    the EMIF addresses being redefined.
+
+    The long term solution(after 2009.11) to this is to
+    have SOC specific header files.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit fac1ef4ba685606bf28349d18e050ea08b50e669
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Oct 13 12:01:52 2009 -0400
+
+    TI DaVinci: DM355 Leopard: Fix compilation warning
+
+    We get a compliation warning when we enable the NAND driver
+    for DM355 leopard. The waring we get is that we have
+    an implicit declaration of davinci_nand_init.
+
+    It is fixed by including the asm/arch/nand_defs.h header file
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit f8a812aa656bc34622303a26fa5003d19c34aeed
+Author: Nishanth Menon <nm@ti.com>
+Date:  Tue Oct 13 12:49:55 2009 -0400
+
+    TI OMAP3: make gpmc_config as const
+
+    gpmc_config should not be a variant as it is board specific
+    hence make it a const parameter
+
+    Fixes issues identified by Dirk:
+    - build issue for zoom2
+    - warnings for all other OMAP3 platforms using nand/onenand etc
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+
+commit cfc25874624a328f53ad59b1206e2103f2e62d74
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Oct 19 16:19:36 2009 +0200
+
+    ppc4xx: Sequoia: Add chip_config command
+
+    This patch removes the Sequoia "bootstrap" command and replaces it
+    with the now common command "chip_config".
+
+    Please note that the patches with the dynamic PCI sync clock
+    configuration have to be applied, before this one should go in.
+    This is because Sequoia has 2 different bootstrap EEPROMs, and
+    the old bootstrap command configured different values depending
+    on the detected PCI async clock (33 vs. 66MHz). With the PCI sync
+    clock patches, this is not necessary anymore. The PCI sync clock
+    will be configured correctly on-the-fly now.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c85b58397030e25e146ccf5085c86221c40c53b3
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Oct 19 14:14:08 2009 +0200
+
+    ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock
+
+    This patch now uses the 440EP(x)/GR(x) function to check and dynamically
+    reconfigure the PCI sync clock.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Oct 19 14:10:50 2009 +0200
+
+    ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock
+
+    This patch now uses the 440EP(x)/GR(x) function to check and dynamically
+    reconfigure the PCI sync clock.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 08c6a2628478ace808b3767db17e4148cac5a7fb
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Oct 19 14:44:11 2009 +0200
+
+    ppc4xx: Print PCI synchronous clock frequency upon bootup
+
+    Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal
+    synchronous PCI clock. Knowledge about the currently configured
+    value might be helpful. So let's print it out upon bootup.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Oct 19 14:06:23 2009 +0200
+
+    ppc4xx: Add function to check and dynamically change PCI sync clock
+
+    PPC440EP(x)/PPC440GR(x):
+    In asynchronous PCI mode, the synchronous PCI clock must meet
+    certain requirements. The following equation describes the
+    relationship that must be maintained between the asynchronous PCI
+    clock and synchronous PCI clock. Select an appropriate PCI:PLB
+    ratio to maintain the relationship:
+
+    AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
+
+    This patch now adds a function to check and reconfigure the sync
+    PCI clock to meet this requirement. This is in preparation for
+    some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this
+    function to not violate the PCI clocking rules.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 92b8964bed0d1b779d9e26be4e16755b5c635415
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Oct 16 10:01:09 2009 +0200
+
+    ppc4xx: Update flash size in reg property of the NOR flash node
+
+    Till now only the ranges in the ebc node are updated with the values
+    currently configured in the PPC4xx EBC controller. With this patch now
+    the NOR flash size is updated in the device tree blob as well. This is
+    done by scanning the compatible nodes "cfi-flash" and "jedec-flash"
+    for the correct chip select number.
+
+    This size fixup is enabled for all AMCC eval board right now. Other
+    4xx boards may want to enable it as well, if this problem with multiple
+    NOR FLASH sizes exists.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Wolfgang Denk <wd@denx.de>
+
+commit 30d45c0d3ea2231f9131276ea113595959a0720e
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Oct 21 11:59:52 2009 +0200
+
+    fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb
+
+    This function can be used to update the size in the "reg" property
+    of the NOR FLASH device nodes. This is necessary for boards with
+    non-fixed NOR FLASH sizes.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Gerald Van Baren <vanbaren@cideas.com>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit 76706cb86b1c76954ff5353db6757ab99cfd95fb
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Oct 20 23:12:13 2009 +0200
+
+    cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
+
+    strcpy() was iused with the target address being a pointer to a
+    constant string, which potentially is read-only. Use a (writable)
+    array of characters instead.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 0e1ac981194aa0d92eff0934442cec48a4f57834
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Oct 20 23:07:04 2009 +0200
+
+    cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
+
+    strcpy() was iused with the target address being a pointer to a
+    constant string, which potentially is read-only. Use a (writable)
+    array of characters instead.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c55096c084308c08bf8891c190f90bdc3a232394
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Wed Apr 8 13:23:38 2009 +0200
+
+    smc911x: add support for LAN9220
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+    Cc: Sascha Hauer <s.hauer@pengutronix.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit f67066b6b0740b826ed862615c5ab022aaf4779a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 18 20:43:14 2009 -0400
+
+    envcrc: check return value of fwrite()
+
+    Newer toolchains will often complain about unchecked fwrite():
+       envcrc.c:117: warning: ignoring return value of `fwrite´, declared
+               with attribute warn_unused_result
+
+    So check the return value to silence the warnings.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit efd988ebaa241bab265b1511052350207cb7aaa0
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Oct 19 09:18:57 2009 +0200
+
+    mcc200: fix build error
+
+    Fix compile error:
+    include/configs/mcc200.h:401:6: error: #elif with no expression
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4e0539d2696992a5e32643a0c831e870cfe9a036
+Author: Nishanth Menon <nm@ti.com>
+Date:  Tue Oct 13 12:47:39 2009 -0400
+
+    OMAP3: fix warnings when NAND/ONENAND is not used
+
+    Fix build warnings by putting specific used variables
+    under required #ifdefs for removing:
+    mem.c:227: warning: unused variable 'f_sec'
+    mem.c:226: warning: unused variable 'f_off'
+    mem.c:225: warning: unused variable 'size'
+    mem.c:224: warning: unused variable 'base'
+    mem.c:222: warning: unused variable 'gpmc_config'
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+
+commit 73db0c71da365a2d101878ae3aeb8ff3545a1828
+Author: Nishanth Menon <nm@ti.com>
+Date:  Tue Oct 13 12:47:24 2009 -0400
+
+    OMAP3: export enable_gpmc_cs_config to board files
+
+    Export enable_gpmc_cs_config into common header to
+    prevent warning:
+
+    warning: implicit declaration of function 'enable_gpmc_cs_config'
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+
+commit 96a27c6dc29abf11740632ecd8ccab607b209c5d
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Mon Oct 12 12:07:40 2009 -0400
+
+    Zoom2 Fix serial gpmc setup
+
+    The offset to the chip select is incorrect.
+
+    The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e,
+
+    omap3: embedd gpmc_cs into gpmc config struct
+
+    introduced a problem with the serial gpmc setup.
+
+    This patch reverts the chip select to its previous value.
+
+    The symptoms of this problem are that the Zoom2
+    currently hangs.
+
+    This was run tested on Zoom2.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sun Oct 11 09:10:27 2009 -0400
+
+    TI DaVinci Sonata: Add Config option for 64 bit Support
+
+    Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata
+    Without this option enabled while performing NAND operations we will get
+    wrong diagnostic messages.
+    Example if the MTD NAND driver find a bad block while erasing from
+    a certain address, it will say bad block skipped at 0x00000000.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sun Oct 11 09:14:58 2009 -0400
+
+    TI DaVinci DVEVM: Add Config option for 64 bit Support
+
+    Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config.
+    Without this option enabled while performing NAND operations we will get
+    wrong diagnostic messages.
+    Example if the MTD NAND driver find a bad block while erasing from
+    a certain address, it will say bad block skipped at 0x00000000.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit b8d0aa0c78b8c0fa51acada3c486b81085924b53
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Oct 10 10:19:20 2009 -0400
+
+    TI DaVinci DM365: Add Config option for 64 bit Support
+
+    Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
+    Without this option enabled while performing NAND operations we will get
+    wrong diagnostic messages.
+    Example if the MTD NAND driver find a bad block while erasing from
+    a certain address, it will say bad block skipped at 0x00000000.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Oct 10 10:18:46 2009 -0400
+
+    TI DaVinci DM355: Add Config option for 64 bit Support
+
+    Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config.
+    Without this option enabled while performing NAND operations we will get
+    wrong diagnostic messages.
+    Example if the MTD NAND driver find a bad block while erasing from
+    a certain address, it will say bad block skipped at 0x00000000.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Wed Sep 9 11:50:40 2009 -0400
+
+    TI: OMAP3: Remove SZ_xx references
+
+    This patch removes dependency on the sizes.h header file
+    and removes all references to SZ_xx.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63
+Author: Steve Sakoman <sakoman@gmail.com>
+Date:  Sat Oct 10 14:29:37 2009 -0400
+
+    OMAP3: Update Overo and Beagle environment
+
+    Update default environment to support new kernel DSS2 subsystem and
+    simplify rootfs type and location changes.
+
+    Signed-off-by: Steve Sakoman <sakoman@gmail.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit c73607c5525c6957c815e64f7e865fdd3baffe98
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Oct 10 13:46:26 2009 -0400
+
+    TI DaVinci: Maintainer for DM355 and DM365 EVM
+
+    Adding entries to the MAINTAINERS directory for the
+    DM355 and DM365 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Oct 10 13:37:10 2009 -0400
+
+    TI: DaVinci: DM355 Leopard board support
+
+    This patch adds support for the leopard board which is
+    based on the DM355 SOC.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Oct 10 12:00:47 2009 -0400
+
+    TI DaVinci DM646x: Adding initial support for DM6467 EVM
+
+    This patch adds the initial support for DM6467 EVM.
+    Other features like NET and NAND support will be added as follow up patches.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit d884f64a7b8482f6c9688600e0a4731fa5678e0c
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Thu Oct 1 20:22:09 2009 -0400
+
+    TI DaVinci DM365: Fix Compilation warning for DM365 EVM
+
+    This patch fixes a compilation warning while compiling
+    the DM365 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 6fe5e87be4b944edf428835210056e020c8bb794
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Thu Oct 1 20:21:13 2009 -0400
+
+    TI DaVinci DM355: Fix Compilation warning for DM355 EVM
+
+    This patch fixes a compilation warning while compiling
+    the DM355 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb
+Author: Eric Benard <eric@eukrea.com>
+Date:  Mon Oct 12 10:15:39 2009 +0200
+
+    AT91 CPUAT91 Fix compiler warning
+
+    This change fixes the compiler warning
+
+    main.c: In function 'abortboot':
+    main.c:122: warning: too few arguments for format
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit b1e81f701d044eee3884202b127d5d1f0668bdb9
+Author: Eric Benard <eric@eukrea.com>
+Date:  Mon Oct 12 10:15:40 2009 +0200
+
+    AT91 CPU9260 CPU9G20 Fix compile warnings
+
+    This change fixes the compiler warning
+
+    nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF
+      for correct output!
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 94d50c527a3cedb6a41fbe6773256cdd1855317f
+Author: Eric Benard <eric@eukrea.com>
+Date:  Mon Oct 12 10:08:20 2009 +0200
+
+    AT91 CPU9260 Fix machine ID when using a CPU9G20.
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 8c0a92c8f4cf399e873c2611939f3617983785a9
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Sat Oct 10 11:51:26 2009 +0200
+
+    lcd: remove '#if 0' 32-bit scroll, now memcpy does it
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+
+commit e3ea948d4588e7efddbf0ee92147d93f827d7cea
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Sat Oct 10 11:51:16 2009 +0200
+
+    lib_generic memset: fill one word at a time if possible
+
+    If the destination is aligned, fill ulong values until possible.
+    Then fill remaining part by byte.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Sat Oct 10 11:51:05 2009 +0200
+
+    lib_generic memcpy: copy one word at a time if possible
+
+    If source and destination are aligned, this copies ulong values
+    until possible, trailing part is copied by byte. Thanks for the details
+    to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9c5586aa19bbedf290d2a663813404d2db87dfa5
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Thu Oct 8 14:29:14 2009 +0200
+
+    setenv: do console redirection even if previously unset
+
+    If "stdout" is not previously set, doing "setenv stdout lcd" had no
+    effect, since console redirection only worked if the environment
+    variable was already set; the second time you run setenv it worked.
+    Most default environments lack stdin/out/err definitions, so I'm sure
+    I'm not alone with this problem.
+
+    This patch simply moves a block of code out of a conditional, to do
+    the same work even if the variable was previously unset.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+
+commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43
+Author: Martha Stan <mmarx@silicontkx.com>
+Date:  Wed Oct 7 04:38:46 2009 -0400
+
+    mpc512x: fix System Clock Control constants for USB1 & USB2
+
+    Signer-off-by: Martha Stan <mmarx@silicontkx.com>
+
+commit 87b22b7787f397fc3daad570d711e478b1a7d253
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Oct 2 18:18:33 2009 -0400
+
+    mem_mtest: fix error reporting, allow escape with ^C
+
+    The basic memtest function tries to watch for ^C after each
+    pattern pass as an escape mechanism, but if things are horribly
+    wrong, we'll be stuck in an inner loop flooding the console with
+    error messages and never check for ^C.  To make matters worse,
+    if the user waits for all the error messages to complete, we
+    then incorrectly report the test passed without errors.
+
+    Adding a check for ^C after any error is printed will give
+    the end user an escape mechanism from a console flood without
+    slowing down the overall test speed on a slow processor.
+
+    Also, the more extensive memtest quit after just a single error,
+    which is inconsistent with the normal memtest, and not useful if
+    if you are doing dynamic environmental impact testing, such as
+    heating/cooling etc.
+
+    Both tests now track the error count and report it properly
+    at test completion.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9f4a420663419dc13f08a0ce65b93033c6172c69
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Oct 1 12:11:54 2009 -0400
+
+    new default shortcut to config & build a board
+
+    The majority of the time that I build things in U-Boot, I want to just
+    build for the board.  I don't make board config tweaks after selecting the
+    board.  So add a new pattern rule that allows people to combine two steps
+    in one go:
+       `make foo_config && make` => `make foo`
+
+    This shouldn't conflict with any existing make rules as the pattern rule
+    is used only the rule doesn't already exist.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6dab6add2d8ee80905234b326abc3de11be1d178
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 30 15:29:58 2009 -0400
+
+    env: only build env_embedded and envcrc when needed
+
+    The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
+    compile the code when this isn't defined is pointless.  Now that the env
+    headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
+    system to only build the env objects when this is enabled. And now that
+    the env code is conditionally compiled, we can drop the source code checks.
+
+    For people who want to extract the environment manually, add a new option
+    CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 78f4ca7976748159080c9d920d5eb542d1b32d4f
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Mon Sep 28 11:40:38 2009 +0200
+
+    part_dos: check status flags of partitions
+
+    Only read partitions which have 0x00 or 0x80 set in their status field.
+    All others are invalid.
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+
+commit 45def0ab9d1dedcd2a73939aad8373f760498762
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Fri Sep 25 17:47:43 2009 -0500
+
+    galaxy5200: change cs1 configuration
+
+    Correct the chip select configuration for the nand flash chip select.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d
+Author: Niklaus Giger <niklaus.giger@netstal.com>
+Date:  Wed Sep 23 08:12:14 2009 +0200
+
+    Cleanup: use constant
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
+
+commit 7120c888101952b7e61b9e54bb42370904aa0e68
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Oct 12 11:06:19 2009 -0500
+
+    mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage)
+
+    mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
+    h/w (see AN3545).  The base device tree in use has rev. 1 ID numbers,
+    so if on Rev. 2 (and higher) h/w, we fix them up here.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Reviewed-by: Roland Lezuo <roland.lezuo@chello.at>
+
+commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Mon Oct 12 23:55:39 2009 +0400
+
+    mpc85xx: Fix booting on various boards
+
+    commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed
+    CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards,
+    namely the ones that call get_sys_info() from board_early_init_f().
+
+    get_sys_info() calls cpu_numcores(), which depends on probecpu()
+    being called before. But probecpu() is called after board_early_init_f(),
+    and so cpu_numcores() returns random values, which in turn crashes
+    get_sys_info().
+
+    To fix the issue we place probecpu() before board_early_init_f()
+    in an initialization sequence.
+
+    Booting on the following boards should be revived now:
+     mpc8540ads
+     mpc8541cds
+     mpc8548cds
+     mpc8555cds
+     mpc8560ads
+     mpc8568mds
+     mpc8569mds
+     and maybe more.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 26df6aa9916443077139f8f008fbc5f414ba05e5
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Oct 2 18:48:07 2009 -0400
+
+    mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define
+
+    This is an orphaned legacy leftover that is just polluting
+    the config file namespace.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fad15096e3b34927444ba5f6133742d40d78a425
+Author: Dipen Dudhat <dipen.dudhat@freescale.com>
+Date:  Thu Oct 8 13:33:29 2009 +0530
+
+    ppc/P1_P2_RDB: On-chip BootROM support
+
+    On Chip BootROM support for P1 and P2 series RDB platforms.
+
+    This patch is derived from latest On Chip BootROM support on MPC8536DS
+
+    Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f7780ec977e545b83bc5068e0957d640f1d98f13
+Author: Dipen Dudhat <dipen.dudhat@freescale.com>
+Date:  Thu Oct 8 13:33:18 2009 +0530
+
+    ppc/P1_P2_RDB: NAND Boot Support
+
+    NAND Boot support for P1 and P2 series RDB platforms.
+
+    This patch is derived from NAND Boot support on MPC8536DS.
+
+    Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d11823ca3cb551814ffcd926402c8bcf3a7eff35
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Wed Oct 7 16:34:28 2009 -0400
+
+    mpc8xxx: improve LAW error messages when setting up DDR
+
+    When setting up the LAWs for the DDR, if there was an error,
+    you got the not-so-helpful error text "ERROR" and nothing
+    else.  Not only is it non-informative, but it is also
+    pretty frustrating trying to grep for "ERROR" in the source.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Wed Sep 30 16:12:31 2009 -0400
+
+    sbc8641d: fix LAW so board doesn't hang on DDR init
+
+    All versions between now and since this commit:
+
+      commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
+      MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
+
+    will fail to allow the SBC8641D to get past DDR init, because the
+    LAW config was overlapping.  Eventually this board will do SPD
+    EEPROM config, but for now this gets the board working again.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3d1988ab47cc0e265272967e07d747ec600a44c9
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Sat Oct 10 13:34:09 2009 +0900
+
+    Clean-up of s3c24x0 nand driver
+
+    This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes
+    to add support for the Embest SBC2440-II Board.
+
+    The changes are as follows:
+    - re-indent the code using Lindent
+    - make sure register layouts are defined using a C struct
+    - replace the upper-case typedef'ed C struct names with lower case
+    non-typedef'ed ones
+    - make sure registers are accessed using the proper accessor functions
+    - run checkpatch.pl and fix any error reports
+
+    It assumes the following patch has been applied first:
+    - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
+     - patches 1/4, 2/4 and 3/4 of this series
+
+    Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
+    any s3c2400 or s3c2410 boards but need this patch applying before I can submit
+    patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
+    smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
+    board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
+    errors were found.
+
+    Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Sat Oct 10 13:33:11 2009 +0900
+
+    Clean-up of s3c24x0 drivers excluding nand driver
+
+    This patch re-formats the arm920t s3c24x0 driver files, excluding the nand
+    driver, in preparation for changes to add support for the Embest SBC2440-II Board.
+
+    The changes are as follows:
+    - re-indent the code using Lindent
+    - make sure register layouts are defined using a C struct
+    - replace the upper-case typedef'ed C struct names with lower case
+      non-typedef'ed ones
+    - make sure registers are accessed using the proper accessor functions
+    - run checkpatch.pl and fix any error reports
+
+    It assumes the following patch has been applied first:
+    - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
+    - patches 1/4 and 2/4 of this series
+
+    Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
+    any s3c2400 or s3c2410 boards but need this patch applying before I can submit
+    patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
+    smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
+    board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
+    errors were found.
+
+    Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 8250d0bae84229abea397f6b474b3556b0f04e80
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Sat Oct 10 13:32:01 2009 +0900
+
+    Clean-up of s3c24x0 header files
+
+    This patch re-formats the arm920t s3c24x0 header files in preparation for
+    changes to add support for the Embest SBC2440-II Board.
+
+    The changes are as follows:
+    - re-indent the code using Lindent
+    - make sure register layouts are defined using a C struct
+    - replace the upper-case typedef'ed C struct names with lower case
+    non-typedef'ed ones
+    - make sure registers are accessed using the proper accessor functions
+    - run checkpatch.pl and fix any error reports
+
+    It assumes the following patch has been applied first:
+    - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
+    - patch 1/4 of this series
+
+    Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
+    any s3c2400 or s3c2410 boards but need this patch applying before I can submit
+    patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
+    smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
+    board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
+    errors were found.
+
+    Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Sat Oct 10 13:30:22 2009 +0900
+
+    Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
+
+    This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in
+    preparation for changes to add support for the Embest SBC2440-II Board.
+
+    The changes are as follows:
+    - re-indent the code using Lindent
+    - make sure register layouts are defined using a C struct
+    - replace the upper-case typedef'ed C struct names with lower case
+      non-typedef'ed ones
+    - make sure registers are accessed using the proper accessor functions
+    - run checkpatch.pl and fix any error reports
+
+    It assumes the following patch has been applied first:
+    - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
+
+    Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
+    any s3c2400 or s3c2410 boards but need this patch applying before I can submit
+    patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no
+    new warnings or errors were found.
+
+    Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Sun Sep 6 00:33:13 2009 +0900
+
+    CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
+
+    This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and
+    s3c2410 cpu's which fixes various problems such as the timeouts in tftp being
+    too short.
+
+    Tested on an Embest SBC2440-II Board with local u-boot patches as I don't
+    have any s3c2400 or s3c2410 boards but need this patch applying before I can
+    submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets
+    and no new warnings or errors were found.
+
+    It was originally submitted on 21/06/2009 but didn't get into the 2009.08
+    release, and Jean-Pierre made one comment on the original patch (see
+    http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two
+    changes to the original patch:
+    - it's been re-based to the current release
+    - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment
+
+    This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it
+    directly to the maintainers of all except the sbc2410 which doesn't have an
+    entry in MAINTAINERS.
+
+    Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain>
+    Tested-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Oct 1 17:20:40 2009 +0900
+
+    s5pc1xx: add support SMDKC100 board
+
+    Adds new board SMDKC100 that uses s5pc100 SoC
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+    Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
+
+commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Oct 1 17:20:28 2009 +0900
+
+    s5pc1xx: support serial driver
+
+    This patch includes the serial driver for s5pc1xx.
+    s5pc1xx uart driver needs own register setting and clock configuration.
+    So, need to special driver.
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 4678d674f0cacc983dca7f6b9933cd8291c9797c
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Oct 1 17:20:08 2009 +0900
+
+    s5pc1xx: support onenand driver
+
+    This patch includes the onenand driver for s5pc100
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 399e5ae0d0b2eb4663fc5784201968c07d45afac
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Oct 1 17:20:01 2009 +0900
+
+    s5pc1xx: support Samsung s5pc1xx SoC
+
+    This patch adds support for the Samsung s5pc100 and s5pc110
+    SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor.
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+    Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
+
+commit d087d19a994e741f0ce526124be117c90be482ae
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Oct 13 21:58:26 2009 -0400
+
+    Blackfin: drop MAC display at boot
+
+    The default Blackfin boot would display the MAC address for the first NIC,
+    but this relies on the environment.  The current net multi stack no longer
+    writes the default hardware settings to the environment, so most of the
+    time the display shows all zeros.  This can be pretty confusing and really
+    doesn't add anything useful, so just drop it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1f003cf4738a199d99c818124784058526d2d40e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Oct 9 02:24:33 2009 -0400
+
+    Blackfin: reset watchdog in udelay()
+
+    All arches apparently should reset the watchdog in their udelay loop as
+    noted on the mailing list recently:
+
+      > A comment in flash_status_check() suggests that udelay() is
+      > expected to reset the watchdog, but I can't find any architecture
+      > where it does.
+
+      If this is missing in other architectures, it should be fixed at the
+      root cause, i. e. in udelay() or in the respective support routines.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 370ec734557d0b0f266e6d0953229ee12cae5edd
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Oct 9 02:22:11 2009 -0400
+
+    Blackfin: Remove relocation fixups
+
+    Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0
+Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+Date:  Tue Sep 29 08:03:12 2009 +0200
+
+    at91: Update MEESC board support
+
+    This patch implements several updates:
+    -disable CONFIG_ENV_OVERWRITE
+    -add new hardware style variants and set the arch numbers appropriate
+    -pass the serial# and hardware revision to the kernel
+    -removed unused macros from include/configs/meesc.h
+    -fixed multiline comment style
+
+    Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+
+commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70
+Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
+Date:  Thu Oct 1 19:41:50 2009 +0530
+
+    arm: Correct build with CONFIG_SYS_HUSH_PARSER set
+
+    FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit df3826262c0efd2baec4df23d44b3942af98f5a7
+Author: Olof Johansson <olof@lixom.net>
+Date:  Tue Sep 29 10:22:45 2009 -0400
+
+    TI: OMAP3: Overo Tobi ethernet support
+
+    Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded
+    over tftp.
+
+    This also refactors the smc911x driver to allow for detecting when the
+    chip is missing. I.e. the detect_chip() function is called earlier and
+    will abort gracefully when the Chip ID read returns all 1's.
+
+    Signed-off-by: Olof Johansson <olof@lixom.net>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a
+Author: Olof Johansson <olof@lixom.net>
+Date:  Tue Sep 29 10:21:29 2009 -0400
+
+    SMC911X: Add chip auto detection
+
+    Refactor the smc911x driver to allow for detecting when the chip is missing.
+    I.e. the detect_chip() function is called earlier and will abort gracefully
+    when the Chip ID read returns all 1's.
+
+    Signed-off-by: Olof Johansson <olof@lixom.net>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Tue Sep 29 10:19:49 2009 -0400
+
+    TI OMAP3 Use arm init sequence to initialize i2c
+
+    This changes fixes an early i2c error.
+
+    It appears that I2C is working because once a read or write
+    error is detected, the omap24xx_i2c driver calls i2c_init
+    inside its error handling check.
+
+    While it is ok to attempt error handling this way, the boards
+    must not depend on this side effect to initialize it's i2c.
+
+    Instead of explicitly calling i2c_init for every board, use
+    the generic arm initialization in lib_arm/board.c. By defining
+    the config variable CONFIG_HARD_I2C, the omap3 i2c initialization
+    is included in the init_sequence table.
+
+    Run tested on Beagle.
+    Compile tested on the omap3's
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 4df30f3bb7285b2c962713a5c693c16fd90885e0
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Sep 29 09:43:04 2009 -0400
+
+    TI: DaVinci DM365: Enabling network Support on DM365 EVM
+
+    This patch enables EMAC on the DM365 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Acked-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Sep 29 10:02:38 2009 -0400
+
+    TI: DaVinci: GPIO header file and definitions
+
+    Some DaVinci SOC's use GPIOs to enable EMAC and DM9000.
+    This patch adds some definitions for GPIO registers and also adds
+    structures for GPIO.
+    A separate header file is being added so that in future we
+    can have a DaVinci GPIO driver similer to OMAP.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Acked-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 95ae803afbdd9f673c94b992ea624a10d252afc2
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Fri Sep 18 17:30:05 2009 -0400
+
+    TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
+
+    In the DaVinci specific code, we use both CONFIG_SOC_DM646X and
+    CONFIG_SOC_DM646x to represent DM646x specific code.
+    This patch changes occurrences of CONFIG_SOC_DM646x to
+    CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use
+    the flag CONFIG_SOC_DM644X. We want some uniformity.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Acked-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit fc9165fdb3b021aa8ff02417692220fe9344072b
+Author: Olof Johansson <olof@lixom.net>
+Date:  Mon Sep 28 08:19:30 2009 -0400
+
+    OMAP3: Clean up whitespace in mux configs
+
+    Switch from space-based indentation to tab-based in mux configs, as pointed
+    out by WD at:
+
+    http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
+
+    Nothing but whitespace changes in this patch (diff -w gives no output).
+
+    Signed-off-by: Olof Johansson <olof@lixom.net>
+
+commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Mon Sep 28 08:17:50 2009 -0400
+
+    OMAP3 MMC: Fix warning dereferencing type-punned pointer
+
+    Fix warning
+    Dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    CC: Steve Sakoman <sakoman@gmail.com>
+    Acked-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit e92daeb5c2050438402b87c7d614e8a13c294348
+Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
+Date:  Tue Sep 22 04:01:01 2009 +0530
+
+    Support for the OpenRD base board
+
+    The implementation is borrowed from the sheevaplug board and the Marvell
+    1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit a62e78fc444c67f958be48891bef3dab0e9eb285
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 21 20:15:17 2009 +0530
+
+    Kirkwood: mv88f6281gtw_ge: Add kwbimage build support
+
+    This patch adds kwbimage configuration file
+    (used by mkimage utility)
+    to support u-boot.kwb target on mv88f6281gtw_ge board.
+
+    To create Kirkwood boot image to be flashed on SPI Flash,
+    additional parameter u-boot.kwb need to be passed during make.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 5bc7cbc15b1890682c0b279f708914518bd25f8d
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 21 18:23:11 2009 +0530
+
+    Kirkwood: rd6281a: Add kwbimage build support
+
+    This patch adds kwbimage configuration file
+    (used by mkimage utility)
+    to support u-boot.kwb target on rd6281a platform.
+
+    To create Kirkwood boot image to be flashed on NAND,
+    additional parameter u-boot.kwb need to be passed during make.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Sep 27 11:10:09 2009 -0500
+
+    Add support for Eukrea CPU9260/CPU9G20 SBC
+
+    these boards are built around Atmel's AT91SAM9260/9G20 and have
+    up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND
+    and include a 10/100 Ethernet PHY in RMII mode.
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit d8380c9d35e88759c96e68a03738446ca0cb292f
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Sep 27 07:47:24 2009 -0500
+
+    Add support for Eukrea CPUAT91 SBC
+
+    CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR
+    flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII
+    mode.
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit eb95aa15e644c29b01832703aa4964fe419170f0
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Mon Sep 14 14:57:47 2009 -0400
+
+    TI: DaVinci DM365: Minor config cleanup
+
+    The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag.
+    This is already included when we include the
+    config_cmd_default.h header file. So this flag is removed.
+    Also another flag to enable NAND functions was being
+    enabled incorrectly.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Mon Sep 14 15:03:06 2009 -0400
+
+    TI DaVinci DM365: Removing header file which does not exist
+
+    The DaVinci DM365 EVM board specific code was including a header file
+    which does not exist. So removing this header file.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 409ec37bd8ae8822d276e77419d899571891b191
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Sep 8 18:08:06 2009 -0400
+
+    TI DaVinci: DM355: Config Cleanup and Update
+
+    This patch does the following
+    1) Enables the NAND driver which is now available.
+    2) Enables the 'CONFIG_MTD_DEVICE' as without this the
+    compilation will fail
+    3) We now have a safe place to store environment and defines
+    an offset where this can be stored. This offset value is such that it is after
+    the location where U-Boot is flashed using TI flash utilities.
+    4) Enables Bootdelay
+    5) Increases malloc() arena size. Manufacturers are coming out with
+    NAND with large blocks sizes of upto 1 MiB. It has been noticed that
+    as the block size of the NAND used is increased, if this particular
+    value is not increased, the NAND driver will output out of memory
+    errors.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 7908c97a106765ad8816bf2271a5bf315728b274
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Sep 8 11:37:39 2009 -0400
+
+    TI DaVinci: DM646x: Initial Support for DM646x SOC
+
+    DM646x is an SOC from TI which has both an ARM and a DSP.
+    There are multiple variants of the SOC mainly dealing with different
+    core speeds.
+    This patch adds the initial framework for the DM646x SOC.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Wed Sep 9 15:26:00 2009 -0400
+
+    TI DaVinci: DM6446: Fix Compilation error in NAND mode
+
+    The Default mode that is built for the Davinci DVEVM happens
+    to be the NOR mode.
+    When we want to build for the NAND mode, we get a compilation
+    error. This is overcome by defining the CONFIG_MTD_DEVICE
+    flag in the NAND mode.
+    The image built for NAND mode was successfully tested on the
+    DaVinci DM6446 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Thu Sep 10 15:27:57 2009 -0400
+
+    OMAP3 Move cache routine to cache.S
+
+    v7_flush_dcache_all, because it depends on omap ROM code is not
+    generic.  Rename the function to 'invalidate_dcache' and move it
+    to the omap cpu directory.
+
+    Collect the other omap cache routines l2_cache_enable and
+    l2_cache_disable with invalide_dcache into cache.S.  This
+    means removing the old cache.c file that contained l2_cache_enable
+    and l2_cache_disable.
+
+    The conversion from cache.c to cache.S was done most through
+    disassembling the uboot binary.  The only significant change was
+    to change the comparision for the return of get_cpu_rev from
+
+       cmp     r0, #0
+       beq     earlier_than_label
+
+    Which was lost information to
+
+       cmp     r0, #CPU_3XX_ES20
+       blt     earlier_than_label
+
+    The paths through the enable routine were verified by
+    adding an infinite loop and seeing the hang.  Then
+    removing the infinite loop and seeing it continue.
+
+    The disable routine is similar enough that it was not
+    tested with this method.
+
+    Run tested by cold booting from nand on beagle and zoom1.
+    Compile tested on MAKEALL arm.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit a16df2c11188297eca43cf6080c70fb69b960232
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Sep 8 17:09:52 2009 -0400
+
+    TI DaVinci: Remove references to SZ_xx
+
+    This patch removes the asm/sizes.h header file from being
+    included in the DaVinci SOC configs.
+    References to SZ_xx have been replaced by appropriate
+    bit shifted values.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit 285870f75378aca41c5063e4358ad93bf3014fd8
+Author: Ed Swarthout <Ed.Swarthout@freescale.com>
+Date:  Thu Oct 9 01:27:18 2008 -0500
+
+    Leave x86emu op code tables in default section
+
+    Forcing the tables into got2 caused extra relocation when using -mrelocatable.
+    This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable.
+
+    Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
+    Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com>
+
+commit be2254423b86572841aa70ff05d20933d1b49823
+Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+Date:  Sat Oct 10 12:42:22 2009 +0200
+
+    Update all board to support new bbmiiphy driver (with multibus support)
+
+    Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 310cecb8ccdbc8a9be580e75b2fd362179d78535
+Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+Date:  Sat Oct 10 12:42:21 2009 +0200
+
+    Add bb_miiphy_init call before any ethernet bring-up code.
+
+    Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0
+Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+Date:  Sat Oct 10 12:42:20 2009 +0200
+
+    Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
+
+    This feature is useful when your board uses different mii buses for different
+    phys and all (or a part) of these buses are implemented via bit-banging mode.
+
+    The driver requires that the following macros should be defined into the board
+    configuration file:
+
+    CONFIG_BITBANGMII      - Enable the miiphybb driver
+    CONFIG_BITBANGMII_MULTI - Enable the multi bus support
+
+    If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
+    to define at least the following macros:
+
+    MII_INIT     - Generic code to enable the MII bus (optional)
+    MDIO_DECLARE  - Declaration needed to access to the MDIO pin (optional)
+    MDIO_ACTIVE   - Activate the MDIO pin as out pin
+    MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
+    MDIO_READ    - Read the MDIO pin
+    MDIO(v)      - Write v on the MDIO pin
+    MDC_DECLARE   - Declaration needed to access to the MDC pin (optional)
+    MDC(v)       - Write v on the MDC pin
+
+    The previous macros make the driver compatible with the previous version
+    (that didn't support the multi-bus).
+
+    When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
+    the bb_miiphy_buses[] array with a record for each required bus and declare
+    the bb_miiphy_buses_num variable with the number of mii buses.
+    The record (struct bb_miiphy_bus) has the following fields/callbacks (see
+    miiphy.h for details):
+
+    char name[]                   - The symbolic name that must be equal to the MII bus
+                            registered name
+    int (*init)()         - Initialization function called at startup time (just
+                            before the Ethernet initialization)
+    int (*mdio_active)()   - Activate the MDIO pin as output
+    int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
+    int (*set_mdio)()     - Write the MDIO pin
+    int (*get_mdio)()     - Read the MDIO pin
+    int (*set_mdc)()      - Write the MDC pin
+    int (*delay)()        - Delay function
+    void *priv            - Private data used by board specific code
+
+    The board code will look like:
+
+    struct bb_miiphy_bus bb_miiphy_buses[] = {
+     { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
+     { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
+     ...
+    int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
+                             sizeof(bb_miiphy_buses[0]);
+
+    Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Oct 2 18:54:20 2009 -0400
+
+    mpc83xx: cosmetic comment update relating to SPD EEPROM
+
+    commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big
+    rename of CFG_ macros to CONFIG_SYS macros.  But it missed
+    a couple of instances within comments.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit afc3ba0fc4195624e79e21244380ed7cc2fd6969
+Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+Date:  Thu Oct 8 02:03:51 2009 +0200
+
+    relocation: Do not relocate NULL pointers.
+
+    NULL is an absolute value and should not be relocated.
+    After this correction code like:
+     void weak_fun(void) __attribute__((weak));
+     printf("weak_fun:%p\n", weak_fun);
+    will still print null after relocation.
+
+    Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+
+commit 3beb40c2473f0dd373231c723d88c51e46ad96f7
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Oct 7 11:45:00 2009 -0500
+
+    85xx: Ensure BSS segment isn't linked at address 0
+
+    When U-Boot is relocated from flash to RAM pointers are modified
+    accordingly.  However, pointers initialzed with NULL values should not
+    be modified so that they maintain their intended NULL value.  If the
+    BSS segment is linked at address 0 its address will not be
+    updated as necessary during relocation.
+
+    This is a temporary workaround.  The end goal is to add support to
+    U-Boot to dynamically locate the BSS at an arbitrary address at
+    runtime.  When the ability to fixup the BSS inteligently is
+    added, this workaround can be removed and the 85xx link script
+    can put the BSS at a fixed address at link time.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed Oct 7 16:38:05 2009 +0200
+
+    tqm5200: Correct comment and code in post_hotkeys_pressed.
+
+    This fixes the code and the comment according to the original intent of
+    doing an intensive memory test when PSC6_3 is pulled low on the STK52xx.
+    Notably PORT_CONFIG will be overridden with this correct code now,
+    so beware.
+
+    The original code only worked by coincidence depending on the PORT_CONFIG
+    setting from the header file.  The new code was tested to ensure that the
+    (undocumented) memory test still works on the STK52x.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    CC: Martin Krause <Martin.Krause@tqs.de>
+
+    Minor white-space cleanup.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit da01f53404f99db185d196867af79371725d4683
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Oct 4 22:56:08 2009 +0200
+
+    mpc512x: fix fixed_sdram() init code.
+
+    Commit 054197ba and later fixes used an array to initialize some of
+    the MDDRC parameters; however, the use of an array turned out to be a
+    bad idea as it was not possible to correlate structure entries to
+    array indices in readable and reliable way. Now we use a struct
+    instead, which makes this self-explanatory.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit dbcc357166bed20df13450e93a501f30b197efd1
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Sun Oct 4 20:04:22 2009 +0200
+
+    ppc4xx: respect 80-chars per line in ppc*.h files
+
+    After running checkstyle.pl on the three previous patches I noted that in
+    the *.h files there were a lot of long lines. This patch solves this problem.
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 78d2a641371ec71cc3786b167a318c7b115fbb90
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Sun Oct 4 20:04:21 2009 +0200
+
+    ppc4xx: Rework cmd reginfo
+
+    The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
+    relevant HW configuration registers (address, symbolic name, content).
+    This allows to easily detect errors in *.h files and changes in the HW
+    configuration.
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Sun Oct 4 20:04:20 2009 +0200
+
+    ppc_4xx: Apply new HW register names
+
+    Modify all existing *.c files to use the new register names
+    as seen in the AMCC manuals.
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Sun Oct 4 20:04:19 2009 +0200
+
+    ppc4xx: Cleanup some HW register names
+
+    Here you find all the changes in the include directory for new register names
+    and adapting other ones to the names used by AMCC in their manuals, e.g.
+    For 440EPx/GRPPC440EPx/GRX, Revision 1.15 â€“ September 22, 2008
+    For PPC405GP Embedded Processor, Revision 1.02 â€“ March 22, 2006
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 56f14818f66c68a8b9e45925f29ceb974405ad48
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Oct 6 07:21:08 2009 +0200
+
+    ppc4xx: Add PPC405EX(r) Rev D support
+
+    Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older
+    405EX(r) parts. Here a list:
+
+    0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec
+    0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec
+
+    Since there are only a few older parts in the field, this patch now
+    changes the PVR's above to represent the new Rev D versions.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Phong Vo" <pvo@amcc.com>
+
+commit 06dfaeef52a5f773ae4292432e3c74ff52ead316
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Oct 2 14:35:16 2009 +0200
+
+    ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
+
+    This message is printed upon PCIe bus scan, not only upon error, but also
+    if no PCIe device is detected at all. Since this is not an error, let's
+    remove this message in this case. We already have the message
+    "link is not up." if there is no PCIe device present.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84
+Author: Mike Nuss <mike@terascala.com>
+Date:  Mon Oct 5 12:33:28 2009 -0400
+
+    PPC4xx: Denali core: Fix incorrect DDR row bits
+
+    The SPD detection code for the Denali memory controller used on some
+    ppc4xx
+    processors incorrectly encodes DDR0_42. With certain memory
+    configurations,
+    this can cause the bootwrapper to incorrectly calculate the installed
+    memory
+    size, because the number of row bits is wrong. This patch fixes that
+    encoding.
+
+    Signed-off-by: Mike Nuss <mike@terascala.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Oct 5 00:02:51 2009 -0700
+
+    Add information about return values of xxx_eth_register() in documentation
+
+    As discussed on mailing list, <0 indicates failure, >=0 indicates number
+    of interfaces found.
+
+    Also added blurb about private data
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 9 14:41:22 2009 -0400
+
+    document network driver framework
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit aba8237257dd15b0e76cc517f0e741c0908ee0b9
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Wed Sep 9 15:59:19 2009 +0530
+
+    net: kirkwood_egiga.c: fixed build warning
+
+    if link up detection code is disabled through config option, it gives build warning.
+    This patch fixes the same
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 7194ab809532eeca3e2ee5dc12017cb901cc5842
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Sun Oct 4 22:37:03 2009 -0700
+
+    Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API
+
+    All in-tree boards that use this controller have CONFIG_NET_MULTI
+    added
+    Also:
+      - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111
+      - cleaned up line lengths
+      - modified all boards that override weak function in this driver
+      - modified all eeprom standalone apps to work with new driver
+      - updated blackfin standalone EEPROM app after testing
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 21 20:28:18 2009 +0530
+
+    net: phy: mv88e61xx.c : fixed build warning
+
+    following build warning was observed
+
+    mv88e61xx.c: In function â€˜mv88e61xx_busychk’:
+    mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    This patch fixes the same
+    Patch tested for rd6281a board build
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit c0b46d8ead3c6c5b569c83544fd71b9d73356869
+Author: James Clough <james@rtetc.com>
+Date:  Thu Sep 10 09:11:50 2009 +0200
+
+    net: Fix problem with 405EZ ethernet interrupt
+
+    On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the
+    UIC. We need to acknowledge the RX-/TX-interrupts in the
+    SDR0_ICINTSTAT reg as well.
+
+    This problem was introduced with commit
+    d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines]
+
+    Signed-off-by: James Clough <james@rtetc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 91b469c95faf92435e3d5d78292ba78075a3c5ca
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 2 04:18:55 2009 -0400
+
+    net: add random_port() prototype
+
+    The random_port() is meant to be used by other net code, but without a
+    prototype, we get fun warnings like:
+    dns.c: In function 'DnsSend':
+    dns.c:89: warning: implicit declaration of function 'random_port'
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:37 2009 -0500
+
+    ppc: Remove reloc_off field from global_data structure
+
+    Now that proper relocation is supported, the reloc_off field is no longer
+    necessary.
+
+    Note that the location of the standalone application jump table pointer
+    in the global data structure is affected by this change, breaking
+    execution of standalone applications compiled for previous versions of
+    U-Boot.
+
+    We therefore increment XF_VERSION to 6
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 0630535e2d062dd73c1ceca5c6125c86d1127a49
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Sep 22 09:27:55 2009 -0500
+
+    arm/microblaze/nios/nios2/sh: Remove relocation fixups
+
+    These architectures don't need relocation fixups, so reduce their
+    codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS.
+
+    Also remove the reloc_off field from their global data structures
+    as it is no longer needed.
+
+    Note that the location of the standalone application jump table pointer
+    in the global data structure is affected by this change, breaking
+    execution of standalone applications compiled for previous versions of
+    U-Boot. We will therefore increment XF_VERSION in the next commit,
+    which also touches this area.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 521af04d853361b49344b61892eb0618f9f713c5
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:36 2009 -0500
+
+    Conditionally perform common relocation fixups
+
+    Add #ifdefs where necessary to not perform relocation fixups.  This
+    allows boards/architectures which support relocation to trim a decent
+    chunk of code.
+
+    Note that this patch doesn't add #ifdefs to architecture-specific code
+    which does not support relocation.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:35 2009 -0500
+
+    p3mx: Remove serial relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 80f73b92a19129854876ec3f1aef531a09e86d2d
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:34 2009 -0500
+
+    lwmon, lwmon5: Remove sysmon POST relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:33 2009 -0500
+
+    mpl: Remove memory test relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 6385b28116f775da4771b768ba9bf93c3aaaf26e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:32 2009 -0500
+
+    fpga: Remove relocation fixups
+
+    PPC boards are the only users of the current FPGA code which is littered
+    with manual relocation fixups.  Now that proper relocation is supported
+    for PPC boards, remove FPGA manual relocation.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit cd1011db80287eef933d1599b74cff1116c93134
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:31 2009 -0500
+
+    tsec: Remove PHY command relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b5650c5d8c99100144d8e4e9af910405f857bb7a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:30 2009 -0500
+
+    ppc: Remove board-specific command table relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e6b05e774d7ce1641613cdeffb69c1d48139a869
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:29 2009 -0500
+
+    ppc: Remove extable relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b32a894011b1436758905fa10e6a03b8539c43c9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:28 2009 -0500
+
+    ppc: Remove pci config table pointer relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a0e2066f392782730f0398095e583c87812d97f2
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:27 2009 -0500
+
+    ppc: Remove board.c relocation fixups
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 244615197469dd6fe75ae082f38424b97c79aeaf
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:26 2009 -0500
+
+    ppc: Check for compilers that don't support relocation
+
+    Certain ppc compilers are known not to generate the .fixup section
+    properly.  The .fixup section is necessary to create a relocatable
+    U-Boot image.  A basic check for the existence of the .fixup section
+    should hopefully catch the majority of broken compilers which don't
+    support relocation.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 858290178f222d998b6425d85cf06822467918f3
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 11:20:25 2009 -0500
+
+    ppc: Enable full relocation to RAM
+
+    The following changes allow U-Boot to fully relocate from flash to
+    RAM:
+     - Remove linker scripts' .fixup sections from the .text section
+     - Add -mrelocatable to PLATFORM_RELFLAGS for all boards
+     - Define CONFIG_RELOC_FIXUP_WORKS for all boards
+
+    Previously, U-Boot would partially relocate, but statically initialized
+    pointers needed to be manually relocated.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Sep 30 11:55:04 2009 +0200
+
+    ppc4xx: Add SDRAM detection for PMC440 boards
+
+    This patch adds support to detect the amount of DDR2 SDRAM
+    on PMC440 modules. Detection is done by probing through
+    a list of available and supported hardware configurations
+    from 1GByte down to 256MB.
+
+    The static TLB entry is replaced by dynamically created entries.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit fb95169e39f2d03270bed552d27bbb02627a443e
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Sep 28 17:33:45 2009 +0200
+
+    ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling
+
+    This patch merges the ECC handling (ECC parity byte writing) into one
+    file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx.
+    This exception is because only those PPC's use the completely different
+    Denali SDRAM controller core.
+
+    Previously we had two routines to generate/write the ECC parity bytes.
+    With this patch we now only have one core function left.
+
+    Tested on Kilauea (no ECC) and Katmai (with and without ECC).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Felix Radensky <felix@embedded-sol.com>
+    Cc: Grant Erickson <gerickson@nuovations.com>
+    Cc: Pieter Voorthuijsen <pv@prodrive.nl>
+
+commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba
+Author: Felix Radensky <felix@embedded-sol.com>
+Date:  Sun Sep 27 23:56:12 2009 +0200
+
+    ppc4xx: Reorganize DDR2 ECC handling
+
+    Reorganize DDR2 ECC handling to use common code for
+    SPD DIMMs and soldered SDRAM. Also, use common code
+    to display SDRAM info (ECC, CAS latency) for SPD and
+    soldered SDRAM variants.
+
+    Signed-off-by: Felix Radensky <felix@embedded-sol.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 46a887949e11d2cddb91e17ca47e73341d71a379
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 30 03:09:16 2009 -0400
+
+    Blackfin: update default console= settings
+
+    The Linux kernel has changed the way it numbers serial ports, so update
+    the default command line to match it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4c5f307d58604dea001cccf388aa077a902ab0a5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Sep 21 18:04:49 2009 -0400
+
+    Blackfin: bf533-ezkit: update env location
+
+    The u-boot image has outgrown the current space and overflowed into the
+    env sector.  So move the env to the next available sector (we've already
+    allocated the first few sectors anyways for u-boot).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Sep 30 08:39:44 2009 -0500
+
+    ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
+
+    Don't include get_law_entry as part of the NAND_SPL build since the
+    code isnt used.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 693a048d8ac191181f5b9adbff642d3f1bbd479f
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Wed Sep 23 15:20:39 2009 +0800
+
+    Add README.mpc8536ds
+
+    Add boot from NAND/eSDHC/eSPI description
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e40ac4870c6e72302044e98338322f45c34435bd
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Wed Sep 23 15:20:38 2009 +0800
+
+    On-chip ROM boot: MPC8536DS support
+
+    The MPC8536E is capable of booting from the on-chip ROM - boot from
+    eSDHC and boot from eSPI. When power on, the porcessor excutes the
+    ROM code to initialize the eSPI/eSDHC controller, and loads the mian
+    U-Boot image from the memory device that interfaced to the controller,
+    such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
+    L2SRAM, then boot from it.
+
+    The memory device should contain a specific data structure with control
+    word and config word at the fixed address. The config word direct the
+    process how to config the memory device, and the control word direct
+    the processor where to find the image on the memory device, or where
+    copy the main image to. The user can use any method to store the data
+    structure to the memory device, only if store it on the assigned address.
+
+    The on-chip ROM code will map the whole 4GB address space by setting
+    entry0 in the TLB1, so the main image need to switch to Address space 1
+    to disable this mapping and map the address space again.
+
+    This patch implements loading the mian U-Boot image into L2SRAM, so
+    the image can configure the system memory by using SPD EEPROM.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Wed Sep 23 15:20:37 2009 +0800
+
+    NAND boot: MPC8536DS support
+
+    MPC8536E can support booting from NAND flash which uses the
+    image u-boot-nand.bin. This image contains two parts: a 4K
+    NAND loader and a main U-Boot image. The former is appended
+    to the latter to produce u-boot-nand.bin. The 4K NAND loader
+    includes the corresponding nand_spl directory, along with the
+    code twisted by CONFIG_NAND_SPL. The main U-Boot image just
+    like a general U-Boot image except the parts that included by
+    CONFIG_SYS_RAMBOOT.
+
+    When power on, eLBC will automatically load from bank 0 the
+    4K NAND loader into the FCM buffer RAM where CPU can execute
+    the boot code directly. In the first stage, the NAND loader
+    copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
+    then loads the main image from NAND flash to RAM or L2SRAM
+    and boot from it.
+
+    This patch implements the NAND loader to load the main image
+    into L2SRAM, so the main image can configure the RAM by using
+    SPD EEPROM. In the first stage, the NAND loader copies itself
+    to the second to last 4K address space, and uses the last 4K
+    address space as the initial RAM for stack.
+
+    Obviously, the size of L2SRAM shouldn't be less than the size
+    of the image used. If so, the workaround is to generate another
+    image that includes the code to configure the RAM by SPD and
+    load it to L2SRAM first, then relocate the main image to RAM
+    to boot up.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 07355700523203c5f72018712cf0d93683f255c8
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Wed Sep 23 15:19:32 2009 +0800
+
+    mpc8536: fix board config file line length
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit dd9ca98f2600000e5c2744735040100b770650e7
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 25 11:14:11 2009 -0400
+
+    sbc8548: reclaim wasted sector in boot flash
+
+    By nature of being based off the MPC8548CDS board, this
+    board inherited an ENV_SIZE setting of 256k.  But since
+    it has a smaller flash device (8MB soldered on), it has
+    a native sector size of 128k, and hence the ENV_SIZE was
+    causing 2 sectors to be used for the environment.
+
+    By removing the unused sector, we can push TEXT_BASE up
+    closer to the end of address space and reclaim that
+    sector for any other application.  This also fixes the
+    mismatch between TEXT_BASE and MONITOR_LEN reported by
+    Kumar earlier.
+
+    Since this board also supports the ability to boot off
+    the 64MB SODIMM flash, this change is forward looking
+    with that in mind; i.e. the settings for MONITOR_LEN
+    and ENV_SIZE will work when the 512k sectors of the
+    SODIMM flash are used for alternate boot in the future.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 8280912e0657e96a7b7d8da7003656d62b0fd109
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Sep 28 21:38:00 2009 -0500
+
+    ppc/85xx: Clean up immap_85xx.h
+
+    * Converted all white space to tabs
+    * Converted all types to u8/u16/u32
+    * Reduce lines to fit in 80 columns
+    * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Mon Sep 28 16:33:18 2009 -0500
+
+    NAND: davinci: Fix warnings when 4-bit ECC not used
+
+    I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support"
+    applied when I pushed the tree last merge window, and missed these fixes
+    which were in v3 of that patch.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ca6189db484882798f2a35a476c07e618e21f6d3
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Tue Sep 22 09:05:00 2009 +0900
+
+    Refactor OneNAND IPL code
+
+    Refactoring the OneNAND IPL code
+
+    and some minor fixed:
+    - Remove unnecessary header file
+    - Fix wrong access at read interrupt
+    - The recent OneNAND has 4KiB pagesize
+
+    Also Board can override OneNAND IPL image
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit a05e3f9a084fc8951d87745b3a91df246432df7d
+Author: Shinya Kuribayashi <skuribay@pobox.com>
+Date:  Sat Sep 12 18:01:40 2009 +0900
+
+    MIPS: VCT: Remove read_spareram reference
+
+    The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove
+    unused read_spareram and add unlock_all as kernel does) forgot to remove
+    a local reference to read_spareram in board/micronas/vct/ebi_onenand.c,
+    which causes the following build failure when configured with OneNAND:
+
+    ebi_onenand.c: In function 'onenand_board_init':
+    ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram'
+    make[1]: *** [ebi_onenand.o] Error 1
+    make[1]: *** Waiting for unfinished jobs....
+    make: *** [board/micronas/vct/libvct.a] Error 2
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+    Cc: Kyungmin Park <kyungmin.park@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Fri Sep 25 14:05:57 2009 +0200
+
+    ubifs: Correct dereferencing of files-after-symlinks
+
+    Files in directories which are symlinked to were not dereferenced
+    correctly in last commit. E.g., with a symlink
+
+       /boot/lnk -> /boot/real_dir
+
+    loading
+
+       /boot/lnk/uImage
+
+    will fail. This patch fixes that by simply seeing to it that the target
+    base directory has a slash after it.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b306db2f1bf561b5823a655c677fe28cfad80cfb
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Sep 24 14:10:30 2009 +0200
+
+    ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead
+
+    Additionally some whitespace coding style fixes.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Sep 24 13:59:57 2009 +0200
+
+    ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case
+
+    The latest PPC4xx register cleanup patch missed some SDRAM defines.
+    This patch now changes lower case UIC defines to upper case. Also
+    some names are changed to match the naming in the IBM/AMCC users
+    manuals (e.g. mem_mcopt1 -> SDRAM0_CFG).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Sep 24 09:55:50 2009 +0200
+
+    ppc4xx: Convert PPC4xx UIC defines from lower case to upper case
+
+    The latest PPC4xx register cleanup patch missed the UIC defines.
+    This patch now changes lower case UIC defines to upper case.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6
+Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+Date:  Tue Sep 22 13:40:44 2009 +0200
+
+    fsl_i2c: Do not generate STOP after read.
+
+    __i2c_read always ends with a STOP condition thereby releasing
+    the bus. It is cleaner to do the STOP magic in i2c_read(), like
+    i2c_write() does. This may also help future multimaster systems which
+    wants to hold on to the bus until all transactions are finished.
+
+    Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+
+commit 99404202127346b9e91503bbd69deafa18c980c4
+Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+Date:  Thu Sep 17 11:07:17 2009 +0200
+
+    fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR
+
+    The latest AN2919 has changed the way FDR/DFSR should be calculated.
+    Update the driver according to spec. However, Condition 2
+    is not accounted for as it is not clear how to do so.
+
+    Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+    Acked-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit d01ee4db9302cfccaa5c548a1c4e873b415681a0
+Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+Date:  Thu Sep 17 11:07:16 2009 +0200
+
+    fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR}
+
+    Some boards need a higher DFSR value than the spec currently
+    recommends so give these boards the means to define there own.
+
+    For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too.
+
+    Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+
+commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a
+Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+Date:  Thu Sep 17 11:07:15 2009 +0200
+
+    fsl_i2c: Wait for STOP condition to propagate
+
+    After issuing a STOP one must wait until the STOP has completed
+    on the bus before doing something new to the controller.
+
+    Also add an extra read of SR as the manual mentions doing that
+    is a good idea.
+
+    Remove surplus write of CR just before a write, isn't required and
+    could potentially disturb the I2C bus.
+
+    Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+
+commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Sep 25 18:19:44 2009 -0500
+
+    mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields
+
+    some LCRR bits are not documented throughout the 83xx family RMs.
+    New board porters copying similar board configurations might omit
+    setting e.g., DBYP since it was not documented in their SoC's RM.
+
+    Prevent them bricking their board by retaining power on reset values
+    in bit fields that the board porter doesn't explicitly configure
+    via CONFIG_SYS_<registername>_<bitfield> assignments in the board
+    config file.
+
+    also move LCRR assignment to cpu_init_r[am] to help ensure no
+    transactions are being executed via the local bus while CLKDIV is being
+    modified.
+
+    also start to use i/o accessors.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Mon Sep 21 17:44:51 2009 -0400
+
+    sbc8349: tidy up Makefile to use new configuration script.
+
+    Commit 804d83a5 allows us to move all the configuration
+    variation tweaks out of the top level Makefile and down
+    into the board config header.  This takes advantage of
+    that for the sbc8349 board.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 16 23:22:08 2009 +0400
+
+    mpc83xx: mpc8360emds: Add QE USB device tree fixups
+
+    With this patch we can change QE USB mode without need to hand-edit
+    the device tree.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 16 23:21:59 2009 +0400
+
+    mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs
+
+    This patch fixes various ethernet issues with gigabit links handling
+    in U-Boot. The workarounds originally implemented by Kim Phillips for
+    Linux kernel.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 034477bb31948d698d18b84bc0834c3e25a14d04
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 16 23:21:57 2009 +0400
+
+    mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available
+
+    Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds:
+    rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux.
+
+    Though, it appears that QE Ethernet in Gigabit mode can't transmit
+    large packets when it tries to work with a data in LBC SDRAM (memtest
+    didn't discover any issues, is LBC SDRAM just too slow?).
+
+    With this patch we can still use the board without DDR memory, but
+    if DDR is available, we don't use LBC SDRAM.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 16 23:21:55 2009 +0400
+
+    net: uec: Fix uccf.h and uec.h headers to include headers they depend on
+
+    Headers should include headers containing prototypes and defines they
+    depend on, don't assume that they're included by somebody else.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 16 23:21:53 2009 +0400
+
+    net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs
+
+    This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 984f10baac8ef6032df52f135943d6b0bc96f724
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 25 14:16:00 2009 +0200
+
+    mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6e748ea004473cce99fbde6382dd580c10ffdb60
+Author: Ken MacLeod <ken@bitsko.slc.ut.us>
+Date:  Fri Sep 11 15:16:18 2009 -0500
+
+    cmd_fdt.c: fix parse of byte streams and strings
+
+    Commit 4abd844d8e extended the fdt command parser to handle property
+    strings which are split across multiple arguments but it was broken for
+    byte streams and strings.
+
+    Byte stream parsing:
+
+     * Fixes where it would terminate early or go into an endless loop.
+
+     * Fixes a 0x00 being inserted into the data if there is a space after
+       '[' or a separate argument.
+
+     * Fixes dereferencing the argument pointer after the last argument.
+
+     * Checks for bad characters.
+
+    String parsing:
+
+     * Treat multiple arguments as a string list.  This fixes an issue where
+       only the last argument was stored.
+
+    Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us>
+
+commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e
+Author: Heiko Schocher <hs@denx.de>
+Date:  Wed Sep 23 07:56:08 2009 +0200
+
+    mucmc52, uc101: delete ata@3a00 node, if no CF card is detected
+
+    U-Boot can detect if an IDE device is present or not.
+    If not, and this new config option is activated, U-Boot
+    removes the ATA node from the DTS before booting Linux,
+    so the Linux IDE driver does not probe the device and
+    crash. This is needed for buggy hardware (uc101) where
+    no pull down resistor is connected to the signal IDE5V_DD7.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 7f625fc6d3ba8f890e843ac01717804c2462ed53
+Author: Heiko Schocher <hs@denx.de>
+Date:  Wed Sep 23 07:56:04 2009 +0200
+
+    mpc5200, mucmc52, uc101: config cleanup
+
+    - As these boards are similiar, collect common config options
+      in manroland/common.h and manroland/mpc52xx-common.h
+      for mpc5200 specific common options for this manufacturer.
+    - add OF support
+    - update default environment
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+    Minor edit of commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 9d142ea8f787882ab732fa531a34db091bfa363d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 25 00:57:49 2009 +0200
+
+    Fix "ppc/85xx: Clean up use of LAWAR defines" breakage
+
+    Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_
+    defines were only enabled for the 83xx platform, but they are also
+    needed on MPC512x system. Enabling these for E300 systems seems thus
+    more appropriate.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8
+Author: Martha M Stan <mmarx@silicontkx.com>
+Date:  Mon Sep 21 14:08:00 2009 -0400
+
+    Add Elpida Memory Configuration to mpc5121ads Boards
+
+    Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
+
+    Minor coding style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d
+Author: Martha M Stan <mmarx@silicontkx.com>
+Date:  Mon Sep 21 14:07:14 2009 -0400
+
+    mpc512x: Streamlined fixed_sdram() init sequence.
+
+    Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
+
+    Minor cleanup:
+
+    Re-ordered default_mddrc_config[] to have matching indices.
+
+    This allows to use the same index "N" for source and target fields;
+    before, we had code like this
+
+       out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);
+
+    which always looked like a copy & paste error because 2 != 3.
+
+    Also, use NULL when meaning a null pointer.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 19 02:46:19 2009 -0500
+
+    ppc/p4080: Determine various chip frequencies on CoreNet platforms
+
+    The means to determine the core, bus, and DDR frequencies are completely
+    new on CoreNet style platforms.  Additionally on p4080 we can have
+    different frequencies for FMAN and PME IP blocks.  We need to keep track
+    of the FMAN & PME frequencies since they are used for time stamping
+    capabilities inside each block.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 17 01:52:37 2009 -0500
+
+    ppc/p4080: Handle timebase enabling and frequency reporting
+
+    On CoreNet style platforms the timebase frequency is the bus frequency
+    defined by 16 (on PQ3 it is divide by 8).  Also on the CoreNet platforms
+    the core not longer controls the enabling of the timebase. We now need
+    to enable the boot core's timebase via CCSR register writes.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7e4259bba4c56536760e42d32dacfb3233f216fd
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 19 02:39:17 2009 -0500
+
+    ppc/p4080: Add various p4080 related defines (and p4040)
+
+    There are various locations that we have chip specific info:
+
+    * Makefile for which ddr code to build
+    * Added p4080 & p4040 to cpu_type_list and SVR list
+    * Added number of LAWs for p4080
+    * Set CONFIG_MAX_CPUS to 8 for p4080
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 17 01:44:39 2009 -0500
+
+    ppc/p4080: CoreNet platfrom style secondary core release
+
+    The CoreNet platform style of bringing secondary cores out of reset is
+    a bit different that the PQ3 style.  Mostly the registers that we use
+    to setup boot translation, enable time bases, and boot release the cores
+    have moved around.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a880cf3e0e1c220d780eccd0b101170c4499485d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 17 01:44:00 2009 -0500
+
+    ppc/p4080: CoreNet platfrom style CCSRBAR setting
+
+    On CoreNet based platforms the CCSRBAR address is split between an high &
+    low register and we no longer shift the address.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 418ec8584343f04048e2cc7ee96b6b29be54ad97
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 19 02:32:23 2009 -0500
+
+    ppc/p4080: Add support for CoreNet style platform LAWs
+
+    On CoreNet based platforms the LAW address is split between an high &
+    low register and we no longer shift the address.  Also, the target IDs
+    on CoreNet platforms have been completely re-assigned.
+
+    Additionally, added a new find_law() API to which LAW an address hits in.
+    This is need for the CoreNet style boot release code since it will need
+    to determine what the target ID should be set to for boot window
+    translation.
+
+    Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use
+    it elsewhere.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 01df521217957d77d53c2d570183eded7030938f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Sep 16 09:43:12 2009 -0500
+
+    ppc/p4080: Add p4080 platform immap definitions
+
+    The p4080 SoC has a significant amount of commonality with the 85xx/PQ3
+    platform.  We reuse the 85xx immap and just add new definitions for
+    local access and global utils.  The global utils is now broken into
+    global utils, clocking and run control/power management.
+
+    The offsets from CCSR for a number of blocks have also changed.  We
+    introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of
+    platform from the new p4080 platform.  We don't use QoirQ as there are
+    products (like p2020) that are PQ3 based platforms but have the QoirQ
+    name.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 22 15:45:44 2009 -0500
+
+    ppc/85xx: Fix enabling of L2 cache
+
+    We need to flash invalidate the locks in addition to the cache
+    before we enable.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Tue Sep 22 12:48:27 2009 +0530
+
+    85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
+
+    The code assumed names where just numbers and always prefixed 'mpc'.
+    However newer QorIQ don't follow the mpc naming scheme.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 234a89d911ce28e46372f555d7c14e28424f2b0d
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Sep 22 14:53:21 2009 +0800
+
+    ppc/85xx: add cpu init config file for boot from NAND
+
+    When boot from NAND, the NAND flash must be connected to br/or0.
+    Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to
+    it.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 266139b88b43ae1d87abb5f5431e6f57b801795f
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Sep 22 14:53:34 2009 +0800
+
+    immap_85xx: add porpllsr's plat ratio definition
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 098bcbae3172d73d24ca8ba196328d901eed4132
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Sep 22 14:53:10 2009 +0800
+
+    ppc/85xx: add ld script file for boot from NAND
+
+    The first stage 4K image uses a seperate ld script file to
+    generate 4K image. This patch moves it to the cpu/mpc85xx/*
+    to make it avaliable for 85xx platform.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 8439f05cfd8cbb38485376a34d9fe297ba262737
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 23:09:28 2009 -0500
+
+    mpc8610hpcd: Use common 86xx fdt fixup code
+
+    Using the common 86xx fdt fixups removes some board-specific code and
+    should make the mpc8610hpcd easier to maintain in the long run.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 928435d11b898870415910efff87a4d6399cecb8
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Mon Sep 21 17:19:17 2009 -0400
+
+    sbc85x0: tidy up Makefile to use new configuration script.
+
+    Commit 804d83a5 allows us to move all the configuration
+    variation tweaks out of the top level Makefile and down
+    into the boards config header.  This takes advantage of
+    that for the sbc8540/sbc8560 boards.
+
+    There were a couple of cheezy comments pointing at incorrect
+    files, or files that don't exist, so I've cleaned those up too.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2738bc8df65ec905094d83f62f87fed123a03b9c
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:06 2009 -0400
+
+    sbc8548: allow enabling PCI via a make config option
+
+    Prior to this commit, to enable PCI, you had to go manually
+    edit the board config header, and if you had 33MHz PCI, you
+    had to manually change CONFIG_SYS_NS16550_CLK too, which was
+    not real user friendly,
+
+    This adds the typical PCI and clock speed make targets to the
+    toplevel Makefile in accordance with what is being done with
+    other boards (i.e. using the "-t" to mkconfig).
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fdc7eb90b504daa020f290604d50da8f7cb70d8a
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:05 2009 -0400
+
+    sbc8548: update PCI/PCI-e support code
+
+    The PCI/PCI-e support for the sbc8548 was based on an earlier
+    version of what the MPC8548CDS board was using, and in its
+    current state it won't even compile.  This re-syncs it to match
+    the latest codebase and makes use of the new shared PCI functions
+    to reduce board duplication.
+
+    It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O
+    back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and
+    similarly it coalesces the PCI and PCI-e mem into one single TLB.
+
+    Both PCI-x and PCI-e have been tested with intel e1000 cards
+    under linux (with an accompanying dts change in place)
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:01 2009 -0400
+
+    fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
+
+    Recycle the recently added PCI-e wrapper used to reduce board
+    duplication of code by creating a similar version for plain PCI.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:04 2009 -0400
+
+    sbc8548: correct local bus SDRAM size from 64M to 128M
+
+    The size of the LB SDRAM on this board is 128MB, spanning CS3
+    and CS4.  It was previously only being configured for 64MB on
+    CS3, since that was what the original codebase of the MPC8548CDS
+    had.  In addition to setting up BR4/OR4, this also adds the TLB
+    entry for the second half of the SDRAM.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:03 2009 -0400
+
+    sbc8548: use I/O accessors
+
+    Sweep throught the board specific file and replace the various
+    register proddings with the equivalent I/O accessors.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fc38eb98ff226f2c53eecbee033a6ab7619473dc
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Sun Sep 20 20:36:02 2009 -0400
+
+    sbc8548: remove eTSEC3/4 voltage hack
+
+    With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
+    aren't interested in the eTSEC3/4 voltage hack on this board
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9b3ba24f18900633a394416cc056c44a1a6eb754
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 18 19:08:41 2009 -0400
+
+    sbc8548: enable access to second bank of flash
+
+    The sbc8548 has a 64MB SODIMM flash module off of CS6 that
+    previously wasn't enumerated by u-boot.  There were already
+    BR6/OR6 settings for it [used by cpu_init_f()] but there
+    was no TLB entry and it wasn't in the list of flash banks
+    reported to u-boot.
+
+    The location of the 64MB flash is "pulled back" 8MB from
+    a 64MB boundary, in order to allow address space for the
+    8MB boot flash that is at the end of 32 bit address space.
+    This means creating two 4MB TLB entries for the 8MB chunk,
+    and then expanding the original boot flash entry to 64MB
+    in order to cover the 8MB boot flash and the remainder
+    (56MB) of the user flash.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ded58f4153923dfff16d2f96495bd7acf1f7e10e
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Wed Sep 23 17:30:57 2009 -0400
+
+    sbc8548: cosmetic line re-wrap
+
+    Fix the extra long lines to be consistent with u-boot coding style.
+    No functional change here.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+
+commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 18 19:08:40 2009 -0400
+
+    sbc8548: get_clock_freq is not valid for this board
+
+    The get_clock_freq() comes from freescale/common/cadmus.c and is
+    only valid for the CDS based 85xx reference platforms.  It would
+    be nice if we could read the 33 vs. 66MHz status somehow, but in
+    the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other
+    non-CDS boards do.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7b1f1399e876587e0a268a5a471dd444bfbc3114
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 18 19:08:39 2009 -0400
+
+    sbc8548: delete unused MPC8548CDS info carried over from port
+
+    There are a couple defines and PCI bridge quirks related to the PCI
+    backplane of the MPC8548CDS that have no meaning in the context of
+    the port to the sbc8548 board, so delete them.
+
+    Also, the form factor of the sbc8548 is a standalone board with a
+    single PCI-X and a single PCI-e slot.  That pretty much guarantees
+    that it will never be a PCI agent itself, so the host/agent and root
+    complex/end node distinctions have been removed.
+
+    Similarly, since there is no physical connector mapping to PCI2, so
+    all references of PCI2 in the board support files have been removed
+    as well.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 94ca091456d5c3040ddd6351c80cf3e74393f9be
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 18 19:08:44 2009 -0400
+
+    sbc8548: enable use of PCI network cards
+
+    Create a board_eth_init to allow a place to hook in
+    the PCI ethernet init after all the eTSEC are up
+    and configured.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Sat Sep 19 17:50:17 2009 +0530
+
+    ppc/85xx: 32bit DDR changes for P1020/P1011
+
+    The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010
+    where max DDR data width supported is 64bit.
+
+    As a next step the DDR data width initialization would be made more dynamic
+    with more flexibility from the board perspective and user choice.
+    Going forward we would also remove the hardcodings for platforms with onboard
+    memories and try to use the FSL SPD code for DDR initialization.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Sep 18 19:08:46 2009 -0400
+
+    sbc8548: replace README with completely new document
+
+    The previous README.sbc8548 was pretty much content-free. Replace
+    it with something that actually gives the end user some relevant
+    hardware details, and also lists the u-boot configuration choices.
+
+    Also in the cosmetic department, fix the bogus line in the Makefile
+    that was carried over from the SBC8560 Makefile, and the typo in
+    the sbc8548.c copyright.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 002741ae862c1c7e3dad89d020e392e6add1c05d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Sat Sep 19 11:20:54 2009 -0500
+
+    ppc/85xx: Clean up use of LAWAR defines
+
+    On 85xx platforms we shouldn't be using any LAWAR_* defines
+    but using the LAW_* ones provided by fsl-law.h.  Rename any such
+    uses and limit the LAWAR_ to the 83xx platform as the only user so
+    we will get compile errors in the future.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f61dae7c9dc526410faec15ce352b11fc36a560b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 3 10:20:09 2009 -0500
+
+    ppc/85xx: Clean up mpc8572DS PCI setup code
+
+    Use new fsl_pci_init_port() that reduces amount of duplicated code in the
+    board ports, use IO accessors and clean up printing of status info.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 4958af8735207640181c4423e41b24ee7418361a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 3 09:42:01 2009 -0500
+
+    ppc/85xx: Clean up p2020ds PCI setup code
+
+    Use new fsl_pci_init_port() that reduces amount of duplicated code in the
+    board ports, use IO accessors and clean up printing of status info.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 93a83872c707891bad22f7776d79a650c870601f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 3 10:09:04 2009 -0500
+
+    ppc/85xx: Clean up p1_p2_rdb PCI setup
+
+    General code cleanup to use in/out IO accessors as well as making
+    the code that prints out info sane between board and generic fsl pci
+    code.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 62ca21c442e18fec118ec83e183d64ea49966ce7
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 10 16:31:53 2009 -0500
+
+    ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 10 16:26:37 2009 -0500
+
+    ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 10 16:23:45 2009 -0500
+
+    ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0e905ac28b1e039d74e63232293972bff6b5a0ce
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Fri Sep 18 11:45:09 2009 +0800
+
+    ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 202d94875c98b7b573f136c4f353609758ed9733
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 15 22:21:58 2009 -0500
+
+    ppc/85xx: Fix LCRR_CLKDIV defines
+
+    For some reason the CLKDIV field varies between SoC in how it interprets
+    the bit values.
+
+    All 83xx and early (e500v1) PQ3 devices support:
+     clk/2: CLKDIV = 2
+     clk/4: CLKDIV = 4
+     clk/8: CLKDIV = 8
+
+    Newer PQ3 (e500v2) and MPC86xx support:
+     clk/4: CLKDIV = 2
+     clk/8: CLKDIV = 4
+     clk/16: CLKDIV = 8
+
+    Ensure that the MPC86xx and MPC85xx still get the same behavior and make
+    the defines reflect their logical view (not the value of the field).
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 55f786d8ba8ce58a81428536da34a2192b9bad9f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 12:04:33 2009 -0500
+
+    MAKEALL: Use POSIX math
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 40a28f0885e62b6607e12ed6baa6284927f5263e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Sep 21 12:04:32 2009 -0500
+
+    MAKEALL: Add summary information
+
+    This change adds some basic summary information to the MAKEALL script.
+    The summary information includes how many boards were compiled, how many
+    boards had compile warnings or errors, and which specific boards had
+    compile warnings or errors.
+
+    This information is useful when doing compile testing to quickly
+    determine which boards are broken.
+
+    As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
+    Previously, each board had a corresponding $BOARD.ERR file, even if the
+    board compiled cleanly.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Mon Sep 21 11:05:55 2009 -0500
+
+    galaxy5200: enable version environment variable
+
+    Add version environment variable configuration to the galaxy5200
+    board header file.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+    Edited commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c569ad6e1e8768a0fec513ffc156412240b7eb35
+Author: Werner Pfister <werner.pfister@intercontrol.de>
+Date:  Mon Sep 21 14:49:56 2009 +0200
+
+    digsy_mtc: Add TCR register value for RTC (DS1339)
+
+    Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit b0078c8792badd81aed51b7eabe85e960036361c
+Author: Werner Pfister <werner.pfister@intercontrol.de>
+Date:  Mon Sep 21 14:49:55 2009 +0200
+
+    rtc/ds1337.c: Allow to set TCR register
+
+    This is needed to correctly start the charging of an attached capacitor
+    or battery.
+
+    Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Sep 15 09:53:29 2009 +0200
+
+    ubifs: Add support for looking up directory and relative symlinks
+
+    This patch adds support for resolving symlinks to directories as well as
+    relative symlinks. Symlinks are now always resolved during file lookup,
+    so the load stage no longer needs to special-case them.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c
+Author: Rupjyoti Sarmah <rsarmah@amcc.com>
+Date:  Mon Sep 21 11:26:19 2009 -0700
+
+    ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board
+
+    u-boot reports a PCIE PLL lock error at boot time on Yucca board, and
+    left PCIe nonfunctional. This is fixed by making u-boot function
+    ppc4xx_init_pcie() to wait 300 uS after negating reset before the
+    first check of the PLL lock.
+
+    Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 91d599044caac4a8c228115b16cf3b073f902080
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Mon Sep 21 13:27:14 2009 +0200
+
+    ppc4xx: Make DDR2 timing for intip more robust
+
+    DDR2 timing for intip was on the edge for some of the available chips
+    for this board. Now it is verfied to work with all of them.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Sep 15 00:26:02 2009 +0200
+
+    board/linkstation/ide.c: Fix compile warning
+
+    Fix warning: ide.c:60: warning: dereferencing type-punned pointer will
+    break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Guennadi Liakhovetski <lg@denx.de>
+
+commit 004eca0c9ba328de457d5dc9ef8805639dfef893
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Sep 16 22:03:08 2009 -0500
+
+    ppc: Clean up calling of phy_reset() during init
+
+    Remove board-specific #ifdefs for calling phy_reset() during
+    initializtion
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 3a8f28d0a6d9f8505017680233064c13e4587174
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Sep 16 22:03:07 2009 -0500
+
+    ppc: Clean up calling of misc_init_r() during init
+
+    Remove board-specific #ifdefs for calling misc_init_r() during
+    initializtion
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Sep 16 21:38:10 2009 -0500
+
+    Remove deprecated 'autoscr' command/variables
+
+    The more standard 'source' command provides identical functionality to
+    the autoscr command.
+
+    Environment variable names/values on the MVBC_P, MVBML7, kmeter1,
+    mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'.
+
+    The 'autoscript' and 'autoscript_uname' environment variables are
+    also removed.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0
+Author: Paul Gibson <paul.gibson2074@gmail.com>
+Date:  Wed Sep 16 10:05:00 2009 +1000
+
+    mpc512x. Micron nand flash needs a reset before a read command is issued.
+
+    Micron nand flash needs a reset before a read command is issued.
+    The current mpc5121_nfc driver ignores the reset command.
+
+commit b55ae40249545eabb9d6bfb850b1400a32561b1f
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Wed Sep 9 21:18:41 2009 +0200
+
+    FDT: remove obsolete OF_CPU and OF_SOC macros.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+    Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 3b6a9267f0de7b85d387fa4123d0b58379363447
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Sep 15 00:09:21 2009 +0200
+
+    board/flagadm/flash.c: fix compile warning
+
+    Fix warning: flash.c:531: warning: dereferencing type-punned pointer
+    will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Kári Davíðsson <kd@flaga.is>
+
+commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Thu Sep 17 15:15:52 2009 +0200
+
+    Correct ffs/fls regression for PowerPC etc
+
+    Commits
+
+      02f99901ed1c9d828e3ea117f94ce2264bf8389e
+      52d61227b66d4099b39c8309ab37cb67ee09a405
+
+    introduced a regression where platform-specific ffs/fls implementations
+    were defined away. This patch corrects that by using PLATFORM_xxx
+    instead of the name itself.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Acked-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit e67af44d0167d8237dd2c2ddf8e301d19ca12914
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Sep 14 11:13:34 2009 +0200
+
+    ppc4xx: Consolidate get_OPB_freq()
+
+    All 4xx variants had their own, mostly identical get_OPB_freq()
+    function. Some variants even only had the OPB frequency calculated
+    in this routine and not supplied the sys_info.freqOPB variable
+    correctly (e.g. 405EZ). This resulted in incorrect OPB values passed
+    via the FDT to Linux.
+
+    This patch now removes all those copies and only uses one function
+    for all 4xx variants (except for IOP480 which doesn't have an OPB).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Sep 11 17:09:45 2009 +0200
+
+    ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia
+
+    Acadia still used the "old" arch/ppc bootm commands for booting
+    Linux images without FDT. This patch now enables these fdt-aware
+    boot commands for Acadia as well.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Sep 11 17:07:55 2009 +0200
+
+    ppc4xx: Fix 405EZ uart base baud calculation
+
+    With this fix, Linux correctly configures the baudrate when booting
+    with FDT passed from U-Boot to Linux.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 15fba3279b56333bdb65ead366f82c945ed320d1
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 15:28:41 2009 -0500
+
+    ppc/85xx: Disable all async interrupt sources when we boot
+
+    We should make sure to clear MSR[ME, CE, DE] when we boot an OS image
+    since we have changed the exception vectors and the OSes vectors might
+    not be setup we should avoid async interrupts at all costs.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9f00409a9d04cf533305531da32437130802f3a3
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 13:52:45 2009 -0500
+
+    ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
+
+    By pulling out cpu_init_early we can build just it and not all of
+    cpu_init for NAND_SPL.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0456dbf3475d0aec42873a967ac97ed81f376119
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 13:41:49 2009 -0500
+
+    ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
+
+    Use write_tlb and don't use memset so we can use the same code for
+    cpu_init_early_f between NAND SPL and not.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6e1385d5f8d137e741dfef02465d7dc328040ad7
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Fri Sep 11 10:53:08 2009 +0800
+
+    NAND boot: change NAND loader's relocate SP to CONFIG param
+
+    So that we can set the NAND loader's relocate stack pointer
+    to the value other than the relocate address + 0x10000.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7da53351d817c6d77364cfde922891f37d0e5ed8
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Fri Sep 11 14:19:10 2009 +0800
+
+    ppc/85xx: add boot from NAND/eSDHC/eSPI support
+
+    The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch
+    implements these three bootup methods in a unified way - all of these
+    use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM
+    which lets us use the SPD to initialize the SDRAM.
+
+    For all three bootup methods, the bootup process can be divided into two
+    stages: the first stage will initialize the corresponding controller,
+    configure the L2SRAM, then copy the second stage image to L2SRAM and
+    jump to it. The second stage image is just like the general U-Boot image
+    to configure all the hardware and boot up to U-Boot command line.
+
+    When boot from NAND, the eLBC controller will first load the first stage
+    image to internal 4K RAM buffer because it's also stored on the NAND
+    flash. The first stage image, also call 4K NAND loader, will initialize
+    the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K
+    NAND loader's code comes from the corresponding nand_spl directory, along
+    with the code twisted by CONFIG_NAND_SPL.
+
+    When boot from eSDHC/eSPI, there's no such a first stage image because
+    the CPU ROM code does the same work. It will initialize the L2SRAM
+    according to the config addr/word pairs on the fixed address and
+    initialize the eSDHC/eSPI controller, then load the second stage image
+    to L2SRAM and jump to it.
+
+    The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the
+    second stage image for all different bootup methods. It's set in the
+    board config file when one of the bootup methods above is selected.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b2eec281a811bb52941f61203d8fe35256b3582c
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 12:32:01 2009 -0500
+
+    ppc/85xx: Move code around to prep for NAND_SPL
+
+    If we move some of the functions in tlb.c around we need less
+    ifdefs.  The first stage loader just needs invalidate_tlb and
+    init_tlbs.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 206af3527c05e520e28d38a48a1d15433e34675d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 11:30:30 2009 -0500
+
+    ppc/85xx: Repack tlb_table to save space
+
+    We can pack the initial tlb_table in MAS register format and use
+    write_tlb to set things up.  This savings can be helpful for NAND
+    style first stage boot loaders.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d30f9043539d372cf66406bc2f21bb8c20e67009
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Sep 11 11:27:00 2009 -0500
+
+    ppc/85xx: Introduce low level write_tlb function
+
+    Factor out the code we use to actually write a tlb entry.
+
+    set_tlb is a logical view of the TLB while write_tlb is a low level
+    matching the MAS registers.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Thu Sep 10 14:44:48 2009 +0800
+
+    ppc/85xx: Enable usb ehci support for p2020ds board
+
+    Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 10 14:54:55 2009 -0500
+
+    ppc/8xxx: Misc DDR related fixes
+
+    * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong
+    * Fix the format string to match size in a debug print
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Aug 20 17:45:00 2009 -0500
+
+    ppc/85xx: Remove some bogus code from external interrupt handler.
+
+    Skipping the interrupted instruction will accomplish nothing other
+    than turning a spurious interrupt into a crash.
+
+    External interrupts are not machine checks, so don't count them as such.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit dcc87dd58db466caa2d66755c5ec9455edf42fe8
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Aug 20 17:45:05 2009 -0500
+
+    ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
+
+    Its reset value is random, and we sometimes read uninitialized TLB
+    arrays.  Make sure that we don't retain MAS8 from reading such an entry
+    if the VF bit in MAS8 is set, attempts to use the mapping will trap.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Aug 20 17:44:20 2009 -0500
+
+    ppc/85xx: Don't enable interrupts before we're ready
+
+    We cannot handle any exceptions while running in AS1, as the exceptions
+    will transition back to AS0 without a valid mapping.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Fri Sep 11 07:50:33 2009 -0400
+
+    mpc8260: remove Ethernet node fixup to use generic FDT code.
+
+    Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its
+    configs for the common mpc8260 code to use generic Ethernet fixup.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+    Tested-by: Heiko Schocher <hs@denx.de>
+
+commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 9 12:20:21 2009 -0400
+
+    tools/netconsole: use ncb automatically if available
+
+    The standard netcat, while ubiquitous, doesn't handle broadcast udp packets
+    properly.  The local ncb util does however.  So if ncb can be located in
+    the standard locations, automatically use that instead.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 770931805d292908a57a3d2c5f9a4fcde888b5a2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 9 12:20:20 2009 -0400
+
+    tools/netconsole: make a bit more robust
+
+    The netcat utility likes to exit when it receives an empty packet (as it
+    thinks this means EOF).  This can easily occur when working with command
+    line editing as this behavior will be triggered when using backspace.  Or
+    with tabs and command line completion.  So create two netcat processes -
+    one to only listen (and put it into a loop), and one to do the sending.
+    Once the user quits the transmitting netcat, the listening one will be
+    killed automatically.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a6e19d69f63c14b7672c65ca4b014621c6fd0201
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Mon Aug 24 09:10:16 2009 +0200
+
+    arm: Define test_and_set_bit and test_and_clear bit for ARM
+
+    Needed for (e.g.) ubifs support to work.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 52d61227b66d4099b39c8309ab37cb67ee09a405
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Mon Aug 24 09:10:12 2009 +0200
+
+    Define ffs/fls for all architectures
+
+    UBIFS requires fls(), which is not defined for arm (and some other
+    architectures) and this patch adds it. The implementation is taken from
+    Linux and is generic. ffs() is also defined for those that miss it.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 4b15de08fe4d2c9d12a3764394731018a763216b
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Mon Aug 24 09:10:03 2009 +0200
+
+    arm: Make arm bitops endianness-independent
+
+    Bring over the bitop implementations from the Linux
+    include/asm-generic/bitops/non-atomic.h to provide
+    endianness-independence.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Mon Aug 24 09:09:50 2009 +0200
+
+    Move __set/clear_bit from ubifs.h to bitops.h
+
+    __set_bit and __clear_bit are defined in ubifs.h as well as in
+    asm/include/bitops.h for some architectures. This patch moves
+    the generic implementation to include/linux/bitops.h and uses
+    that unless it's defined by the architecture.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Sep 4 19:54:45 2009 -0400
+
+    standalone: convert to kbuild style
+
+    Clean up the arch/cpu/board/config checks as well as redundant setting of
+    srec/bin variables by using the kbuild VAR-$(...) style.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Sep 15 22:12:31 2009 +0200
+
+    mkconfig: split the board make target to multiple config targets
+
+    To simplify the top level makefile it useful to be able to parse
+    the top level makefile target to multiple individual target, then
+    put them to the config.h, leave the board config file to handle
+    the different targets.
+
+    Note that this method uses the '_'(underline) as the delimiter when
+    splits the board make target.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+
+    This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit ceb2d57c2205db5bbd868577f756c74a2568160c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Sep 15 21:13:27 2009 +0200
+
+    kwbimage.c: Fix compile warning when building on 64 bit systems (again)
+
+    Commit 51003b89 attempted to fix a build problem on 64 bit systems,
+    but just turned it into a build problem on 32 bit systems (silly me).
+
+    Now do the Right Thing (TM) and use a "%zu" printf format.
+
+    Also fix spelling error.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:30:34 2009 +0200
+
+    board/amcc/common/flash.c: Fix compile warning
+
+    Fix warning: ../common/flash.c:917: warning: dereferencing type-punned
+    pointer will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 70fb809c563c340538264d2a9436135e74c38bfe
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:47:07 2009 +0200
+
+    board/amcc/yucca/flash.c: Fix compile warning
+
+    Fix warning: flash.c:919: warning: dereferencing type-punned pointer
+    will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 030ec52f8cc83015f968db30208f4bd07feffa6c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:44:39 2009 +0200
+
+    board/amcc/taihu/flash.c: Fix compile warning
+
+    Fix warnings:
+    flash.c: In function 'write_word_1':
+    flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    flash.c: In function 'write_word_2':
+    flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 0fd3d902d920f3e60f88530c33f1ae7581260951
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:37:20 2009 +0200
+
+    board/etin/debris/phantom.c: Fix compile error
+
+    Fix build problem caused by commit e84aba13: "Replace BCD2BIN and
+    BIN2BCD macros with inline functions"
+
+    phantom.c:163: error: redefinition of 'bcd2bin'
+    /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here
+    phantom.c:168: error: redefinition of 'bin2bcd'
+    /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Sangmoon Kim <dogoil@etinsys.com>
+
+commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:28:21 2009 +0200
+
+    board/dave/common/flash.c: fix compile warning
+
+    Fix warning: ../common/flash.c:668: warning: dereferencing type-punned
+    pointer will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Andrea Marson <andrea.marson@dave-tech.it>
+
+commit 97138fc48091f2b063c4e32f36d05854b9d113fb
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 11:15:31 2009 +0200
+
+    board/esd/cpci750/ide.c: fix compile warning
+
+    Fix warning: ide.c:54: warning: dereferencing type-punned pointer will
+    break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Cc: Stefan Roese <sr@denx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit ba73060cf4163bd5eb1711020126e2f7f62d363e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 10:13:26 2009 +0200
+
+    board/esd/common/flash.c: Fix compile warning
+
+    Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
+    pointer will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Cc: Stefan Roese <sr@denx.de>
+    Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 2d6d9f0848e952ea33c658dfba335685a2725b8b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 09:36:31 2009 +0200
+
+    sk98lin: fix compile warnings
+
+    Fix warnings:
+    skge.c: In function 'BoardInitMem':
+    skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skgesirq.c: In function 'SkGePortCheckUpXmac':
+    skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skrlmt.c: In function 'SkRlmtInit':
+    skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkMacPromiscMode':
+    skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkMacHashing':
+    skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkMacFlushTxFifo':
+    skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkMacFlushRxFifo':
+    skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkXmInitPauseMd':
+    skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c: In function 'SkXmOverflowStatus':
+    skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 09:13:58 2009 +0200
+
+    drivers/net/natsemi.c: fix compile warning
+
+    Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer
+    will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Ben Warren <biggerbadderben@gmail.com>
+
+commit 78d19a398778a58d7b40b0c78e026515271b1a84
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Mon Sep 7 09:08:02 2009 +0200
+
+    net: emaclite: Cleanup license to be GPL compatible
+
+    Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Fri Aug 14 13:41:17 2009 +0200
+
+    microblaze: Enable hush parser
+
+    With Hush parser is possible to change command line in dtb
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 13916abf996b127b681ddc26664c236ded28ba7f
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Thu Aug 20 22:44:02 2009 +0200
+
+    microblaze: Remove AtmarkTechno Suzaku board
+
+    Users should use microblaze-generic platform.
+    This platform is longer not supported.
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Thu Aug 20 22:36:20 2009 +0200
+
+    net: Remove old Xilinx Emac driver
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Wed Aug 19 08:10:08 2009 +0200
+
+    microblaze: Short size of global data and fix malloc size
+
+    If is full malloc area global, data are rewrite because
+    there was bad size of malloc area.
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit aedb4683097d3e5de8833f4a9e34664d3d2bd077
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Fri Aug 14 17:02:35 2009 +0200
+
+    microblaze: Add sbss, scommon and COMMON symbols for clearing
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 4c1883670acbf1cc83c04df1876235c3aedde128
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Wed Sep 9 12:36:07 2009 +0200
+
+    ppc4xx: Rename compactcenter to intip
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit d1c3b27525b664e8c4db6bb173eed51bfc8220de
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Sep 9 16:25:29 2009 +0200
+
+    ppc4xx: Big cleanup of PPC4xx defines
+
+    This patch cleans up multiple issues of the 4xx register (mostly
+    DCR, SDR, CPR, etc) definitions:
+
+    - Change lower case defines to upper case (plb4_acr -> PLB4_ACR)
+    - Change the defines to better match the names from the
+      user's manuals (e.g. cprpllc -> CPR0_PLLC)
+    - Removal of some unused defines
+
+    Please test this patch intensive on your PPC4xx platform. Even though
+    I tried not to break anything and tested successfully on multiple
+    4xx AMCC platforms, testing on custom platforms is recommended.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit d8d8724be06df43772162dc344ae20dfa814dc72
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 09:05:32 2009 +0200
+
+    net/bootp.c: fix compile warning
+
+    Fix warning: bootp.c:695: warning: dereferencing type-punned pointer
+    will break strict-aliasing rules
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Ben Warren <biggerbadderben@gmail.com>
+
+commit 51003b89816848cbe86a8fe48f970ba8b14005f5
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 11 08:58:11 2009 +0200
+
+    kwbimage.c: Fix compile warning when building on 64 bit systems
+
+    Fix this warning when building on 64 bit systems:
+    tools/kwbimage.c: In function 'kwbimage_checksum32':
+    tools/kwbimage.c:135: warning: format '%d' expects type 'int',
+    but argument 4 has type 'long unsigned int'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit e7963772eb78a6aa1fa65063d64eab3a8626daac
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Wed Sep 9 21:11:18 2009 +0200
+
+    muas3001: remove BRG clock node fixup to use common mpc8260 code.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Wed Sep 9 21:09:00 2009 +0200
+
+    r7780mp: fix typo in Ethernet chip model number comment.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+
+commit 45f89f340b4d8aa099fd022260dcb13cf3321b61
+Author: Marcel Ziswiler <marcel@ziswiler.com>
+Date:  Wed Sep 9 21:22:08 2009 +0200
+
+    ep8248: add support for device tree and secondary Ethernet interface.
+
+    Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
+
+commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 7 15:05:02 2009 +0530
+
+    mkimage: Add Kirkwood Boot Image support (kwbimage)
+
+    This patch adds support for "kwbimage" (Kirkwood Boot Image)
+    image types to the mkimage code.
+
+    For details refer to docs/README.kwbimage
+
+    This patch is tested with Sheevaplug board
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Ron Lee <ron@debian.org>
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 7 14:59:09 2009 +0530
+
+    Kirkwood: Sheevaplug: Add kwimage configuration file
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit b029dddc9ae958b1ccf875649f52c6db396a742d
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 7 14:59:08 2009 +0530
+
+    mkimage: Make table_entry code global
+
+    - make get_table_entry_id() global
+    - make get_table_entry_name() global
+    - move struct table_entry to image.h
+
+    Currently this code is used by image.c only.
+
+    This patch makes this API global so it can be used by other parts of
+    code, too.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Ron Lee <ron.debian.org>
+
+    Edit comments and commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 7 14:59:07 2009 +0530
+
+    mkimage: Make genimg_print_size() global
+
+    Currently it is used by image.c only, but the the function can be
+    used to support additional mkimage types like for example kwbimage,
+    so make this function globally visible.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+    Edited commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 37b801888cf73b18f78c1109140ff44e3e37914f
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Sep 7 14:59:06 2009 +0530
+
+    mkimage: Include missing files in build dependency calculations
+
+    Include default_image.o and fit_image.o into the build dependency
+    calculations. This makes sure they get rebuilt if any of the headers
+    they include are modified
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Ron Lee <ron@debian.org>
+
+    Edited commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Aug 19 11:42:56 2009 +0200
+
+    tools/mkimage: fix compiler warnings, use "const"
+
+    This fixes some compiler warnings:
+    tools/default_image.c:141: warning: initialization from incompatible pointer type
+    tools/fit_image.c:202: warning: initialization from incompatible pointer type
+    and changes to code to use "const" attributes in a few places where
+    it's appropriate.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Wed Aug 19 17:36:46 2009 +0530
+
+    tools: mkimage: split code into core, default and FIT image specific
+
+    This is a first step towards reorganizing the mkimage code to make it
+    easier to add support for additional images types. Current mkimage
+    code is specific to generating uImage and FIT image files, but the
+    same framework can be used to generate other image types like
+    Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets
+    reworked:
+
+    Here is the brief plan for the same:-
+    a) Split mkimage code into core and image specific support
+    b) Implement callback functions for image specific code
+    c) Move image type specific code to respective C files
+          Currently there are two types of file generation/list
+          supported (i.e uImage, FIT), the code is abstracted from
+          mkimage.c/.h and put in default_image.c and fit_image.c;
+          all code in these file is static except init function call
+    d) mkimage_register API is added to add new image type support
+    All above is addressed in this patch
+    e) Add kwbimage type support to this new framework (TBD)
+    This will be implemented in a following commit.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Edit commit message, fix coding style and typos.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 449609f5b11cce6beba7338bc4ce0f3345376a0b
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sun Aug 16 05:28:19 2009 +0530
+
+    tools: mkimage: Fixed build warnings
+
+    uninitialized retval variable warning fixed
+    crc32 APIs moved to crc.h (newly added) and build warnings fixed
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 14821d7dea8d7209f2457c3179fa6551c088ba71
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Aug 10 20:44:06 2009 +0530
+
+    tools: mkimage: Makefile sorted
+
+    The tools/Makefile is sorted for all entries,
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit f7644c0bf3502529031657a869fa213cda5a2424
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Aug 10 18:49:37 2009 +0530
+
+    tools: mkimage : bugfix returns correct value for list command
+
+    List command always return "EXIT_SUCCESS" even in case of
+    failure by any means.
+
+    This patch return 0 if list command is sucessful,
+    returns negative value reported by check_header functions
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Sep 8 15:07:12 2009 +0800
+
+    mkconfig: pass the board name to board config file
+
+    Then we can handle different config targets in the board file, which
+    simplifies the top level Makefile for boards that have multiple
+    config targets.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+
+commit d640ac58dbf61c769864b3fe76314306b7336cf1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Sep 7 23:52:31 2009 +0200
+
+    Remove "atmel_df_pow2" binary with "make clean"
+
+    Commit 65f6f07b added support for the atmel_df_pow2 standalone program
+    but missed to add a rule to remove it to the "clean" make target.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 0b34dbbd0b6969c98c44313b291836d9056ec40a
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Sep 7 10:52:24 2009 +0200
+
+    ppc4xx: Fix compilation warning in 4xx miiphy.c
+
+    This patch fixes the following compilation warning:
+
+    miiphy.c: In function 'emac4xx_miiphy_read':
+    miiphy.c:353: warning: dereferencing type-punned pointer will break
+    strict-aliasing rules
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 82379b5564819e62624a3c58fbc43f1afedf4f5f
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Sep 7 17:00:41 2009 +0200
+
+    ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 99bcf14d553f399148a7660b98f7acbd8cc72d80
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Sep 7 17:00:40 2009 +0200
+
+    ppc4xx: Allow overwriting pci target registers for all 4xx boards
+
+    This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces
+    the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct
+    in 4xx pci code.
+
+    When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register
+    setup can be overwritten through environment variables ptm1la, ptm1ms,
+    ptm2la and ptm2ms to do application specific pci target BAR configuration.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit cfab2ae322a99ad55364d054054f138f51130c2a
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Fri Sep 4 10:37:04 2009 +0200
+
+    ppc4xx: Fix PMC405DE support
+
+    This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
+    building for this board but the loadpci object did not get linked
+    after that.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed Sep 2 17:24:57 2009 +0200
+
+    amcc-common.h: Use filenames from environment variables for update procedure.
+
+    Using a separate "u-boot" environment variable allows to easily
+    specify different filenames for the update procedure.  This is also in
+    line with many other board configurations defining an "update" script.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Sep 9 11:40:41 2009 -0500
+
+    ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
+
+    Some board ports place TEXT_BASE at a location that would cause the
+    RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link. By default
+    we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
+    explicitly set it.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit c348322ac7f76318295cf25ffab2cc2a4900a234
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 8 13:46:46 2009 -0500
+
+    ppc/85xx: Clean up do_reset
+
+    There is no reason to do a run time check for e500 v1 based cores to
+    determine if we have the GUTs RSTCR facility.  Only the first generation
+    of PQ3 parts (MPC8540/41/55/60) do not have it.  So checking to see if
+    we are e500 v2 would miss future parts (like e500mc).
+
+    Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Sep 3 19:42:40 2009 +0530
+
+    ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
+
+    While in probecpu() UART is still not initialized.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f8027f6b4789e3340f10620d8fb6113b95b88d9c
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Wed Sep 2 19:40:36 2009 +0530
+
+    ppc/85xx/86xx: Device tree fixup for number of cores
+
+    Fixing the number of cores in the device tree based on the actual number of
+    cores on the system.  With this same device tree image can be used for dual
+    core and single core members of otherwise exactly same SOC.
+
+    For example:
+    * P2020RDB and P2010RDB
+    * P1020RDB and P1011RDB
+    * MPC8641D and MPC8641
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Wed Sep 2 13:35:21 2009 +0530
+
+    ppc/85xx,86xx: Handling Unknown SOC version
+
+    Incase the system is detected with Unknown SVR, let the system boot
+    with a default value and a proper message.
+
+    Now with dynamic detection of SOC properties from SVR, this is necessary
+    to prevent a crash.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Sep 2 09:03:08 2009 -0500
+
+    ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
+
+    Refactor the code into a simple bitmask lookup table that determines if
+    a given PCI controller is enabled and if its in host/root-complex or
+    agent/end-point mode.
+
+    Each processor in the PQ3/MPC86xx family specified different encodings
+    for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 5052a771cf1722c37c732f3c340775b55fbe3a22
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Sep 2 09:00:50 2009 -0500
+
+    ppc/85xx: Cleanup makefile and related optional files
+
+    Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases
+    we have like PCI, CPM2, QE.  Also reworked it to use one line per file
+    for everything and sorted in alphabetical order.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea
+Author: Timur Tabi <timur@freescale.com>
+Date:  Fri Sep 4 17:05:24 2009 -0500
+
+    fsl: add register read-back to set_law()
+
+    After programming a new LAW, we should read-back the LAWAR register so that
+    we sync the writes.  Otherwise, code that attempts to use the new LAW-mapped
+    memory might fail right away.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c7259086816405fe0eb77f4dc22e76980a040cef
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 3 08:41:31 2009 -0500
+
+    ppc/85xx: Fix bug in setup_mp code
+
+    Its possible that we try and copy the boot page code out of flash into a
+    DDR location that doesn't have a TLB cover it.  For example, if we have
+    3G of DDR we typically only map the first 2G.  In the cases of 4G+ this
+    wasn't an issue since the reset page TLB mapping covered the last page
+    of memory which we wanted to copy to.
+
+    We now change the physical address of the reset page TLB to map to the
+    true physical location of the boot page code, copy and than set the
+    TLB back to its 1:1 mapping of the reset page.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c2287af1552bd630956568d3957c370f86801b7d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Sep 3 08:20:24 2009 -0500
+
+    ppc/85xx: Add a simple function to search the TLB
+
+    Allow us to search the TLB array based on an address.  This is useful
+    if we want to change an entry but dont know where it happens to be
+    located.
+
+    For example, the boot page mapping we use on MP or the flash TLB that
+    we change the WIMGE settings for after we've relocated.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 26f4cdba6b51deab4ec99d60be381244068ef950
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Aug 14 13:37:54 2009 -0500
+
+    85xx: Add support for setting IVORs to fixed offset defaults
+
+    In future Book-E implementations IVORs will most likely go away and be
+    replaced with fixed offsets.  The IVPR will continue to exist to allow
+    for relocation of the interrupt vectors.
+
+    This code adds support to setup the IVORs as their fixed offset values
+    per the ISA 2.06 spec when we transition from u-boot to another OS
+    either via 'bootm' or a cpu release.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit da1cd955dfec35b0e15381ad1ee248fa194eed82
+Author: Dipen Dudhat <dipen.dudhat@freescale.com>
+Date:  Wed Sep 2 11:25:08 2009 +0530
+
+    ppc/85xx: Fix up eSDHC controller clock frequency in the device tree
+
+    Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2abbd31da6d900473ed678ca50789ee58bc9bb00
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 1 22:01:54 2009 -0500
+
+    ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist
+
+    The ddr_pd_cntl isn't defined in any reference manual and thus we wil
+    remove especially since we set it to 0, which would most likely be its
+    POR value.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 1 21:07:08 2009 -0500
+
+    ppc/8xxx: relocate cpu pointer in global data
+
+    Now that we have a pointer to the cpu struct we need to relocate it once
+    we get into ram.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9c671e7062720074f894ee329eaa6995b0823727
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 2 02:17:24 2009 +0400
+
+    fsl: sys_eeprom: Fix 'may be used uninitialized' warning
+
+    The warning is bogus, so silence it by initializing the 'ret' variable.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc
+Author: Dipen Dudhat <dipen.dudhat@freescale.com>
+Date:  Tue Sep 1 17:27:00 2009 +0530
+
+    ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk
+
+    Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a
+    platform define.  This will enable all the 85xx platforms to use sdhc_clk
+    based on CONFIG_FSL_ESDHC.
+
+    Signed-off-by: Gao Guanhua <B22826@freescale.com>
+    Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21
+Author: Timur Tabi <timur@freescale.com>
+Date:  Fri Sep 4 16:28:35 2009 -0500
+
+    fsl_i2c: increase I2C timeout values and make them configurable
+
+    The value of I2C_TIMEOUT in fsl_i2c.c has several problems.  First, it is
+    defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes
+    no sense to derive it from a clock rate.  Second, the current value (250) is
+    too low for some boards, so it needs to be increased.  Third, the timeout
+    necessary for multiple-master arbitration is larger than the timeout for basic
+    read/write operations, so we shouldn't have a single constant for both timeouts.
+    Finally, it would be nice if we could override these values on a per-board
+    basis.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+    Tested-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Thu Sep 3 08:09:44 2009 -0500
+
+    Reset i2c slave devices during init on mpc5xxx cpus
+
+    Reset any i2c devices that may have been interrupted during a system reset.
+    Normally this would be accomplished by clocking the line until SCL and SDA
+    are released and then sending a start condtiion (From an Atmel datasheet).
+    There is no direct access to the i2c pins so instead create start commands
+    through the i2c interface. Send a start command then delay for the SDA Hold
+    time, repeat this by disabling/enabling the bus a total of 9 times.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit 2d4072c06b5549444e4140231bba3d47d9b0bc53
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Aug 15 11:20:58 2009 -0400
+
+    ARM: DaVinci: Adding Support for DaVinci DM365 EVM
+
+    This patch adds support for the DM365 EVM.
+    It has been tested on a DM365 EVM.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit cf463091bce8b0f8951dd08f94754d08d64793b8
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat Aug 15 11:20:44 2009 -0400
+
+    ARM: DaVinci: DaVinci DM365 SOC specific code
+
+    This patch adds support for DaVinci DM365 SOC.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit e830b66b3592f115316600d370399f3ee148e909
+Author: Ilko Iliev <iliev@ronetix.at>
+Date:  Sat Sep 5 02:51:34 2009 +0200
+
+    DM9000 init for pm9261
+
+    Signed-off-by: Ilko Iliev <iliev@ronetix.at>
+
+commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6
+Author: Frederik Kriewitz <frederik@kriewitz.eu>
+Date:  Sun Aug 23 12:56:42 2009 +0200
+
+    Add support for the DevKit8000 board
+
+    This patch adds support for the DevKit8000 board.
+
+    Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
+
+commit 127f9ae575991aee3e105e1448c49b5b4e254998
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Aug 23 16:32:40 2009 +0200
+
+    omap3: move the other boards to board/
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 350f3ac5731faf0f02ca55ab016694b7c7269f97
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Aug 23 16:32:39 2009 +0200
+
+    arm: move Logicpd's boards to board/logicpd/
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Aug 23 16:32:38 2009 +0200
+
+    omap: move TI's boards to board/ti/
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Sep 4 23:20:29 2009 +0200
+
+    ARM: Update mach-types
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Sep 3 23:12:47 2009 -0400
+
+    push LOAD_ADDR out to arch mk files
+
+    Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
+    the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
+    config.mk (and rename to STANDALONE_LOAD_ADDR in the process).  This keeps
+    the common code clean and lets the arch do whatever crazy crap it wants in
+    its own area.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d
+Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
+Date:  Thu Sep 3 07:37:46 2009 -0400
+
+    zlib: fix code when DEBUG is defined
+
+    Removed stdio.h inclusion and moved trace macros to use printf avoiding to
+    write debug informations to standard error.
+
+    Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+
+commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Wed Sep 2 16:45:31 2009 -0500
+
+    mxc_nand: Remove Freescale's "All Rights Reserved."
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 001d615681333569c555e6cde07d8d23e2c536fb
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Sep 2 17:58:48 2009 +0400
+
+    mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice
+
+    "All Rights Reserved" conflicts with the GPL.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+
+commit 46ff6d461321f5b565cc790e02679237ffd9a20f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Sep 2 14:57:27 2009 +0200
+
+    License cleanup: remove unintended "All Rights Reserved" notices.
+
+    Some files included my old standerd file header which had a "All
+    Rights Reserved" part. As this has never been my intention, I remove
+    these lines to make the files compatible with GPL v.2 and later.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Sep 2 10:21:20 2009 +0200
+
+    cmd_mtdparts.c: fix compiler warning in debug code
+
+    Fix warning messages:
+    cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
+    unsigned int', but argument 6 has type 'u32'
+    cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
+    unsigned int', but argument 7 has type 'u32'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Tue Sep 1 20:58:03 2009 +0400
+
+    Move uninitialized_var() macro from ubi_uboot.h to compiler.h
+
+    This is needed so that we could use this macro for non-UBI code.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+
+commit d72871e1387094972569e4b77c25e88020f7b68f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 1 11:24:45 2009 -0500
+
+    arm: Remove -fno-strict-aliasing
+
+    -fno-strict-aliasing is hidding warnings.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Sep 1 11:24:44 2009 -0500
+
+    ppc: Remove -fno-strict-aliasing
+
+    -fno-strict-aliasing is hidding warnings.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 795d246c278e70b4ba9868cc9f2c8fbada49d388
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Fri Aug 28 07:14:04 2009 -0500
+
+    galaxy5200: Add chip select region for an Epson S1D15313
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit 3dfad40a0459f63099e177dc15a1df39d048f860
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Aug 27 08:23:55 2009 -0500
+
+    Add ability for arch code to make changes before we boot
+
+    Added a arch_preboot_os() function that cpu specific code can implement to
+    allow for various modifications to the state of the machine right before
+    we boot.  This can be useful to setup register state to a specific
+    configuration.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9ea005fb4428c922536fa75991ce9972304a02fb
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Sat Aug 22 03:49:52 2009 +0800
+
+    Use different PBA value for E1000 PCI and PCIe cards
+
+    Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+    Acked-by: André Schwarz <andre.schwarz@matrix-vision.de>
+
+commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:58 2009 +1000
+
+    Add PCI support to eNET board
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit f50b619d9cb297b0125fe78dcd6f255eb0d91659
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:57 2009 +1000
+
+    i386: Moved PCI from #ifdef to conditional compile for sc520 boards
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit ed7a1b681de1e31d18d5b92e2767ae8df3241687
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:56 2009 +1000
+
+    i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 9b32f96b5b92ba13fdb4b5eb637734752235f260
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:55 2009 +1000
+
+    Misc sc520 cdp fixups
+
+    Now that the PCI, SATA et al compile problems have been resolved, the
+    cludge that was applied to avoid them can be removed
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 91ee4e183cb7ac5f86e7673ead51400f19906635
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:54 2009 +1000
+
+    Fixup sc520_spunk board
+
+    Primary intent is to resolve build errors for this board which has been
+    neglected for a very long time. I do not have one of these boards, so I
+    cannot test functionality
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 8907b8dbc5805094f1316d64737d3428b3863693
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:53 2009 +1000
+
+    Misc ds1722 fixups
+
+    This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD
+    on 18th May 2008 as part of a general i386 / sc520 fixup which was never
+    applied
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit a92510e7fae523145b58765cdc46110f1162260d
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:52 2009 +1000
+
+    Misc ti_pci1410a fixups
+
+    Removed do_pinit() - now declared in cmd_pcmcia.c
+
+    Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other
+    PCMCIA drivers
+
+    signed/unsigned type fixups
+
+    Added semi-colon after default: label as required by newer gcc
+
+    The only board that appears to use this driver is the sc520_spunk which
+    is very old and very likely very broken anyway. I do not have one to test
+    whether this patch breaks anything functionaly, I have can only check
+    that it compiles without warning or error
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 31b9ab33d93d88ff89f3046aa45c68667a378a56
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:51 2009 +1000
+
+    Misc SATA fixups
+
+    Cast first parameter to sata_cpy()
+
+    In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(),
+    ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in
+    include/libata.h which is included in ata.h which is included by all files
+    which include ata_piix.h (only ata_piix.c) so these definitions are
+    supurflous to (and conlict with) this in libata.h. Interestingly, my
+    compiler complains about ata_id_u64 already being defined, but not
+    ata_id_u32
+
+    ata_dump_id() is defined in include/libata.h and should not be static
+    (maybe should even use ata_dump_id() in libata.c
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit d7549024098af093785151261266a02be19af633
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:50 2009 +1000
+
+    i386: Misc PCI fixups
+
+    Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in
+    commit ff4e66e93c1a, regressed by commit 6d7f610b09f8)
+
+    Cast PCI_ROM_ADDRESS_MASK to u32
+
+    Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO
+
+    Change call to pci_find_class() to pci_find_devices(). This is based on a
+    patch submitted on 1st March 2007 (Patch that fixes the compilation errors
+    for sc520_cdp board) by mushtaq_k
+
+    This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be
+    specified in the board config file.  Dummy values have been added for the
+    SC520 CDP board to enable compilation, but since I do not have one of these,
+    I do know what the values should be
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:49 2009 +1000
+
+    Fix sc520 timer interrupt generation
+
+    The current implementation has the timer being started before the interrupt
+    handler is installed. It the interrupt occurs before the handler is
+    installed, the timer interrupt is never reset and the timer stops
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:48 2009 +1000
+
+    Fix environment configuration for eNET board
+
+    The current configuration of the Environment has the redundant copy of the
+    environment in the Boot Flash - This was never the intent. The Environment
+    should instead be in the first two sectors of the first Strata Flash
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:47 2009 +1000
+
+    i386: Fix regression introduced by commit 8c63d47651f7
+
+    A local variable was deleted that should not have been
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit cfb3a736ffcff3e3753b902cad536f22fcf8961d
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:46 2009 +1000
+
+    i386: Change inline asm global symbols to local
+
+    gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why)
+    Remove use of global names for labels to prevent 'symbol already defined'
+    errors
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit a3ab8caee696a1d53fc82fa321e2b2f179970168
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Aug 23 12:59:45 2009 +1000
+
+    i386: Add errno.h
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Aug 21 23:05:21 2009 -0500
+
+    Consolidate arch-specific mem_malloc_init() implementations
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a483a167bc8d808145ca1224a2c238cda90aa60c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Aug 21 23:05:20 2009 -0500
+
+    Standardize mem_malloc_init() implementation
+
+    This lays the groundwork to allow architectures to share a common
+    mem_malloc_init().
+
+    Note that the x86 implementation was not modified as it did not fit the
+    mold of all other architectures.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Aug 21 23:05:19 2009 -0500
+
+    Consolidate arch-specific sbrk() implementations
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 23 16:37:03 2009 -0400
+
+    atmel_df_pow2: standalone to convert dataflashes to pow2
+
+    Atmel DataFlashes by default operate with pages that are slightly bigger
+    than normal binary sizes (i.e. many are 1056 byte pages rather than 1024
+    bytes).  However, they also have a "power of 2" mode where the pages show
+    up with the normal binary size.  The latter mode is required in order to
+    boot with a Blackfin processor, so many people wish to convert their
+    DataFlashes on their development systems to this mode.  This standalone
+    application does just that.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 2 05:52:37 2009 -0400
+
+    Blackfin: cm-bf548: fix device->stdio_dev fallout
+
+    The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
+    cm-bf548's video board.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Sep 2 04:21:16 2009 -0400
+
+    Blackfin: enable 64bit printf for nand
+
+    Since the NAND code now uses 64bit code, make sure we enable support for
+    ADI Blackfin boards in printf to avoid the warning:
+    nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Aug 24 20:48:04 2009 -0400
+
+    Blackfin: use scratch pad for exception stack
+
+    If the memory layout pushes the stack out of the default DCPLB coverage,
+    the exception handler may trigger a double fault by trying to push onto
+    the uncovered stack.  So handle the exception stack similar to the kernel
+    by using the top of the scratch pad SRAM.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 69a25ce3578f34c8accb476f70089f3a44b78ed9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Aug 24 20:36:25 2009 -0400
+
+    Blackfin: increase default console size
+
+    The default console size indirectly applies to length of env vars, so a
+    smaller length makes it hard to pass longer command lines to kernels.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Aug 24 19:03:18 2009 -0400
+
+    Blackfin: fix debug printf modifiers
+
+    The display_global_data() function generated warnings with pretty much
+    every variable.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4640c2b8699bcdd2346a2c633486f07f061a2939
+Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+Date:  Thu Aug 20 19:20:41 2009 -0400
+
+    Blackfin: cm-bf537u: new board port
+
+    The CM-BF537U is similar to the CM-BF537E module, but enough to need its
+    own board port.
+
+    Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c4db335c2e0805e1ce4c33d278b77492c0812353
+Author: Robin Getz <robin.getz@analog.com>
+Date:  Mon Aug 17 15:23:02 2009 +0000
+
+    Blackfin: change global data register from P5 to P3
+
+    Since the Blackfin ABI favors higher scratch registers by default, use the
+    last scratch register (P3) for global data rather than the first (P5).
+    This allows the compiler's register allocator to use higher number scratch
+    P registers, which in turn better matches the Blackfin instruction set,
+    which reduces the size of U-Boot by more than 1024 bytes...
+
+    Signed-off-by: Robin Getz <robin.getz@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a
+Author: Robin Getz <robin.getz@analog.com>
+Date:  Tue Aug 11 14:20:13 2009 +0000
+
+    Blackfin: enable more network commands for ADI dev boards
+
+    Add dns and ntp to default networking commands, and ask for more dhcp
+    options to better configure the network environment.
+
+    Signed-off-by: Robin Getz <robin.getz@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit aa7b248a05323d4720969227603e39a22777ed95
+Author: Michael Hennerich <michael.hennerich@analog.com>
+Date:  Thu Jun 18 09:12:50 2009 +0000
+
+    Blackfin: bf537-stamp: comment CF-Flash Card Support better
+
+    Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 69c6d268a29cf6d61e096d815abf5abf24136f45
+Author: Robin Getz <robin.getz@analog.com>
+Date:  Fri Jul 10 18:37:15 2009 +0000
+
+    Blackfin: use +(filesize) to make sure we are only doing what is necessary
+
+    Signed-off-by: Robin Getz <robin.getz@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Thu Aug 20 16:04:49 2009 +0200
+
+    Support for the Calao TNY-A9260/TNY-A9G20 boards
+
+    The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by
+    Calao Systems <http://www.calao-systems.com>. Their components are very
+    similar to the AT91SAM9260EK board, so their configuration is based on
+    the configuration of this board. There are however some differences:
+    different clocks, no LCD, no ethernet. They also can use SPI EEPROM to
+    store the environment.
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Aug 20 20:59:28 2009 +0530
+
+    arm: Kirkwood: add SYSRSTn Duration Counter Support
+
+    This feature can be used to trigger special command "sysrstcmd" using
+    reset key long press event and environment variable "sysrstdelay" is set
+    (useful for reset to factory or manufacturing mode execution)
+
+    Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
+    When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
+    The counter value is stored in the SYSRSTn Length Counter Register
+    The counter is based on the 25-MHz reference clock (40ns)
+    It is a 29-bit counter, yielding a maximum counting duration of
+    2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
+    it remains at this value until counter reset is triggered by setting
+    bit 31 of KW_REG_SYSRST_CNT
+
+    Implementation:
+    Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be
+    executed if pre-defined in environment variables.
+    This feature will be disabled if "sysrstdelay" variable is unset.
+
+    for-ex.
+    setenv sysrst_cmd "echo starting factory reset;
+                  nand erase 0xa0000 0x20000;
+                  echo finish ed sysrst command;"
+    will erase particular nand sector if triggered by this event
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 9453967e28c5e3abbf856f95735ea69bae1e77fa
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Mon Aug 24 18:03:26 2009 +0200
+
+    Add support for the Calao SBC35-A9G20 board
+
+    The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems
+    <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC
+    running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard
+    battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND
+    flash, two USB host ports, and an USB device port. More informations can be
+    found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936>
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit 10bc241dfc15a0820d9c52469173b7ccafec0b84
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Tue Aug 11 02:32:09 2009 +0400
+
+    imx27lite: add support for imx27lite board from LogicPD
+
+    This patch adds support for i.MX27-LITEKIT development board from
+    LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
+    flash, FEC ethernet controller integrated into i.MX27.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit 50b5fff55827946c86a60db8b21a9358be720666
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Tue Sep 1 11:26:20 2009 +0200
+
+    at91sam9260/afeb9260: Fix SPI initialization
+
+    Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi
+    init function call for those boards. This patch fixes this.
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit f3d4f8870e69e0fd177397778d97d0751bbd020a
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Aug 18 11:13:44 2009 +0200
+
+    Remove duplicate set_cr
+
+    Remove duplicate set_cr
+
+    set_cr is defined in both asm-arm/proc-armv/system.h and
+    include/asm-arm/system.h. This patch removes it (and some duplicate
+    defines) from the former.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 3d35d87d5482de23cd5dc4d7721b1086107cae50
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 31 19:57:42 2009 +0200
+
+    Prepare 2009.08
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 632a6dd0b612eb7b143f789f2a0273917468c041
+Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
+Date:  Mon Aug 31 16:18:24 2009 +0200
+
+    Add common code dir for Matrix Vision boards.
+
+    This fixes current build failure.
+
+    Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
+
+    mvblm7.c: fix warning: implicit declaration of function
+    'mv_reset_environment'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 52f6c34c85d6c16f2a41433b5000490ecf374992
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Sun Aug 30 11:05:29 2009 -0700
+
+    bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
+
+    The "console: unify printing current devices" patch goofed:
+    CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
+    time noise, not add it.  Said patch changed the #ifndefs
+    to #ifdef; this one restores them to the proper sense.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 2d04db088e6df8a008bb09f604876a45031df93b
+Author: Timur Tabi <timur@freescale.com>
+Date:  Fri Aug 28 16:56:45 2009 -0500
+
+    fsl: simplify the "mac id" command, improve boot-time informational message
+
+    The "mac id" command took a 4-character parameter as the identifier string.
+    However, for any given board, only one kind of identifier is acceptable, so it
+    makes no sense to ask the user to type it in.  Instead, if the user enters
+    "mac id", the identifier (and also the version, if it's NXID) will
+    automatically be set to the correct value.
+
+    Improve the message that is displayed when EEPROM is read during boot.  It now
+    displays "EEPROM:" and then either an error message or the EEPROM identifier
+    if successful.
+
+    If the identifier in EEPROM is valid, then always reject a bad CRC, even if the
+    CRC field has not been initialized.
+
+    Don't force the MAC address count to MAX_NUM_PORTS or less.  Forcing the value
+    to be changed resulting in an in-memory copy that does not match what's in
+    hardware, even though the user did not request that change.
+
+    Finally, always update the CRC value in the in-memory copy after any field
+    is changed, so that the CRC is always correct.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 33f3f34255bd7cf0be502275c59f0ff22dc50080
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Fri Aug 21 07:29:58 2009 +0530
+
+    85xx: Added PCIe support for P1 P2 RDB
+
+    Call fsl_pci_init_port() to initialize all the PCIe ports on the board.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Fri Aug 21 07:29:42 2009 +0530
+
+    driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller
+
+    fsl_pci_init_port can be called from board specific PCI initialization
+    routines to setup the PCI (or PCIe) controller.  This will reduce code
+    redundancy in most of the 85xx/86xx FSL board ports that setup PCI.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 05f6f66474312ad03c39b4ca4875af46c87366bf
+Author: Timur Tabi <timur@freescale.com>
+Date:  Thu Aug 20 17:41:11 2009 -0500
+
+    85xx: Improve MPIC initialization
+
+    The MPIC initialization code for Freescale e500 CPUs was not using I/O
+    accessors, and it was not issuing a read-back to the MPIC after setting
+    mixed mode.  This may be the cause of a spurious interrupt on some systems.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c17b79fbd0c7923948331d65cb588734a9c681ff
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Aug 20 18:59:18 2009 +0530
+
+    85xx: Added support for P1011RDB and P2010RDB
+
+    P1011 and P2010 are single core variants of P1010 and P2020 respectively.
+    The board(RDB) will be same.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Aug 20 18:57:45 2009 +0530
+
+    85xx: Added single core members of FSL P1xx/P2xx processors series
+
+    P1011 - Single core variant of P1020
+    P2010 - Single core variant of P2020
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Aug 20 18:57:02 2009 +0530
+
+    85xx: P1020RDB Support Added
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Aug 20 18:55:35 2009 +0530
+
+    85xx: Added CONFIG_MAX_CPUS for P1020
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Aug 18 15:37:15 2009 +0800
+
+    85xx: Add L2SRAM Register's macro definition
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15
+Author: Felix Radensky <felix@embedded-sol.com>
+Date:  Sat Aug 15 15:08:37 2009 +0300
+
+    85xx: Fix memory test range on MPC8536DS
+
+    With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END
+    memory test hangs if run without arguments. Set them to sane values, so
+    that all available 512MB of RAM excluding exception vectors at the bottom
+    and u-boot code and stack at the top can be tested.
+
+    Signed-off-by: Felix Radensky <felix@embedded-sol.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ef41f2a25c554604156b59f5945feadae2f3cb55
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Aug 12 00:10:44 2009 -0500
+
+    85xx: Removed BEDBUG support on P1_P2_RDB
+
+    To match all other 85xx platforms we are removing BEDBUG support.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b560ab85edfb68da653bf2527c390c3e182392a1
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Sat Aug 8 10:42:30 2009 -0500
+
+    85xx: Init pci ethernet cards if we enable any on MPC8572DS
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Aug 7 13:16:34 2009 -0500
+
+    xes: Use proper IO access functions
+
+    Also fix some minor whitespace oddities while we're cleaning up
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ec79d33b2c41ee8b6d1354cc0910217b769c5036
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Aug 7 13:00:55 2009 -0500
+
+    85xx: Move to a common linker script
+
+    There are really no differences between all the 85xx linker scripts so
+    we can just move to a single common one.  Board code is still able to
+    override the common one if need be.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Fri Jul 31 12:08:27 2009 +0530
+
+    85xx: Added P1020 Processor Support.
+
+    P1020 is another member of QorIQ series of processors which falls in ULE
+    category. It is an e500 based dual core SOC.
+
+    Being a scaled down version of P2020 it has following differences:
+    - 533MHz - 800MHz core frequency.
+    - 256Kbyte L2 cache
+    - Ethernet controllers with classification capabilities.
+    Also the SOC is pin compatible with P2020
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 728ece343e8bb2a66ee977c49d455439e3b28da9
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Wed Aug 5 13:29:24 2009 +0530
+
+    85xx: Add support for P2020RDB board
+
+    The code base adds P1 & P2 RDB platforms support.
+    The folder and file names can cater to future SOCs of P1/P2 family.
+    P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series.
+
+    Tested following on P2020RDB:
+    1. eTSECs
+    2. DDR, NAND, NOR, I2C.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0e870980a64584a591af775bb9c9fe9450124df9
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Fri Jul 31 12:08:14 2009 +0530
+
+    8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
+
+    The number of CPUs are getting detected dynamically by checking the
+    processor SVR value.  Also removed CONFIG_NUM_CPUS references from all
+    the platforms with 85xx/86xx processors.
+
+    This can help to use the same u-boot image across the platforms.
+
+    Also revamped and corrected few Freescale Copyright messages.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Fri Jul 31 12:07:45 2009 +0530
+
+    8xxx: Refactored common cpu specific code for 85xx/86xx into one file.
+
+    Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c
+    and moved to cpu/mpc8xxx/cpu.c(new file)
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7b18c227b847e4782eb1492219ebd555f521b08b
+Author: Alex Dubov <oakad@yahoo.com>
+Date:  Fri Aug 7 15:28:32 2009 +1000
+
+    stx: create common vendor/board hierarchy for STx boards
+
+    Move files belonging to the STx boards into common vendor directory and
+    update the Makefile to reflect this.
+
+    Signed-off-by: Alex Dubov <oakad@yahoo.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit bafdf9aa9dbb69d937b72db17ed5800998c59523
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Aug 4 17:38:00 2009 -0500
+
+    85xx: Remove unused CONFIG_CLEAR_LAW0 defines
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 73aacc522849486b60a5611f678f0bf1c3053779
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Aug 6 18:38:43 2009 -0500
+
+    86xx: Remove redudant PLATFORM_CPPFLAGS
+
+    For historic reasons we had defined some additional PLATFORM_CPPFLAGS like:
+
+    PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1
+    PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1
+
+    However these are all captured in the config.h and thus redudant.  Also
+    moved common 86xx flags into cpu/mpc86xx/config.mk.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 53efa1f1acacacb76fa9a21b09b3294783a11c03
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Aug 6 18:28:34 2009 -0500
+
+    85xx: Remove redudant PLATFORM_CPPFLAGS
+
+    For historic reasons we had defined some additional PLATFORM_CPPFLAGS
+    like:
+
+    PLATFORM_CPPFLAGS += -DCONFIG_E500=1
+    PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
+    PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
+
+    However these are all captured in the config.h and thus redudant.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Jul 30 15:54:07 2009 -0500
+
+    85xx: Add a 36-bit physical configuration for MPC8536DS
+
+    We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
+    to allow for larger memory sizes.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Aug 4 09:10:03 2009 -0500
+
+    85xx: Cleanup whitespace in mpc8536ds.c
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ad19e7a5d2de337064ce7728d6504df9648f5d31
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Aug 5 07:59:35 2009 -0500
+
+    pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory
+
+    The old PCI ATMU setup code would just mimic the PCI regions into the
+    ATMU registers.  For simple memory maps in which all memory, MMIO, etc
+    space fit into 4G this works ok.  However there are issues with we have
+    >4G of memory as we know can't access all of memory and we need to
+    ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with
+    anything since we can't turn it off.
+
+    We first setup outbound windows based on what the board code setup
+    in the pci regions for MMIO and IO access. Next we place PCICSRBAR
+    below the MMIO window.  After which we try to setup the inbound windows
+    to map as much of memory as possible.
+
+    On PCIe based controllers we are able to overmap the ATMU setup since
+    RX & TX links are separate but report the proper amount of inbound
+    address space to the region tracking to ensure there is no overlap.
+
+    On PCI based controllers we use as many inbound windows as available to
+    map as much of the memory as possible.
+
+    Additionally we changed all the CCSR register access to use proper IO
+    accessor functions.  Also had to add CONFIG_SYS_CCSRBAR_PHYS to some
+    86xx platforms that didn't have it defined.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 8295b94400449586505ffe34ec024feb3d2c8fe4
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Aug 5 07:49:27 2009 -0500
+
+    pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe
+
+    Change the code to use the PCIe capabilities register to determine if we
+    are a PCIe controller or not.  Additionally cleaned up some white space
+    and formatting in the file.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit cb151aa2cf5fbb1e412fc763a3a611758f066238
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Aug 3 21:02:02 2009 -0500
+
+    pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
+
+    Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows
+    before it calls fsl_pci_init.  There isn't any reason to just call it
+    from fsl_pci_init and simplify things a bit.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fb3143b35eb5890ec72e79d17a6068a84a057d47
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Aug 3 20:44:55 2009 -0500
+
+    pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
+
+    Every platform that calls fsl_pci_init calls pci_setup_indirect before
+    it calls fsl_pci_init.  There isn't any reason to just call it from
+    fsl_pci_init and simplify things a bit.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 28887d831b02c66ccc10d7f1379204b5a62f4543
+Author: André Schwarz <andre.schwarz@matrix-vision.de>
+Date:  Thu Aug 27 14:48:35 2009 +0200
+
+    Use common code for Matrix Vision boards
+
+    Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
+    using common code.
+
+    Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
+
+commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Wed Aug 26 21:27:37 2009 -0500
+
+    mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
+
+    apparently the ITX was missed last round.
+
+    Also make bootdelay consistent with other boards, so as to give on the
+    opportunity to fix mistakenly set bootcmd without having checked for an
+    bootdelay zero setting first.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit cc861f7127f200e704baaf061a7f508e3c93f2a3
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Wed Aug 26 21:25:46 2009 -0500
+
+    mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Tue Aug 18 10:10:42 2009 -0400
+
+    NAND: DaVinci: V2 Adding 4 BIT ECC support
+
+    This patch adds 4 BIT ECC support in the DaVinci NAND
+    driver. Tested on both the DM355 and DM365.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Mon Aug 10 13:27:56 2009 -0400
+
+    MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
+
+    This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to
+    support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND
+    chips.  This ECC mode is similar to NAND_ECC_HW, with the exception of
+    read_page API that first reads the OOB area, reads the data in chunks,
+    feeds the ECC from OOB area to the ECC hw engine and perform any
+    correction on the data as per the ECC status reported by the engine.
+
+    This patch has been accepted by Andrew Morton and can be found at
+
+    http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Tue Aug 11 02:32:54 2009 +0400
+
+    mxc_nand: add nand driver for MX2/MX3
+
+    Driver for NFC NAND controller found on Freescale's MX2 and MX3
+    processors. Ported from Linux. Tested only with i.MX27 but should
+    works with other MX2 and MX3 processors too.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit a2c65b47effcb3d0aa23e58596538acd338ac7c5
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Mon Aug 10 13:27:46 2009 -0400
+
+    NAND: ADD page Parameter to all read_page/read_page_raw API's
+
+    This patch adds a new "page" parameter to all NAND read_page/read_page_raw
+    APIs.  The read_page API for the new mode ECC_HW_OOB_FIRST requires the
+    page information to send the READOOB command and read the OOB area before
+    the data area.
+
+    This patch has been accepted by Andrew Morton and can be found at
+    http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch
+
+    WE would like this to become part of the u-boot GIT as well
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit de4250929f37e6c16860741b74546bedbe0bdaba
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Jul 21 17:13:40 2009 +0200
+
+    83xx, kmeter1: added NAND support
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Tue Jul 21 11:58:04 2009 +0900
+
+    OneNAND: Remove unused read_spareram
+
+    Remove unused read_spareram and add unlock_all as kernel does
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 403ce1f759b5acec8514cd7e10ce76704fed519c
+Author: Matthias Kaehlcke <matthias@kaehlcke.net>
+Date:  Thu Jul 16 21:19:29 2009 +0200
+
+    KB9202: Add NAND support
+
+    Add KB9202 NAND driver
+
+    Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Tue Jul 21 11:58:04 2009 +0900
+
+    OneNAND: Remove unused read_spareram
+
+    Remove unused read_spareram and add unlock_all as kernel does
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Tue Aug 25 10:30:26 2009 -0500
+
+    galaxy5200: Cleanup typo and trailing whitespace
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit f6a309080b2da9e509b5ee8d091dca5e175415b7
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Wed Jul 22 18:42:45 2009 +0000
+
+    ColdFire: Fix compile warning messages
+
+    Change %08lX to %08X in board.c. Remove unused variable
+    'oscillator' in mcf5227x/cpu_init.c and 'scm2' in
+    mcf532x/cpu_init.c. Provide argument type cast in
+    drivers/dma/MCD_dmaApi.c.
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 88c811b153771a3d1bfe958297c69722efb278e9
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Wed Jul 22 16:32:39 2009 +0000
+
+    ColdFire: Fix missing _IO_BASE which caused compile error
+
+    The compile error was caused by a recent patch. Affected platforms -
+    M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE
+    automatically defined to 0 in asm-m68k/io.h if it isn't set in
+    platform configuration file.
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Wed Jul 22 17:13:24 2009 +0200
+
+    Support up to 7 banks for ids as specified in JEDEC JEP106Z
+
+    see http://www.jedec.org/download/search/jep106Z.pdf
+    Add some second source legacy flash chips 256x8.
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 0d071cdd782e917b43e04869843df31670231ffd
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Aug 24 14:32:26 2009 -0500
+
+    net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete
+
+    if you don't have firmware installed for the PHY to come to life, this
+    wait can be painful - let's give the option to avoid it if we want.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Thu Aug 20 10:50:20 2009 -0400
+
+    Add Transfer Size Option to tftp
+
+    Optionally add RFC 2349 "Transfer Size Option", so we can minimize the
+    time spent sending data over the UART (now print a single line during a
+    tftp transfer).
+
+     - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file.
+     - if receives the file size, a single line (50 chars) are printed.
+        one hash mark == 2% of the file downloaded.
+     - if it doesn't receive the file size (the server doesn't support RFC
+        2349, prints standard hash marks (one mark for each UDP frame).
+
+    Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 488feef85229c08cd3aa1fa183bc8f483d2ae832
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Mon Aug 24 10:33:39 2009 -0400
+
+    Add debug message for Blackfin Ethernet Rx function.
+
+    Add a simple print for the Blackfin's Ethernet Rx function,
+    so we can debug incomming Ethernet functions easier.
+
+    Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b1c0eaac110bc919e5b4e88821348e714493f266
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue Aug 25 13:09:37 2009 -0700
+
+    Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
+
+    All in-tree boards that use this controller have CONFIG_NET_MULTI added
+    Also:
+      - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900
+      - changed CS8900_BASE to CONFIG_CS8900_BASE
+      - changed CS8900_BUS?? to CONFIG_CS8900_BUS??
+      - cleaned up line lengths
+      - modified VCMA9 command function that accesses the device
+      - removed MAC address initialization from lib_arm/board.c
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+    Tested-by: Wolfgang Denk <wd@denx.de>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+
+commit d47628a6ecf80cd4584a50b6c795b90c985a48e5
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Aug 7 13:59:26 2009 +0200
+
+    arm nomadik: activate defrag choose 4k transfer block size
+
+    This chooses 4kB data size for both TFTP and NFS, as an example
+    about how to use support for IP fragments.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit bd931ca61c84039241d438ade4a9755ae0e5372f
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Aug 7 13:59:16 2009 +0200
+
+    nfs: accept CONFIG_NFS_READ_SIZE from config file
+
+    To take advantage of defragmented packets, the config file
+    can define CONFIG_NFS_READ_SIZE to override the 1kB default.
+    No support is there for an environment variable by now.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 89ba81d1079a07b8430a98c1746c6d411312eb0d
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Aug 7 13:59:06 2009 +0200
+
+    tftp: get the tftp block size from config file and from the environment
+
+    Increasing the block size is useful if CONFIG_IP_DEFRAG is
+    used. Howerver, the last fragments in a burst may overflow the
+    receiving ethernet, so the default is left at 1468, with thre new
+    CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
+    can be set in the environment.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Aug 7 13:58:56 2009 +0200
+
+    net: defragment IP packets
+
+    The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
+    useful for TFTP and NFS transfers. The user can specify the maximum
+    defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
+    Since NFS has a bigger per-packet overhead than TFTP, the static
+    reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
+
+    The packet buffer is used as an array of "hole" structures, acting as
+    a double-linked list. Each new fragment can split a hole in two,
+    reduce a hole or fill a hole. No support is there for a fragment
+    overlapping two diffrent holes (i.e., thre new fragment is across an
+    already-received fragment).
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
+Author: Feng Kan <fkan@amcc.com>
+Date:  Fri Aug 21 10:59:42 2009 -0700
+
+    ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
+
+    Fix ECC Correction bug where the byte offset location were double
+    flipped causing correction routine to toggle the wrong byte location
+    in the ECC segment. The ndfc_calculate_ecc routine change the order
+    of getting the ECC code.
+           /* The NDFC uses Smart Media (SMC) bytes order */
+           ecc_code[0] = p[2];
+           ecc_code[1] = p[1];
+           ecc_code[2] = p[3];
+    But in the Correction algorithm when calculating the byte offset
+    location, the s1 is used as the upper part of the address. Which
+    again reverse the order making the final byte offset address
+    location incorrect.
+       byteoffs = (s1 << 0) & 0x80;
+       .
+       .
+       byteoffs |= (s0 >> 4) & 0x08;
+    The order is change to read it in straight and let the correction
+    function to revert it to SMC order.
+
+    Signed-off-by: Feng Kan <fkan@amcc.com>
+    Acked-by: Victor Gallardo <vgallardo@amcc.com>
+    Acked-by: Prodyut Hazarika <phazarika@amcc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Thu Aug 13 08:32:37 2009 -0500
+
+    Add support for USB on PSC3 for the mpc5200
+
+    Support USB on PSC3 on the mpc5200.  Before this patch, enabling USB support
+    would reconfigure PSC4 and PSC5 to USB.  The mpc5200 does not support USB
+    enabled on both the standard USB port and PSC3.  This patch masks the
+    appropriate bits when enabling USB.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+    Acked-by: Grant Likely <grant.likely@secretlab.ca>
+    Acked-by: Remy Bohmer <linux@bohmer.net>
+
+commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Thu Aug 13 19:12:44 2009 +0200
+
+    Add driver for the ST M41T94 SPI RTC
+
+    This RTC is used in some Calao boards. The driver code is taken from
+    the linux rtc-m41t94 driver
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Thu Aug 13 15:31:12 2009 +0200
+
+    Switch from per-driver to common definition of bin2bcd and bcd2bin
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit e84aba135ed7145299304ef550e92f08b2c99d7a
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Thu Aug 13 15:31:11 2009 +0200
+
+    Replace BCD2BIN and BIN2BCD macros with inline functions
+
+    In the process, also remove backward-compatiblity macros BIN_TO_BCD and
+    BCD_TO_BIN and update the sole board using them to use the new bin2bcd
+    and bcd2bin instead
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+    Acked-by: Detlev Zundel <dzu@denx.de>
+
+commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0
+Author: Eric Millbrandt <emillbrandt@coldhaus.com>
+Date:  Thu Aug 13 10:14:21 2009 -0500
+
+    Add support for the galaxy5200
+
+    Add support for the DEKA Research and Development galaxy5200 board
+
+    The galaxy5200 is an Freescale mpc5200 based embedded industrial
+    control board.
+
+    Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
+
+commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jul 24 16:34:32 2009 -0400
+
+    unify {CONFIG_,}ENV_IS_EMBEDDED
+
+    Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED
+    manually.  While it is useful to have this available to the build system,
+    let's do it automatically rather than forcing people to opt into it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Mon Jul 27 00:07:59 2009 -0400
+
+    Add md5sum and sha1 commands...
+
+    Now that we have sha1 and md5 in lib_generic, allow people to use
+    them on the command line, for checking downloaded files.
+
+    Signed-off-by: Robin Getz <rgetz@analog.com>
+
+commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Aug 25 12:22:38 2009 +0200
+
+    include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
+
+    The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 20 19:17:59 2009 -0400
+
+    Blackfin: fix typos in gpio comments
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
+Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+Date:  Tue Aug 18 04:49:57 2009 -0400
+
+    Blackfin: cm-bf527/cm-bf537: increase flash sectors
+
+    Newer revisions of these boards have slightly larger flashes, so increase
+    the configured number of sectors so that U-Boot works on all revisions.
+
+    Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Aug 23 14:14:52 2009 +0200
+
+    sh/rsk7203: add missing include net.h
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Aug 23 02:47:59 2009 -0400
+
+    start a linker script helper file
+
+    Start a common header file for common linker script code (such as
+    workarounds for older linkers) rather than doing this in the build system.
+
+    As fallout, we no longer execute the linker every time config.mk is
+    included by a build file (which can easily be 70+ times), but rather only
+    execute it once.
+
+    This also fixes a bug in the major version checking by creating a macro to
+    easily compare versions and keep people from making the same common
+    mistake (forgetting to check major and minor together).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2ed0869d30602eb660569eababb8fedff36bd23a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Aug 22 19:50:22 2009 -0400
+
+    Blackfin: use common code to preprocess linker script
+
+    Now that the common code preprocesses the linker script, the Blackfin code
+    no longer needs to do it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Aug 22 19:48:56 2009 -0400
+
+    .gitignore: ignore generated u-boot.lds
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 79b91de958511840d2a7491be92d435b7ef43f17
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Sat Aug 22 14:21:53 2009 +0200
+
+    include/mmc.h: Fix typo in IS_SD() macro
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Aug 22 23:27:26 2009 +0200
+
+    Prepare 2009.08-rc3
+
+    Update CHANGELOG, minor Coding Style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Fri Aug 21 06:52:25 2009 +1000
+
+    qemu-mips: Fix Qemu website
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+    Signed-off-by: Michal Simek <michal.simek@petalogix.com>
+    Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Aug 21 16:34:38 2009 -0500
+
+    mpc83xx: accommodate larger kernel sizes by default
+
+    linux mpc83xx_defconfig kernels are getting bigger, accommodate for
+    their growth by adjusting default load and fdt addresses.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Aug 21 16:33:15 2009 -0500
+
+    mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
+
+    when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
+    at either:
+
+    NET: Registered protocol family 16
+
+    or the
+
+    io scheduler cfq registered
+
+    message.  Fixing up these DDR settings appears to fix the problem.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 27c5248dd4c9ba4a36899689595956c5e59e349a
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Aug 21 16:31:20 2009 -0500
+
+    mpc83xx: tqm8349 - remove pci & flash window conflict
+
+    commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
+    remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
+    tqm834x to make it more consistent with the other 83xx boards.  During
+    that time however, the author failed to realize that FLASH_BASE was
+    occupying the same range as what PCI1_MEM_BASE was being assigned.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Tested-by: Wolfgang Denk <wd@denx.de>
+
+commit 6d2c26ac831f033b0025cfb256365a047f8dd115
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Aug 21 16:30:30 2009 -0500
+
+    mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Aug 21 16:27:05 2009 -0500
+
+    mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
+
+    This was introduced with the MPC8349EMDS board, and then copied to
+    a couple other boards by nature of being the reference implementation.
+
+      u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
+      include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
+      include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
+      include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
+      u-boot$
+
+    It currently isn't used, so delete it before it spreads further.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c0d660fbbede322648ec79d3e39389e48f5fab24
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Fri Aug 21 16:21:58 2009 -0500
+
+    mpc83xx: sbc8349 - make enabling PCI more user friendly
+
+    Prior to this commit, to enable PCI, you had to go manually
+    edit the board config header, which isn't really user friendly.
+    This adds the typical PCI make targets to the toplevel Makefile
+    in accordance with what is being done with other boards.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit a3c5057a6c05b4c7235a270486220e4511366133
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Aug 7 23:37:54 2009 +0200
+
+    eeprom_m95xxx: remove unused variable i
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Fri Jul 17 15:02:42 2009 +0400
+
+    jffs2: some fixes to summary support
+
+    This patch fixes some issues with JFFS2 summary support in U-Boot.
+    1/ Summary support made compilation configurable (as summary support
+    considered expiremental even in Linux).
+    2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
+    We need to get data byte by byte to exclude data aborts.
+    3/ Make summary scan in two passes so we can safely fall back to full
+    scan if we found unsupported entry in the summary.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 11906936e168d12d684bb3d2930a62693ba3d84e
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Aug 10 18:55:54 2009 +0530
+
+    arm: rd6281a: Fixed NAND specific warning
+
+    It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
+    for NAND specific warning removal, same is done in this patch
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Aug 13 00:37:16 2009 +0200
+
+    TRAB: make independent of specific libgcc helper routines
+
+    The TRAB board references local libgcc helper routines
+    (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
+    when we try to use the normal, compiler provided libgcc instead.
+    Removing these references allows to build both with and without the
+    local libgcc helper routines.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 1aada9cd643567d351667138851e9231ccfa245a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 17 14:00:53 2009 +0200
+
+    Fix all linker scripts for older binutils versions (pre-2.16)
+
+    Commit f62fb99941c6 fixed handling of all rodata sections by using a
+    wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
+    and SORT_BY_NAME().  Unfortunately these functions were only
+    introduced with biunutils version 2.16, so the modification broke
+    building with all tool chains using older binutils.
+
+    This patch makes it work again.  This is done by omitting the use of
+    these functions for such old tool chains.  This will result in
+    slightly larger target binaries, as the rodata sections are no longer
+    in optimal order alignment-wise which reauls in unused gaps, but the
+    effect was found to be insignificant - especially compared to the fact
+    that you cannot build U-Boot at all in the current state.
+
+    As ld seems to have no support for conditionals we run the linker
+    script through the C preprocessor which can be easily used to remove
+    the unwanted function calls.
+
+    Note that the C preprocessor must be run with the "-ansi" (or a
+    "-std=") option to make sure all the system-specific predefined
+    macros outside the reserved namespace are suppressed. Otherise, cpp
+    might for example substitute "powerpc" to "1", thus corrupting for
+    example "OUTPUT_ARCH(powerpc)" etc.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Mike Frysinger <vapier@gentoo.org>
+
+commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 17 13:17:29 2009 +0200
+
+    ARM: compiler options cleanup - improve tool chain support
+
+    For some time there have been repeated reports about build problems
+    with some ARM (cross) tool chains. Especially issues about
+    (in)compatibility with the tool chain provided runtime support
+    library libgcc.a caused to add and support a private implementation
+    of such runtime support code in U-Boot.  A closer look at the code
+    indicated that some of these issues are actually home-made.  This
+    patch attempts to clean up some of the most obvious problems and make
+    building of U-Boot with different tool chains easier:
+
+    - Even though all ARM systems basicy used the same compiler options
+      to select a specific ABI from the tool chain, the code for this was
+      distributed over all cpu/*/config.mk files.  We move this one level
+      up into lib_arm/config.mk instead.
+
+    - So far, we only checked if "-mapcs-32" was supported by the tool
+      chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
+      selected, no matter if the tool chain actually understood this
+      option.  There was no support for EABI conformant tool chains.
+      This patch implements the following logic:
+
+      1) If the tool chain supports
+       "-mabi=aapcs-linux -mno-thumb-interwork"
+        we use these options (EABI conformant tool chain).
+      2) Otherwise, we check first if
+       "-mapcs-32"
+        is supported, and then check for
+       "-mabi=apcs-gnu"
+        If one test succeeds, we use the first found option.
+      3) In case 2), we also test if "-mno-thumb-interwork", and use
+        this if the test succeeds. [For "-mabi=aapcs-linux" we set
+        "-mno-thumb-interwork" mandatorily.]
+
+      This way we use a similar logic for the compile options as the
+      Linux kernel does.
+
+    - Some EABI conformant tool chains cause external references to
+      utility functions like raise(); such functions are provided in the
+      new file lib_arm/eabi_compat.c
+
+      Note that lib_arm/config.mk gets parsed several times, so we must
+      make sure to add eabi_compat.o only once to the linker list.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Dirk Behme <dirk.behme@googlemail.com>
+    Cc: Magnus Lilja <lilja.magnus@gmail.com>
+    Cc: Tom Rix <Tom.Rix@windriver.com>
+    Cc: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Sergey Kubushyn <ksi@koi8.net>
+    Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
+    Tested-by: Andrzej Wolski <awolski@poczta.fm>
+    Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
+    Tested-by: Tom Rix <Tom.Rix@windriver.com>
+    Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 269610f6ba2e4a7bc27d2e53d43160614016964f
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Thu Jul 30 17:56:51 2009 +0800
+
+    NAND boot: fix nand_load overlap issue
+
+    The code copy data from NAND flash block by block, so when
+    the data length isn't a whole-number multiple of the block
+    size, it will overlap the rest space.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
+Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
+Date:  Fri Jul 31 17:30:34 2009 -0500
+
+    add WATCHDOG_RESET() on nand write and read
+
+    Signed-off-by: giulio.benetti@micronovasrl.com
+    Acked-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Feb 4 15:14:05 2009 -0600
+
+    tsec: Wait for auto-negotiation to complete without link
+
+    Previously, waiting for auto-negotiation would only occur if a valid
+    link had been detected.  Problems arose when attempting to use a
+    tsec immediately after bootup but before link was achieved, eg:
+    => dhcp
+    Auto-neg error, defaulting to 10BT/HD
+    eTSEC1: No link.
+    Auto-neg error, defaulting to 10BT/HD
+    eTSEC2: No link.
+    =>
+
+    With this patch applied the same operation as above resulted in:
+    => dhcp
+    Waiting for PHY auto negotiation to complete. done
+    Enet starting in 1000BT/FD
+    Speed: 1000, full duplex
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Thu Aug 20 10:14:11 2009 +0200
+
+    arm: kirkwood: See to it that sent data is 8-byte aligned
+
+    U-boot might use non-8-byte-aligned addresses for sending data, which
+    the kwgbe_send doesn't accept (bootp does this for me). This patch
+    copies the data to be sent to a malloced temporary buffer if it is
+    non-aligned.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit cad713bf7548b9e90433dac8270165402a6c9cc3
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Thu Aug 20 10:13:06 2009 +0200
+
+    Wait for the link to come up on kirkwood network init
+
+    This patch makes the device wait for up to 5 seconds for the link to
+    come up, similar to what many of the other network drivers do. This
+    avoids confusing situations where, e.g., a tftp fails when initiated
+    early after U-boot has started (before the link has come up).
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Thu Aug 20 10:12:28 2009 +0200
+
+    arm:kirkwood Define kirkwood phy address magic number
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit f81ecb5d3300bf92d17302d3712f30585c182da9
+Author: Timur Tabi <timur@freescale.com>
+Date:  Mon Aug 17 15:55:38 2009 -0500
+
+    e1000: fix PCI memory addressing
+
+    The Intel E1000 driver was making assumptions about the relationship between
+    some virtual, physical, and PCI addresses.
+
+    Also fix some bad usage of the DEBUGOUT macro
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Acked-by: Kumar Gala <galak@kernel.crashing.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Wed Aug 12 16:42:48 2009 +0400
+
+    jffs2: clean the cache in case of malloc fails in build_lists
+
+    We should call jffs2_clean_cache() if we return from jffs2_build_lists()
+    with an error to prevent usage of incomplete lists. Also we should
+    free() a local buffer to prevent memory leaks.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
+Author: Heiko Schocher <hs@denx.de>
+Date:  Wed Aug 12 10:17:03 2009 +0200
+
+    ppc: trigger WDT before starting Linux
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 918319c705d8a3d6251919a660baef32ff3a829a
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Wed Jul 22 18:30:03 2009 +0200
+
+    Update the mtd driver name in bootargs for at91-based boards
+
+    The name of the atmel nand driver in the kernel changed from at91_nand
+    to atmel_nand back in June 2008, but the at91-based boards config files
+    still refer to at91_nand. This patch updates them with the new name
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
+Author: Ben Goska <goskab@onid.oregonstate.edu>
+Date:  Fri Aug 14 10:03:36 2009 -0700
+
+    omap3: Fixed a problem with hwecc
+
+    In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
+    was a typo that offset all the ecc registers by 4 bytes, fixed that.
+
+    Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Aug 17 16:57:53 2009 +0200
+
+    ppc4xx: Fix "chip_config" command for AMCC Arches
+
+    This patch fixes the "chip_config" command for I2C bootstrap EEPROM
+    configuration. First it changes the I2C bootstrap EEPROM address to
+    0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
+    Glacier). Additionally, the NAND bootstrap settings are removed
+    for Arches since Arches doesn't support NAND-booting.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4af34177b657e91263919a307fd0b0865a299e52
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Aug 16 23:40:13 2009 +0200
+
+    Monahans: avoid floating point calculations
+
+    Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
+    which caused floating point operations to be used. This resulted in
+    unresolved references to some FP related libgcc functions when using
+    U-Boot's private libgcc functions.
+
+    Change the code to use fixed point math only.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Aug 14 16:43:22 2009 -0500
+
+    85xx: Fix addrmap to include memory
+
+    When we init the addrmap based on the TLB we will not end up getting
+    the TLB that covers memory if we are using SPD.  The reason is we
+    haven't relocated at the point that we setup the memory TLB and thus it
+    will not get setup in the addrmap.
+
+    Instead we can just walk over the TLB array after we've relocated and
+    see all the TLBs that have been set and use that information to populate
+    the initial addrmap.  By doing this we insure that we get the TLB
+    entries that cover memory.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
+Author: John Schmoller <jschmoller@xes-inc.com>
+Date:  Wed Aug 12 10:55:47 2009 -0500
+
+    flash: Fix CFI buffer size bug
+
+    Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
+
+    The cfi_flash.c driver cast the flash buffer size to a uchar in
+    flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
+    part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
+    uchar to enable buffer sizes to be larger.
+
+    Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f6e3a1fa92f61083885178101e973c86b419a6f7
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 13 00:32:14 2009 -0400
+
+    trab: rename spi_init()
+
+    The local board-specific spi_init() function conflicts with the common SPI
+    layer, so rename it to something board-specific.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 253cb831f5861358a7fa673305cdf7ded1096f44
+Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
+Date:  Wed Jul 29 06:05:20 2009 -0400
+
+    zlib: add watchdog reset call
+
+    This patch adds watchdog reset call to allow its invokation during decompression
+    phase. This control was present on old zlib version and here it is
+    backported for those relevant routines. This patch is sent as a zlib separate
+    one beacuse it was not tested due to specific board lack.
+    zlib patches will be unified just in one when this will be validated through
+    tests.
+
+    Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+
+commit dce3d797102b6618e8bdd4a09cfd35969f165d86
+Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
+Date:  Wed Jul 29 08:05:08 2009 -0400
+
+    zlib: updated to v.1.2.3
+
+    This patch updates zlib to the latest stable version.
+    Only relevant zlib parts were ported to u-boot tree, as already did for the
+    current zlib (0.95). New zlib guarantees a faster inflate performances
+    other then others improvements as explained at www.zlib.net.
+    It also includes Alessandro Rubini's patches to allow 0 as destination pointer
+    and to call watchdog reset if required by architecture.
+
+    Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+    Reviewed-by: Angelo Castello <angelo.castello@st.com>
+    Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
+
+commit 3426d65daab6af483b177ed502038f52ed2e5aef
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Aug 11 10:37:58 2009 +0200
+
+    dtt, lm81: move unneccessary printf into a debug printf
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Tue Aug 11 11:33:47 2009 +0100
+
+    MIMC200: reduce LCD pixclock
+
+    The initial pixclock for the MIMC200 board is wrong (and causes
+    screen corruption due to DMA underruns).
+
+    This patch simply reduces the pixel clock to fix the problem.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Wed Jul 1 14:04:05 2009 -0400
+
+    UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
+
+    Fixed a misunderstanding in the original implementation, 'devnum' that
+    was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
+    PHY's SMI address, rather it was the number of the MAC interface on
+    the CPU. The equivalent of this for uec_phy will be the UEC number
+    stored in mii_info->dev->name. Usage example is updated for uec.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Wed Jul 1 14:03:15 2009 -0400
+
+    Assigned a static SMI address to all UECs TBIPA address.
+
+    It is set to 0x1F by default and can be overwritten on the board
+    header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
+    the CPU to simply "reserve" one SMI address instead of using
+    a different one for each UEC.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Aug 10 19:43:06 2009 +0530
+
+    net: kirkwood: updates: used eth_setenv_enetaddr api
+
+    eth_setenv_enetaddr is avaible by upper layer
+    using this saves 204 bytes on total image size
+
+    used Local OUI instead of Marvell OUI for
+    random MAC address generation logic
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Tue Aug 11 03:48:05 2009 +0800
+
+    Fix E1000 build warning on AP1000 board
+
+     Fix E1000 build warning on AP1000 board
+     Fix the build warning on AP1000 board:
+     e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
+     e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
+
+    Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b3af1d698b031e721bacaee8715d79daaf823de6
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Mon Aug 10 12:24:40 2009 -0400
+
+    ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
+
+    Due to recent changes to the NET support on U-boot, DM9000
+    is no longer detected on the DM355 EVM.
+    This minor update enables DM9000 on the DM355 EVM.
+    Tested on the DM355 EVM
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 08c2df33f1cd5935938486e968696f94ad406313
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Aug 10 19:23:19 2009 +0530
+
+    net: phy: bugfixes: mv88E61xx compiler warnings fixed
+
+    1. mv88E61xx driver compiler warnings fixed
+    2. idstr if-else statements changed to switch() construct
+       and added default case too.
+       This fixed idstr may be uninitialized warning
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 750326e5d540885e3ec36bda9464b8269249f6ce
+Author: Po-Yu Chuang <ratbert@faraday-tech.com>
+Date:  Mon Aug 10 11:00:00 2009 +0800
+
+    arm: A320: driver for FTMAC100 ethernet controller
+
+    This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
+
+    Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit f90dc43fd67eea71124b999a7d5e617d0d86795b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Aug 10 16:40:55 2009 -0500
+
+    85xx: Removed BEDBUG support from FSL 85xx boards
+
+    For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
+    got copied int the MPC8536, MPC8572 and P2020 DS boards.  The BEDBUG
+    support has never been made to work completely on e500/85xx so we
+    just disable it to save space and match the other FSL 85xx boards.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit eb1a4d0a471505c169bef19a73a60f8641f0b875
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 10 10:39:12 2009 +0200
+
+    Prepare 2009.08-rc2
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 53cc18c71b2b920cca171874c6663e274fa80556
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 10 10:38:34 2009 +0200
+
+    Minor coding style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit d371708a1beda0f529756e614af785b30461379e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Aug 10 09:59:10 2009 +0200
+
+    net/tftp.c: fix warning: pointer targets differ in signedness
+
+    tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
+    differ in signedness
+
+    This was only visible for the utx8245 board which seems to have DEBUG
+    enabled.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sat Aug 8 16:06:47 2009 +0200
+
+    ARM Cortex A8: Remove bogus config.mk entries
+
+    Remove bogus config.mk entry, fix newline and remove redundant
+    omap3/config.mk
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit cd3dcba1422d3441503251fbc69cf2437c440781
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sat Aug 8 12:46:09 2009 +0200
+
+    OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
+
+    Applying two indepenent OMAP3 patches resulted in missing
+    GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
+    config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
+    "omap3: bug fix for NOR boot support" introduces it's usage.
+    Re-introduce GPMC_CONFIG_CS0_BASE.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit ba3dbaf281130029ecb970a922551902c1d80b50
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Jun 8 04:12:49 2009 +0400
+
+    mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
+
+    This is a port of Linux driver for SDHC host controller hardware
+    found on Freescale's MX2 and MX3 processors. Uses new generic MMC
+    framework (CONFIG_GENERIC_MMC) and it looks like there are some
+    problems with a framework (at least on LE cpus). Some of these
+    problems are addressed in the following patches.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 642d7b63c343633dcafc4e23a20e32604a05ff13
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Aug 7 12:35:47 2009 +0200
+
+    kirkwood/gpio.h: remove duplicate definition
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+
+commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
+Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+Date:  Fri Aug 7 12:37:36 2009 +0200
+
+    Add driver for the ST M95xxx SPI EEPROM
+
+    This chip is used in a number of boards manufactured by Calao-Systems
+    which should be supported soon. This driver provides the necessary
+    spi_read and spi_write functions necessary to communicate with the chip.
+
+    Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
+
+commit 30951960bae9a2c33e324a7165962a082e913f9e
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Fri Aug 7 22:27:32 2009 +0530
+
+    arm: Sheevaplug: Fixed NAND specific warning
+
+    It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
+    for NAND specific warning removal, same is done in this patch
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 317734966e763fdee183898c0ed940c9bada2541
+Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
+Date:  Fri Aug 7 13:53:20 2009 -0400
+
+    Dual-license IBM code contributions
+
+    It was brought to our attention that U-Boot contains code derived from the
+    IBM OpenBIOS source code originally provided with some of the older PowerPC
+    4xx development boards.  As a result, the original license of this code has
+    been carried in the various files for a number of years in the U-Boot project.
+
+    IBM is dual-licensing the IBM code contributions already present in U-Boot
+    under either the terms of the GNU General Public License version 2, or the
+    original code license already present.
+
+    Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
+
+commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Aug 5 09:03:54 2009 -0500
+
+    fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
+
+    If the size of a region equal to 4G it can't be represnted in a 32-bit
+    BAR so we should have marked that case as MEM64.
+
+    Additionally bump the number of inbound windows up to 4 to handle the
+    fact that Freescale PPCs that have an implicit window for CCSRBAR.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 59b4d7471c42e955bd9846892a0cc7478171778d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Aug 6 21:29:59 2009 +0200
+
+    ARM EABI: add new helper functions resp. function names
+
+    The ARM EABI defines new names for GCC helper functions,
+    and GCC seems to need some new functions as well.
+
+    This patch is a minimal-invasive approach to fix problems with EABI
+    conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Tested-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 197324d7d998a791e5137b8176981b4af25220ae
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Aug 5 16:18:44 2009 -0500
+
+    hush: Fix bogus free() call
+
+    An off-by-one error in hush.c resulted in an unintentional free() call
+    every time a command was executed
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed Aug 5 18:37:45 2009 +0200
+
+    digsy_mtc: Update default environment
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed Aug 5 18:37:44 2009 +0200
+
+    digsy_mtc: Add delay in SPI transfers to the companion controller.
+
+    While at it, remove initialization of variables which will be set
+    before usage in all cases.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 0bf00750e082a004e5fb058925622ae72890cc56
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Wed Aug 5 18:37:43 2009 +0200
+
+    digsy_mtc: minor fixes for mtc command help
+
+    Add mtc state subcommand description to the
+    help of mtc command.
+
+    Remove some newlines in description of commands
+    for proper help formating.
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 5cc69084189bf49aa99d13d57515be72d1844bdf
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Wed Aug 5 18:37:42 2009 +0200
+
+    digsy_mtc: Add mtc state command.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jul 28 22:35:39 2009 +0200
+
+    Partition support: remove newline from partition name
+
+    Remove bogus newline character that got added to the .name field of
+    the disk_partition_t structure.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
+Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+Date:  Tue Jul 28 09:33:17 2009 +0200
+
+    Fix LZMA string.h header inclusion issue and remove unused variables.
+
+    Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+
+commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
+Author: Jens Scharsig <esw@bus-elektronik.de>
+Date:  Mon Jul 27 15:28:42 2009 +0200
+
+    bus_vcxk.c: fix warning: unused variable 'lineptr'
+
+    Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
+
+commit 18304f7675e84252965b4e24cba279071f1da472
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jul 24 17:51:27 2009 -0400
+
+    env: kill off default_environment_size
+
+    The only environment type that uses this variable is spi flash, and that is
+    only because it is reimplementing the common set_default_env() function.
+    So fix the spi flash code and kill off the default_environment_size in the
+    process.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bedd8403f77f790e9876578885eab1200ba2f8d8
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 23 16:37:48 2009 -0400
+
+    export SPI functions to standalone apps
+
+    While we're here, fix the broken #ifdef handling in _exports.h.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3b9043a7c03290c9bdbef03848307263f5f3472c
+Author: Penda Naveen Kumar <pnaveen@ti.com>
+Date:  Fri Jul 31 00:06:36 2009 +0530
+
+    omap3: bug fix for NOR boot support
+
+    This patch provides bug fix, when omap3 uses nor boot.
+
+    Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
+Author: Michael Evans <horse_dung@hotmail.com>
+Date:  Mon Jul 13 20:13:45 2009 +0100
+
+    Fix examples for OMAP3 boards...
+
+    The attached patch corrects an error in the examples/Makefile which
+    causes the applications in the examples directory to hang on OMAP3
+    based boards. The current Makefile sets -Ttext during linking to
+    0x0c100000 which is outside of addressable SDRAM memory. The script
+    corrects the existing ifeq...else...endif logic to look at the VENDOR
+    tag rather than the CPU tag.
+
+    The patch affects the following configs: omap3_beagle_config,
+    omap3_overo_config, omap3_evm_config, omap3_pandora_config,
+    omap3_zoom1_config and omap3_zoom2_config.
+
+    Signed-off-by: Michael Evans <horse_dung@hotmail.com>
+
+    Edited commit message.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sat Aug 8 09:30:23 2009 +0200
+
+    omap3: use only fixed-size types inside ctrl_structs
+
+    replace variable types in ctrl_structs for omap3 by those with
+    fixed size (u8, u16, u32).
+    Additional ifndef-protection is needed by examples which do not
+    compile when including asm/types.h
+
+    Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 894113529e3a04871544dde977d6d7adee05d3bf
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sat Aug 8 09:30:22 2009 +0200
+
+    omap3: replace all instances of gpmc config struct by one global
+
+    Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sat Aug 8 09:30:21 2009 +0200
+
+    omap3: remove typedefs for configuration structs
+
+    Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit aa0707897c49c330b7d6b8d8362e44f60f224732
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Fri Jul 31 13:34:02 2009 +0800
+
+    Add Intel E1000 PCIE card support
+
+    Based on Intel PRO/1000 Network Driver 7.3.20-k2
+      Add Intel E1000 PCIE card support. The following cards are added:
+      INTEL_82571EB_COPPER
+      INTEL_82571EB_FIBER,
+      INTEL_82571EB_SERDES
+      INTEL_82571EB_QUAD_COPPER
+      INTEL_82571PT_QUAD_COPPER
+      INTEL_82571EB_QUAD_FIBER
+      INTEL_82571EB_QUAD_COPPER_LOWPROFILE
+      INTEL_82571EB_SERDES_DUAL
+      INTEL_82571EB_SERDES_QUAD
+      INTEL_82572EI_COPPER
+      INTEL_82572EI_FIBER
+      INTEL_82572EI_SERDES
+      INTEL_82572EI
+      INTEL_82573E
+      INTEL_82573E_IAMT
+      INTEL_82573L
+      INTEL_82546GB_QUAD_COPPER_KSP3
+      INTEL_80003ES2LAN_COPPER_DPT
+      INTEL_80003ES2LAN_SERDES_DPT
+      INTEL_80003ES2LAN_COPPER_SPT
+      INTEL_80003ES2LAN_SERDES_SPT
+
+     82571EB_COPPER dual ports,
+     82572EI single port,
+     82572EI_COPPER single port PCIE cards
+     and
+     82545EM_COPPER,
+     82541GI_LF
+     pci cards are tested on both  P2020 board
+     and MPC8544DS board.
+
+     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Jul 15 21:31:28 2009 -0400
+
+    net: sync env ethaddr to device enetaddr in eth_init()
+
+    In the previous enetaddr refactoring, the assumption with commit 56b555a644
+    was that the eth layer would handle the env -> device enetaddr syncing.
+    This was not the case as eth_initialize() is called only once and the sync
+    occurs there.  So make sure the eth_init() function does the env -> device
+    sync with every network init.
+
+    Reported-by: Andrzej Wolski <awolski@poczta.fm>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Thu Jul 23 03:01:03 2009 -0400
+
+    minor debug cleanups in ./net
+
+     Minor ./net cleanups - no functional changes
+      - change #ifdef DEBUG printf(); #endif to just debug()
+      - changed __FUNCTION__ to __func__
+      - got rid of extra whitespace between function and opening brace
+      - removed unnecessary braces on if statements
+
+     gcc dead code elimination should make this functionally/size equivalent
+     when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
+
+     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
+Author: Matthias Ludwig <mludwig@ultratronik.de>
+Date:  Tue May 19 09:09:31 2009 +0200
+
+    omap3: embedd gpmc_cs into gpmc config struct
+
+    Embedd chip select configuration into struct for gpmc config
+    instead of having it completely separated as suggested by
+    Wolfgang Denk on
+    http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
+
+    Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
+
+commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
+Author: David Brownell <david-b@pacbell.net>
+Date:  Thu Jul 16 18:40:55 2009 -0700
+
+    rm9200 lowevel_init: don't touch reserved/readonly registers
+
+    For some reason the AT91rm9200 lowlevel init writes to a bunch of
+    reserved or read-only addresses.  All the boards seem to define the
+    value-to-be-written values as zero ... but they shouldn't actually
+    be writing *anything* there.
+
+    No documented erratum justifies these accesses.  It looks like maybe
+    some pre-release BDI-2000 setup code has been carried along by cargo
+    cult programming since at least late 2004 (per GIT history).
+
+    Here's a patch disabling what seems to be bogosity.  Tested on a
+    csb337; there were no behavioral changes.
+
+    Signed-off-by: David Brownell <david-b@pacbell.net>
+
+    on RM9200ek
+    Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 301b7db88fbdf7d118efb79b371b2527a2c31868
+Author: David Hunter <hunterd42@gmail.com>
+Date:  Thu Jul 30 14:32:49 2009 -0700
+
+    pxa: Fix typo in GCDR(x)
+
+    Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
+
+    Signed-off-by: David Hunter <hunterd42@gmail.com>
+
+commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
+Author: Eric Benard <eric@eukrea.com>
+Date:  Sat Jul 18 23:45:15 2009 +0200
+
+    Add AT91SAM9260 to at91's lowlevel_init.S
+
+    Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
+
+    Signed-off-by: Eric Benard <eric@eukrea.com>
+
+commit 56bdfa961242fc6acaeebc800640a12b28db3899
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Thu Jul 30 09:36:33 2009 +0200
+
+    ppc4xx: Remove check for PPC460EX from CompactCenter
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jul 29 08:46:10 2009 +0200
+
+    ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
+
+    This patch is based on a diff created by Phong Vo from AMCC.
+
+    Signed-off-by: Phong Vo <pvo@amcc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jul 29 08:45:27 2009 +0200
+
+    ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
+
+    This patch is based on a diff created by Phong Vo from AMCC.
+
+    Signed-off-by: Phong Vo <pvo@amcc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 28 15:12:04 2009 +0200
+
+    ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
+
+    Some Canyonlands boards are equipped with different SODIMM's. This is no
+    problem with the "normal" NOR booting Canyonlands U-Boot, since it
+    automatically detects the SODIMM's via SPD data and correctly configures
+    them. But the NAND booting version is different. Here we only have 4k
+    of image size to completely setup the hardware, including DDR2 setup.
+    So we need to use a fixed DDR2 setup here. This doesn't work for different
+    SODIMM's right now.
+
+    Currently only this Crucial SODIMM is support:
+    CT6464AC667.8FB (dual ranked)
+
+    Now some boards are shipped with this SODIMM:
+    CT6464AC667.4FE (single ranked)
+
+    This patch now supports both SODIMM's by configuring first for the dual
+    ranked DIMM. A quick shows, if this module is really installed. If this test
+    fails, the DDR2 controller is re-configured for the single
+    ranked SODIMM.
+
+    Tested with those SODIMM's:
+
+    CT6464AC667.8FB (dual ranked)
+    CT6464AC667.4FE (single ranked)
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 28 10:56:03 2009 +0200
+
+    ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
+
+    This patch moves the load addresses for kernel, fdt and ramdisk to higher
+    addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
+    lockdep enabled).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 28 10:50:32 2009 +0200
+
+    ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
+
+    This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
+    initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
+    Linux kernels (> 8MB) can be booted.
+
+    This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
+    decompression of bigger images.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 901be89a27e11b2627c132ee87c7761bd6886091
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Jul 28 14:53:44 2009 +0200
+
+    83xx, kmeter1, fix: update in the DTS the correct size for the first flash
+
+    When updating the "reg" in the "/localbus/flash@f0000000,0" node
+    size was wrong updated for the first flash, because the total
+    size was filled in, instead of the right size for it.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
+Author: Kumar Gala <kumar.gala@freescale.com>
+Date:  Tue Jul 28 21:49:52 2009 -0500
+
+    Update Freescale copyrights to remove "All Rights Reserved"
+
+    "All Rights Reserved" conflicts with the GPL.
+
+    Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
+
+commit bb4291e62579dbc611e84eaaf973631e0bf129c7
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Fri Jul 24 11:27:14 2009 +0200
+
+    arm nomadik: add i2c
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Fri Jul 24 11:27:03 2009 +0200
+
+    arm nomadik: add gpio support
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 549b98306d897ae5991362d6096a36df50efe686
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:32 2009 -0500
+
+    OMAP3 Remove twl4030 defines
+
+    These defines have been subplanted by the equivelent defines in
+    include/twl4030.h
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit fccc0fcaaae5154612f8259365d26d04f204859f
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:31 2009 -0500
+
+    OMAP3 Move twl4030 mmc function
+
+    Because twl4030 now has its own device files, move and rename
+    twl4030_mmc_config.
+
+    twl4030_mmc_config initializes the twl4030 power setting to
+    the mmc device.  Because it is in the twl4030 power domain, move
+    it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
+
+    The function was renamed to twl4030_power_mmc_init because all
+    the functions in this file are to have the format
+
+    twl4030_power_<device>_<action>
+
+    In this case the suffix is mmc_init so
+    device : mmc
+    action : init
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 2c15513010493435c78f83202940ac3be11de2c3
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:30 2009 -0500
+
+    OMAP3 Move twl4030 power and led functions
+
+    Because twl4030 now has its own device files, move exiting
+    omap3 power_init_r to a new location.
+
+    power_init_r is the only function in board/omap3/common.
+    It initializes the twl4030 power for the board and enables
+    the led.
+
+    The power part of the the function is moved to twl4030_power_init in
+    drivers/power/twl4030.c The power compilation is conditional on the
+    existing config variable CONFIG_TWL4030_POWER.
+
+    The led part is moved to twl4030_led_init in the new file
+    drivers/misc/twl4030_led.c The led compilation is conditional on
+    the new config variable CONFIG_TWL4030_LED
+
+    The directory board/omap3/common was removed because power_init_r
+    was the only function in it.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jul 28 22:13:52 2009 +0200
+
+    TQM8xx* boards: set larger SMC Rx buffer len
+
+    Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
+    8xx systems. Enable this feature on TQM8xx* based boards.
+
+    This fixes the problem that pasting text in the middle of a line
+    (i. e. inserting in edit mode) did not work - only the first two
+    characters got inserted, the rest was lost.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4b7511478b62a539e5b066d19a986b75e5d9a527
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jul 28 22:07:37 2009 +0200
+
+    Fix ext2load return code
+
+    Make the ext2load command return 0 on success (instead of the file
+    length).
+
+    Also fix output format (get rid of random newlines) and some coding
+    style issues (long lines etc.).
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
+Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
+Date:  Wed Jun 10 14:00:37 2009 +0200
+
+    ext2: fix inode size and calculations
+
+    Signed-off-by: unsik Kim <donari75@gmail.com>
+    Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Tested-by: Wolfgang Denk <wd@denx.de>
+
+commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:29 2009 -0500
+
+    TWL4030 Add power reset button
+
+    The Zoom2 power reset button is on the top right side of the
+    main board.  Press and hold for about to 8 seconds to completely
+    reset the board.
+
+    Some of the beta boards have a hardware problem that prevents
+    using this feature.  If is difficult to further characterize the
+    boards that fail.  So disable resetting for all beta boards.
+
+    The Zoom1 reset button is the red circle on the top right,
+    front of the board.  Press and hold the button for 8 seconds to
+    completely reset the board.
+
+    After analyzing beagle, it was determined that other boards
+    that use the twl4030 for power managment can also make use
+    this function.
+
+    The resetting is done by the power management part of the twl4030.
+    Since there is no existing drivers/power, add one.
+
+    The compilation of power/twl4030.h is controlled by the config
+    variable CONFIG_TWL4030_POWER
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:28 2009 -0500
+
+    TWL4030 Add initial support
+
+    The TWL4030 supplies many peripherals for OMAP3 boards. These include
+    power management, usb and, keyboard.
+
+    The product description is found here:
+
+    http://focus.ti.com/docs/prod/folders/print/tps65950.html
+
+    Product reference document, tps65950.pdf, is found here:
+
+    http://www.ti.com/lit/gpn/tps65950
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun Jun 28 12:52:27 2009 -0500
+
+    OMAP I2C Fix the sampling clock.
+
+    This problem is seen on Zoom1 and Zoom2 in the startup and
+    when i2c probe is used
+
+    Before :
+
+    In:    serial
+    Out:   serial
+    Err:   serial
+    timed out in wait_for_bb: I2C_STAT=1000
+    timed out in wait_for_bb: I2C_STAT=1000
+    timed out in wait_for_bb: I2C_STAT=1000
+    timed out in wait_for_pin: I2C_STAT=1000
+    I2C read: I/O error
+    timed out in wait_for_bb: I2C_STAT=1000
+    timed out in wait_for_bb: I2C_STAT=1000
+    Die ID #327c00020000000004013ddd05026013
+    Hit any key to stop autoboot:  0
+    OMAP3 Zoom1# i2c probe
+    Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
+     02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
+
+    After :
+
+    In:    serial
+    Out:   serial
+    Err:   serial
+    Die ID #327c00020000000004013ddd05026013
+    Hit any key to stop autoboot:  0
+    OMAP3 Zoom1# i2c probe
+    Valid chip addresses: 48 49 4A 4B
+
+    The addresses are for the twl4030.
+
+    The prescalar that converts the function clock to the sampling
+    clock is hardcoded to 0.  The reference manual recommends 7
+    if the function clock is 96MHz.
+
+    Instead of just changing the hardcoded values, the prescalar
+    is calculated from the value I2C_IP_CLK.
+
+    The i2c #defines are in kHz.  The speed passed into the
+    i2c init routine is in Hz. To be consistent, change the
+    defines to be in Hz.
+
+    The timing calculations are based on what is done in the
+    linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
+    apposed to what is done in TRM.
+
+    The major variables in the timing caculations are
+    specified as #defines that can be overriden as required.
+
+    The variables and their defaults are
+
+    I2C_IP_CLK                         SYSTEM_CLOCK_96
+    I2C_INTERNAL_SAMPLING_CLK          19200000
+    I2C_FASTSPEED_SCLL_TRIM                    6
+    I2C_FASTSPEED_SCLH_TRIM                    6
+    I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM  I2C_FASTSPEED_SCLL_TRIM
+    I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM  I2C_FASTSPEED_SCLH_TRIM
+    I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM  I2C_FASTSPEED_SCLL_TRIM
+    I2C_HIGHSPEED_PHASE_TWO_SCLH               I2C_FASTSPEED_SCLH_TRIM
+
+    This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
+    The 400kHz and 3.4M cases were verifed on test Zoom1,
+    Zoom2, Beagle and Overo configurations.
+
+    Testing for omap2 will be done in a second step as Nishanth
+    and Jean-Christophe commented.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 4ce5a72851ff2960543b125866c6132e0094e1ee
+Author: Heiko Schocher <hs@denx.de>
+Date:  Mon Jul 20 09:59:37 2009 +0200
+
+    arm, i2c: added support for the TWSI I2C Interface
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 27 09:13:38 2009 +0200
+
+    ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
+
+    This patch fixes the problem, that the current fdt board fixup code only
+    set's one range, the one for NOR. By this it's overwriting the already
+    correctly configured values done in __ft_board_setup(). Just remove this
+    now unneeded NOR fixup and all the ranges are correctly defined.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Dirk Eibach <eibach@gdsys.de>
+    Cc: Felix Radensky <felix@embedded-sol.com>
+
+commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 27 07:42:48 2009 +0200
+
+    ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
+
+    This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
+    chip_config command ("533-nand" and "600-nand").
+
+    Additionally some incorrectly indented lines are fixed.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 5b34691ff87821891375b28ec5bcf5154575a735
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 27 07:42:37 2009 +0200
+
+    ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
+
+    DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
+    targets. Otherwise the configured fixed init values for some DDR2
+    controller registers (e.g. RQDC) are not initialized at all resulting
+    in a non working SDRAM.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 27 10:53:43 2009 +0200
+
+    ppc4xx: Fix Arches DDR2 initialization
+
+    Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
+    initialization is currently broken. U-Boot hangs upon relocation to SDRAM
+    or crashes with random traps. This patch fixes this problem. Arches now
+    uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Mon Jul 27 08:49:48 2009 +0200
+
+    ppc4xx: Add GDsys CompactCenter board support.
+
+    Board support for the Guntermann & Drunck CompactCenter and
+    DevCon-Center.
+    Based on the AMCC Canyonlands board support by Stefan Roese.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c2e49f706ba13213f3c8da3a33e88010214e1997
+Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+Date:  Sat Jul 25 06:19:12 2009 +0200
+
+    mpc83xx: Add esd VME8349 board support
+
+    This patch adds support for the esd VME8349 board equipped with the
+    MPC8349. It's a VME PMC carrier board equipped with the Tundra
+    TSI148 VME-bridge.
+
+    Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Thu Jul 23 17:10:55 2009 -0400
+
+    sbc8349: combine HRCW flash and u-boot image flash
+
+    Up to this point in time, the sbc8349 board was storing the u-boot
+    image in flash 2x. One for the HRCW value at the beginning of
+    flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
+    for the actual image that got executed.
+
+    This moves the TEXT_BASE to be the beginning of flash, which makes
+    the second copy of the image redundant, and frees up the flash
+    from the end of the environment storage to the end of the flash
+    device itself.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit be9b56df02168ca97562d6b9ec791136e4cd925a
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Thu Jul 23 14:09:38 2009 -0500
+
+    mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 10:37:37 2009 +0200
+
+    Prepare 2009.08-rc1 (again, after fixing last minute issues).
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 10:06:39 2009 +0200
+
+    cpu/arm920t/start.S: include <common.h> to have ROUND() defined
+
+    Commit fcd3c87e made include/common.h usable by assembler code but
+    failed to update cpu/arm920t/start.S
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c9ed38cb6de50fdb4aaa60b668c555002903b211
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 10:01:11 2009 +0200
+
+    at91cap9adk: fix #ifdef/#endif pairing (2nd try)
+
+    Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
+    include/configs/at91cap9adk.h, but did not cate all problems.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit fb364bec5f29164d3ee681fcd9d187be8435db12
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 09:58:14 2009 +0200
+
+    Fix include/common.h for boards with CONFIG_STATUS_LED
+
+    The reordering of include/common.h by commit fcd3c87e495f3c48 broke
+    boards with status LED support, resulting in
+       error: #error Status LED configuration missing
+    errors. Undo this reordering to avoid this issue.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 09:19:15 2009 +0200
+
+    ABI: fix build problems due to now needed div64 routine.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 08:50:59 2009 +0200
+
+    PMC405DE: fix out of tree building
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Jul 27 00:24:55 2009 +0200
+
+    Prepare 2009.08-rc1
+
+    Update CHANGELOG, minor coding style fix.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
+Author: rhabarber1848@web.de <rhabarber1848@web.de>
+Date:  Fri Jul 24 08:16:30 2009 +0200
+
+    add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
+
+    Signed-off-by: rhabarber1848@web.de
+
+commit 3c972849f2becbf19c13a24f090d293f37ecf616
+Author: Niklaus Giger <niklaus.giger@member.fsf.org>
+Date:  Thu Jul 23 23:31:58 2009 +0200
+
+    Less verbose output when loading vxworks 6.x images
+
+    Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
+    With vxWorks 6.x and the new GCC it emits about 30 lines, which is
+    far too noisy in my opinion.
+
+    Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
+
+commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Jul 24 00:17:48 2009 +0200
+
+    Make include/common.h usable by assembler code
+
+    Commit 70ebf316 factored out the ROUND() macro into include/common.h,
+    not realizing that the primary use of this macro on AT91 systems was
+    in start.S where common.h was not included, and could not be included
+    because it contains a lot of C code which the assembler doesn't
+    understand.
+
+    This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
+    construct, and then adds an include to cpu/arm926ejs/start.S thus
+    solving the problem.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
+Author: Heiko Schocher <heiko.schocher@invitel.hu>
+Date:  Thu Jul 23 13:27:04 2009 +0200
+
+    arm: add _lshrdi3.S
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Jul 23 13:15:59 2009 +0200
+
+    Make linking against libgcc configurable
+
+    Many (especially ARM) tool chains seem to come with broken or
+    otherwise unusable (for the purposes of builing U-Boot) run-time
+    support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
+    setting we allow to use alternative libraries instead.
+
+    "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
+    the shell, or as a command line argument when running "make", i. e.
+       $ make USE_PRIVATE_LIBGCC=yes
+    or
+       $ USE_PRIVATE_LIBGCC=yes
+       $ export USE_PRIVATE_LIBGCC
+       $ make
+
+    The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
+    contains the alternative run-time support library `libgcc.a'. The
+    special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
+
+    Note that not all architectures provide an alternative `libgcc.a' in
+    their lib_$(ARCH) directories - so far, only ARM does.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Prafulla Wadaskar <prafulla@marvell.com>
+    cc: Stefan Roese <sr@denx.de>
+
+commit 479105065d965121f57b55dcfe83a940cba46ac1
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Jul 22 17:51:56 2009 +0200
+
+    Use do_div from div64.h for vsprintf
+
+    Use do_div from div64.h for vsprintf in case of 64bit division.
+    For 32bit division, do_div from div64.h can't be used as it
+    needs a 64bit parameter.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+    CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Mon Jul 20 09:47:47 2009 +0900
+
+    Fix compiler warnings after loff_t change
+
+    Now 'env_addr' type is loff_t so use correct field type.
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jul 26 23:28:02 2009 +0200
+
+    Revert "ppc: Unlock cache-as-ram in a consistent manner"
+
+    This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
+
+    This patch causes problems on MPC83xx boards - flash recognition stops
+    working.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
+Author: Jens Scharsig <esw@bus-elektronik.de>
+Date:  Fri Jul 24 10:31:48 2009 +0200
+
+    update the EB+MCF-EV123 board support
+
+    This patch updates the support for EB+MCF-EV123 board and needs
+    the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
+
+    * remove the board framebuffer driver
+    * use the common bus_vcxk framebuffer driver
+    * adds bmp support
+    * adds splashimage support
+    * fix serveral cosmetical errors
+
+    Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
+    [agust@denx.de: fixed some style issues before applying]
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Sun Jul 26 12:05:25 2009 +0200
+
+    video: bus_vcxk.c: fix style issues added by 50217dee
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 50217deeb07911d686790d34d468eb9a5245f68d
+Author: Jens Scharsig <esw@bus-elektronik.de>
+Date:  Fri Jul 24 10:09:02 2009 +0200
+
+    new video driver for bus vcxk framebuffers
+
+    This patch adds a new video driver
+
+    * adds common bus_vcxk framebuffer driver
+
+    Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
+    [agust@denx.de: fixed lots of style issues before applying]
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 60e97419246d0a3615758ad6af40680aefb5f7f1
+Author: Alessandro Rubini <rubini@gnudd.com>
+Date:  Tue Jul 21 14:09:45 2009 +0200
+
+    lcd.h: define extern vidinfo_t for all cases
+
+    include/lcd.h has different vidinfo for different platforms,
+    and several extern declaration, but one for the default case was
+    missing. This makes them a single extern declaration for everyone.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
+
+commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Sun Jul 26 11:04:59 2009 +0200
+
+    mimc200.c: fix too long lines added by f68378d6
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit f68378d60a905d43155f2e89bf81999d3c93a90a
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Tue Jul 21 11:35:22 2009 +0100
+
+    Add LCD support to MIMC200 board
+
+    This patch updates the MIMC200 files to enable the LCD.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Tue Jul 21 11:18:44 2009 +0100
+
+    Add 16bit colour support in lcd.h
+
+    This patch adds support for LCD_COLOR16 in include/lcd.h.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Sun Jul 26 10:34:58 2009 +0200
+
+    lib_avr32/board.c: fix too long line added by 716ece1d
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Tue Jul 21 11:11:37 2009 +0100
+
+    Add AVR32 LCD support
+
+    This patch adds support for the AVR32 LCD controller.  This patch is
+    based off the latest u-boot-video.
+
+    A quick summary of what's going on:-
+
+    Enable LCDC pixel clock
+    Enable LCDC port pins
+    Add framebuffer pointer to global_data struct
+    Allocate framebuffer
+
+    To use the new code, update your board config to include something like
+    this:-
+
+    #define CONFIG_LCD                 1
+
+    #if defined(CONFIG_LCD)
+    #define CONFIG_CMD_BMP
+    #define CONFIG_ATMEL_LCD           1
+    #define LCD_BPP                            LCD_COLOR16
+    #define CONFIG_BMP_16BPP           1
+    #define CONFIG_FB_ADDR                     0x10600000
+    #define CONFIG_WHITE_ON_BLACK              1
+    #define CONFIG_VIDEO_BMP_GZIP              1
+    #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE             262144
+    #define CONFIG_ATMEL_LCD_BGR555            1
+    #define CONFIG_SYS_CONSOLE_IS_IN_ENV       1
+    #define CONFIG_SPLASH_SCREEN               1
+    #endif
+
+    The standard U-Boot BMP and Splash-screen features should just work.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+    [agust@denx.de: fixed some style issues]
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 6111722a9281c6e04a7304d502556afff6a5a1f8
+Author: Alessandro Rubini <rubini@gnudd.com>
+Date:  Sun Jul 19 17:52:27 2009 +0200
+
+    video: move extern declarations from C to headers
+
+    This moves some extern declaration from lcd.c to lcd.h, removing
+    unneeded ifdef around a pair of them.  Additionally, since
+    gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
+    removed the static.  The extra "#include <lcd.h>" in cmd_bmp.c is
+    added to ensure the header is consistent with the source.
+
+    This has been compile-tested on both ARM (at91 boards) and PowerPC
+    (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
+    combinations.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
+    [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 23 16:26:58 2009 -0400
+
+    Blackfin: restore EVT1 handling in linker script
+
+    Sadly, the Blackfin linker script unification lost a small #ifdef logic
+    needed on older parts.  Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f33b325af666b12eafa9ab235b2cd59832d6e51c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Jul 24 14:24:07 2009 +0200
+
+    Revert "zlib: updated to v.1.2.3"
+
+    This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
+
+    The commit caused problems for example when unpacking kernel images:
+
+          Uncompressing Kernel Image ... Error: inflate() returned -2
+          GUNZIP: uncompress, out-of-mem or overwrite error - must
+          RESET board to recover
+
+    Conflicts:
+
+       include/u-boot/zlib.h
+       lib_generic/zlib.c
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 21 14:06:29 2009 +0200
+
+    ppc4xx: Add chip_config command to AMCC Kilauea eval board
+
+    This patch removes the "alterpll" command and replaces it with the now
+    ppc4xx standard "chip_config" command to configure the I2C bootstrap
+    EEPROM.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f6af8ce0c80327cb6aaa347642026ad838335c23
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 21 14:33:52 2009 +0200
+
+    ppc4xx: Fix EEPROM configuration on Kilauea
+
+    Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
+    CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
+    work correctly.
+
+    Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
+    is set to a more defensive value of 10ms.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Jul 22 13:56:21 2009 +0200
+
+    ppc4xx: Add 405EP based PMC405DE board
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Jul 20 12:15:38 2009 +0200
+
+    ppc4xx: Add struct for 4xx GPIO controller registers
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Jul 22 17:27:56 2009 +0200
+
+    ppc4xx: Replace 4xx lowercase SPR references
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 87c0b72908e05662b8b415e26e1042f4779629da
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 20 06:57:27 2009 +0200
+
+    Add "chip_config" command for PPC4xx bootstrap configuration
+
+    This patch adds a generic command for programming I2C bootstrap
+    eeproms on PPC4xx. An implementation for Canyonlands board is
+    included.
+
+    The command name is intentionally chosen not to be PPC4xx specific.
+    This way other CPU's/SoC's can implement a similar command under
+    the same name, perhaps with a different syntax.
+
+    Usage on Canyonlands:
+
+    => chip_config
+    Available configurations (I2C address 0x52):
+    600-nor         - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
+    600-nand        - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
+    800-nor         - NOR  CPU: 800 PLB: 200 OPB: 100 EBC: 100
+    800-nand        - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
+    1000-nor        - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
+    1000-nand       - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
+    1066-nor        - NOR  CPU:1066 PLB: 266 OPB:  88 EBC:  88 ***
+    1066-nand       - NAND CPU:1066 PLB: 266 OPB:  88 EBC:  88
+    => chip_config 600-nor
+    Using configuration:
+    600-nor         - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
+    done (dump via 'i2c md 52 0.1 10')
+    Reset the board for the changes to take effect
+
+    Other 4xx boards will be migrated to use this command soon
+    as well.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+
+commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:16 2009 -0500
+
+    xpedite1k: Move to X-ES vendor directory
+
+    The XPedite1000 is an X-ES product thus it can be put in board/xes along
+    with other X-ES boards.  Along with the move, the board was renamed to
+    XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
+    Maintainership was also transfered to Peter Tyser.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:15 2009 -0500
+
+    xpedite1k: Sync checkboard() with other X-ES boards
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:14 2009 -0500
+
+    xpedite1k: Sync up board config options with other X-ES boards
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:13 2009 -0500
+
+    xpedite1k: Sync organization of board config with other X-ES boards
+
+    This change should have no functional effect
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:12 2009 -0500
+
+    xpedite1k: Sync up commands and environment with other X-ES boards
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:11 2009 -0500
+
+    xpedite1k: Disable unused ethernet port 1
+
+    The XPedite1000 only has 2 available ethernet ports:
+    ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:10 2009 -0500
+
+    xpedite1k: Store environment in flash
+
+    Previously an I2C EEPROM was used. The EEPROM had size, reliability,
+    and access issues which are resolved by storing the environment in
+    flash.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:09 2009 -0500
+
+    xpedite1k: Add support for additional GPIO pins
+
+    Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
+    and a PMC #MONARCH pin.  These pins are not currently used in U-Boot,
+    but are used in OSes and may be used in U-Boot in the future.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 42735815dd9ba39efe51203868aebce04053c8de
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:08 2009 -0500
+
+    xpedite1k: Add support for optional flashes
+
+    The XPedite1000 can be built with 4 total flashes:
+    - 512KB AMD socketed
+    - 16MB Intel soldered
+    - 2 x 32MB AMD MirrorBit flashes
+
+    Add support for the optional 2 32MB CFI-compliant AMD flashes
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:07 2009 -0500
+
+    xpedite1k: Cleanup coding style
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 086ff34a3a7e5e595630d658c1c13778399452d1
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:06 2009 -0500
+
+    xpedite1k: Remove support for reading MACs from EEPROM
+
+    By default, the XPedite1000 comes installed with xMon, a proprietary
+    bootloader.  xMon stores its MAC address in an onboard EEPROM.  Rather
+    than requiring a non-standard location in the EEPROM to be reserved for
+    MAC addresses, store the MAC addresses in U-Boot's standard environment.
+    A U-Boot application or OS application can be used to migrate xMon MAC
+    addresses to U-Boot's environment if necessary.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:05 2009 -0500
+
+    xpedite1k: Remove support for fixed SDRAM configuration
+
+    All XPedite1000's have SPD EEPROMs present and no fixed configuration
+    parameters are currently defined or used
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c86d00a2ed923002f1ab0bfb0a925522628302e9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:04 2009 -0500
+
+    xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
+
+    POST or command line tests provide similar functionality
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 11ad309c183b176d8866944026a63c0f1c626f56
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 19:01:03 2009 -0500
+
+    xpedite1k: Use standard CFI flash driver
+
+    Using the CFI flash driver will allow write access to the 16MB Intel
+    StrataFlash present on the XPedite1000.  The 512KB socketed (non
+    CFI-compliant flash) will no longer be writable.
+
+    The mapping of the 16MB Strata flash was moved to 0xff000000 and the
+    512KB AMD socketed flash was moved to 0xfe000000.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Thu Jul 16 22:13:57 2009 +0200
+
+    ppc4xx: Cleanup PLU405 board code
+
+    Some Coding style cleanup (braces, whitespaces, long lines)
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Fri Jul 17 14:16:40 2009 +0200
+
+    ppc4xx: Add DL-Vision 405EP board support
+
+    Board support for the Guntermann & Drunck DL-Vision.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Fri Jul 10 14:47:32 2009 +0200
+
+    ppc4xx: Fix missing freqOPB for 405EP
+
+    In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
+    left out for no obvious reason.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jul 14 15:53:08 2009 +0200
+
+    ppc4xx: Fix TLB reset problem with recent 44x images
+
+    Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
+    booting on some 44x platforms. This breakage is only noticed in some
+    cases while powercycling. As it seems, the code in question in start.S
+    didn't invalidate TLB #0. This makes sense since this TLB is used for
+    the bootrom mapping. With the patch mentioned above even TLB #0 got
+    invalidated resulting in an error later on.
+
+    This patch now fixes this issue by only invalidating TLB #0 in the RAM-
+    booting case.
+
+    Tested succesfully on Sequoia and Canyonlands.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Dirk Eibach <Eibach@gdsys.de>
+
+commit 44259bb9e696d22bf1773181111855a29f00cf33
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Fri Jul 17 19:56:30 2009 +0530
+
+    usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
+
+    This change is cheked in Linux source and fix found to be in sync.
+    This patch is tested for USB host interface on Kirkwood based
+    Sheevaplug platform (ARM little endian board)
+
+    Risk: the impact of this patch is not validated on big endian board.
+    This need to be checked...
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Jul 23 22:23:23 2009 +0200
+
+    Coding Style cleanup; update CHANGELOG.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jul 21 22:59:36 2009 -0400
+
+    autoconf.mk: include before config.mk for top level files
+
+    By including autoconf.mk before config.mk, all top level files can use any
+    config options it sets up (like <arch>_config.mk) or the Makefile itself
+    without being forced to use lazy evaluation.
+
+commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Tue Jul 21 11:30:53 2009 +0100
+
+    Remove static declaration from gunzip_bmp()
+
+    This patch removes the static declaration from gunzip_bmp()
+
+    Without it, the gunzip_bmp() function is not visible to
+    common/lcd.c and fails to compile with an error.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
+Author: Peter Tyser <ptyser@gmail.com>
+Date:  Mon Jul 20 21:51:38 2009 -0500
+
+    cmd_tsi148: General cleanup
+
+    - Fix command help message
+    - Disable DEBUG by default
+    - Fix whitespace issues
+    - Fix lines > 80 characters
+
+    Signed-off-by: Peter Tyser <ptyser@gmail.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 9aef73888509d10193615ee5cd9cf439ca44e937
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jul 19 15:17:03 2009 -0400
+
+    unify HOST_CFLAGS and HOSTCFLAGS
+
+    The top build system sets up HOSTCFLAGS a bit and exports it, but other
+    places use HOST_CFLAGS instead.  Unify the two as HOSTCFLAGS so that the
+    values stay in sync.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Jul 23 21:16:59 2009 +0200
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e3b39f84e974df70065fa248f0f63993b1708c9d
+Author: André Schwarz <andre.schwarz@matrix-vision.de>
+Date:  Fri Jul 17 14:50:24 2009 +0200
+
+    update config for mvBC-P (MPC5200)
+
+    This patch adds I2C support for mvBC-P and defines flash layout
+    matching the shipped product.
+
+    Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
+
+commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Jul 13 09:24:00 2009 -0500
+
+    ahci: Fix gcc 4.4 compiler warning
+
+    ahci.c: In function 'ata_scsiop_read_capacity10':
+    ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Jul 13 09:23:59 2009 -0500
+
+    drivers/bios_emulator: Fix gcc 4.4 compiler warning
+
+    biosemu.c: In function 'BE_setVGA':
+    biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Jul 13 16:01:19 2009 +0200
+
+    Re-add support for image type 'Standalone Program'
+
+    Support for this type was lost during the bootm refactoring.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit ca95c9df0280f40e8e4befadbaae21fa67d92331
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Jul 13 16:01:18 2009 +0200
+
+    Add error checking for unsupported OS types.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 982adfc610669482a32127282fe489857a92cfe3
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 10 18:46:10 2009 -0500
+
+    ppc: Unlock cache-as-ram in a consistent manner
+
+    Previously, non-e500 architectures only unlocked their data cache which
+    was used as early RAM when booting to Linux using the "bootm" command.
+    This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
+    to unlock their data cache during U-Boot's initialization. This
+    improves U-Boot performance and provides a common cache state when
+    booting to different OSes.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b201171f2b4d509f3ad510b214bee70ff902e3d6
+Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
+Date:  Thu Jul 23 04:54:45 2009 -0400
+
+    zlib: updated to v.1.2.3
+
+    This patch updates zlib to the latest stable version.
+
+    Only relevant zlib parts were ported to u-boot tree, as was done for
+    the previously used version of zlib (0.95). New zlib gives faster
+    inflate performance and other improvements, see www.zlib.net
+
+    Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+    Reviewed-by: Angelo Castello <angelo.castello@st.com>
+
+    Edited commit message
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Tue Jul 21 12:15:28 2009 -0400
+
+    Save server's MAC address in environment
+
+    Linux's netconsole works much better when you can pass it the MAC address of
+    the server. (otherwise it just uses broadcast, which everyone else on my
+    network complains about :)
+
+    This sets the env var "serveraddr" (to match ethaddr), so that you can pass
+    it to linux with whatever bootargs you want to....
+
+    addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
+
+    Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Tue Jul 21 19:32:21 2009 +0400
+
+    fec_mxc: driver for FEC ethernet controller on i.MX27
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0544c63681d2ea3607faf374e9c56f101e365b42
+Author: Alessio Centazzo <centazzo@gmail.com>
+Date:  Sat Jul 11 11:56:06 2009 -0700
+
+    ppc4xx: Fixed compilation warning in 4xx_enet.c
+
+    This patch fixes a compilation warning for some Ethernet PHY-less
+    PPC4xx platforms (440SPE based ones) and a potential compilation
+    error for 440SP platforms (use of undefined 'ethgroup' variable).
+    In the original code and in case of 440SPE platforms, 'ethgroup'
+    is initialized to -1 and never modified.  Later in the function,
+    within an #ifdef statement, an 'if statement' executes code only
+    if 'ethgroup' is set to 4, therefore it is harmless to avoid
+    executing the 'if statement' by removing the CONFIG_440SPE from
+    the affected #ifdefs.  In case of 440SP platforms  with on-board
+    Ethernet PHY, 'ethgroup' is undefined but used (there are not such
+    platforms in the repository yet). All other architectures are not
+    affected by this change.
+
+    Signed-off-by: Alessio Centazzo acpatin@yahoo.com
+    Acked-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 09133f8580f0106429ba3600f1855bd3577ae58b
+Author: Michael Zaidman <michael.zaidman@gmail.com>
+Date:  Tue Jul 14 23:37:12 2009 +0300
+
+    DHCP regression on 2009-06
+
+    Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
+    by initializing our IP addr to 0 in order to accept any IP addr
+    assigned to us by the DHCP/BOOTP/RARP server.
+
+    Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
+    Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Jul 16 20:58:02 2009 +0530
+
+    net: phy: bugfixes: mv88E61xx multichip addressing support
+
+    With these fixes, this driver works properly for multi chip
+    addressging mode
+
+    Bugfixes:
+    1. Build error fixed for function mv88e61xx_busychk_multic-fixed
+    2. PHY dev address error detection- fixed
+    3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
+    4. invalid data read ptr was refered for RD_PHY in case of
+       multichip addressing mode -fixed
+
+    The Multichip Address mode is tested with RD6281A board having
+    MV88E6165 switch on it
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Wed Jul 8 13:05:11 2009 +0200
+
+    arm: Kirkwood: Check the error summary bit for error detection
+
+    The Marvell documentation for the 88f6281 states that the error coding
+    is only valid if the error summary and last frame bits in the transmit
+    descriptor status field are set. This patch adds checks for these for
+    transmit (I would get transmit errors on bootp with the current check,
+    which I believe are spurious).
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Wed Jul 8 13:03:18 2009 +0200
+
+    arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
+
+    kwgbe_send/recv both have loops waiting for the hardware to set  a bit.
+    GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
+    patch uses readl to force a read from device memory. Other volatile
+    accesses have also been replaced with readl/writel where appropriate
+    (as per suggestions on the U-boot mailing list).
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3f6b18ffd94621625de961bc566022b0266790f5
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Thu Jul 2 13:21:22 2009 -0400
+
+    MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
+
+    This patch sets the returned value to 0xFFFF if the PHY does not exist
+    and does not assert Transfer Acknowledge. A NULL check for the value
+    pointer is also added for buffer overflow protection.
+
+    Without this patch 'mii info' will show 'phantom' devices because the
+    value will be not be initialized and return with some random value.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 736fead8fdbf8a8407048bebc373cd551d01ec98
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Jul 20 22:01:11 2009 -0700
+
+    Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
+
+    All in-tree boards that use this controller have CONFIG_NET_MULTI added
+    Also:
+     - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
+     - cleaned up line lengths
+     - modified all boards that override weak function in this driver
+     - added
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+    Tested-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Fri Jul 17 00:50:15 2009 -0700
+
+    Add warning about upcoming removal of old Ethernet API
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Jul 2 16:15:13 2009 +0530
+
+    P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
+
+    These PHYs are on P2020RDB platform.
+
+    Also revamped Freescale copyright message in drivers/net/tsec.c.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
+Author: Robin Getz <rgetz@blackfin.uclinux.org>
+Date:  Mon Jul 20 14:53:54 2009 -0400
+
+    Add DNS support
+
+    On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
+
+    http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
+    >
+    > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
+    > the serverip environment var is updated.
+    >
+    > Probably there are some cosmetic issues with the patch. Unfortunatly I
+    > do not have the time to correct these. So if anybody else likes DNS
+    > support in U-Boot and has the time, feel free to patch it in the main tree.
+
+    Here it is again - slightly modified & smaller:
+      - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
+      - README.dns is added
+      - syntax is changed (now takes a third option, the env var to store
+       the result in)
+      - add a random port() function in net.c
+      - sort Makefile in ./net/Makefile
+      - dns just returns unless a env var is given
+      - run through checkpatch, and clean up style issues
+      - remove packet from stack
+      - cleaned up some comments
+      - failure returns much faster (if server responds, don't wait for
+       timeout)
+      - use built in functions (memcpy) rather than byte copy.
+
+    Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
+    Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Jul 17 12:17:00 2009 -0500
+
+    net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
+
+    fix this gcc 4.4 warning:
+
+    tsec.c: In function 'tsec_init':
+    tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit d9bec9f42ab34383737c8a94429aa02fe76d7946
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Jul 18 21:04:08 2009 -0400
+
+    net: rename NetRxPkt to NetRxPacket
+
+    The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
+    rename the minor detractor to follow suite.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Thu Jun 25 16:33:04 2009 +0900
+
+    sh: sh_eth: Remove garbage from printf
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
+Author: Andreas Pretzsch <apr@cn-eng.de>
+Date:  Thu Jul 9 21:50:05 2009 +0200
+
+    smc911x: add support for LAN9221
+
+    Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
+Author: David Brownell <david-b@pacbell.net>
+Date:  Tue Jun 9 11:14:24 2009 -0700
+
+    rm9200 ethernet driver: board-specific quirk (csb337)
+
+    CSB337 boards originally shipped with MicroMonitor, not U-Boot;
+    and with a version using a different convention for recording
+    Ethernet addresses than anyone else.  To avoid breaking Linux
+    when it uses U-Boot, have it use the same convention on that
+    hardware.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 57215cd2e59fd403248df8f2f195e382900d5fc2
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Jul 16 09:58:31 2009 +0200
+
+    arm, kirkwood: added kw_gpio_set_valid() in gpio.h
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit ec16441085f471c03a8c0909579463e31e5b947a
+Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
+Date:  Mon Jun 29 14:45:08 2009 +0200
+
+    Kirkwood: add Marvell Kirkwood gpio driver
+
+    Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
+    Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Tested-by: Heiko Schocher <hs@denx.de>
+
+commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Jul 16 09:59:10 2009 +0200
+
+    arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Jul 16 21:02:24 2009 +0530
+
+    Marvell RD6281A Board support
+
+    This is Marvell's 88F6281_A0 based reference design board
+
+    This patch is tested for-
+    1. Boot from DRAM/NAND flash/NFS
+    2. File transfer using tftp and loadb
+    3. NAND flash read/write/erase
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
+Author: Piotr Ziecik <kosmo@semihalf.com>
+Date:  Fri Jul 17 16:35:19 2009 +0200
+
+    api: Fix broken build on ARM.
+
+    This patch fixes broken build introduced by commit
+    84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
+    ifdef CONFIG_API already handle by the Makefile).
+
+    Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
+
+commit 48677a1ef5f82adca49145a7baf11ece77f51945
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jul 22 23:53:23 2009 +0200
+
+    Fix "ld: cannot find -lstubs" build error
+
+    Commit 1bc15386 moved the examples/ to examples/standalone but failed
+    to adapt the Makefiles that need to link against libstubs.a
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit ae71121a111ddf9dd057cacbbdd0f51054be428a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 20:47:36 2009 +0200
+
+    at91cap9adk: fix #ifdef/#endif pairing
+
+    The #ifdef/#endif pairing in this file was obviously messed up.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6b96a20d512b04a808438553874c00cf40812c44
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Mon Jul 20 11:40:01 2009 +0900
+
+    ARM Cortex A8: Move OMAP3 specific reset handler
+
+    Because of the reset_cpu is soc specific, should be move to soc
+
+    Cc: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 048e7efe91f66094f868281c12e488ce2bae8976
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Jul 22 10:12:39 2009 -0500
+
+    85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
+
+    The pixis code used in8/out8 all over the place.  Replace it with
+    in_8/out_8 macros.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jul 21 13:51:08 2009 -0500
+
+    xpedite5370: Enable NAND command support
+
+    Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
+    via the 'nand' command.
+
+    Previously, the XPedite5370's NAND chip selects were properly
+    configured, but NAND support was not enabled.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 39121c0896a6760bd436d88c17892f49a97902d0
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jul 21 13:51:07 2009 -0500
+
+    xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
+
+    Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
+    support uncompressing images larger than 8 MB when using the bootm
+    command.
+
+    Note that recent Linux kernels for the 85xx and 86xx map greater than
+    16MB of memory on bootup, but we use 16MB to maintain compatibility with
+    older Linux kernels for now.
+
+    Signed-off-by: Nate Case <ncase@xes-inc.com>
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 58f31b602dfd52eb7836ab82caa587514e046f02
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Jul 19 19:17:41 2009 -0500
+
+    xpedite5370: Fix I2C GPIO initialization typo
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Heiko Schocher<hs@denx.de>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 5ff821006c6e7647d183ea95817044943bb22e7e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Jul 19 19:17:40 2009 -0500
+
+    xpedite5200,5370: Use buffered NOR flash writes
+
+    Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
+    improve NOR flash write speeds
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d9c147f371800a479a507a816b2fe572c97da197
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 10:14:48 2009 -0500
+
+    85xx, 86xx: Add common board_add_ram_info()
+
+    Previously, 85xx and 86xx boards would display DRAM information on
+    bootup such as:
+
+    ...
+    I2C:   ready
+    DRAM:
+    Memory controller interleaving enabled: Bank interleaving!
+     2 GB
+    FLASH: 256 MB
+    ...
+
+    This patch moves the printing of the DRAM controller configuration to a
+    common board_add_ram_info() function which prints out DDR type, width,
+    CAS latency, and ECC mode. It also makes the DDR interleaving
+    information print out in a more sane manner:
+
+    ...
+    I2C:   ready
+    DRAM:   2 GB (DDR2, 64-bit, CL=4, ECC on)
+          DDR Controller Interleaving Mode: bank
+    FLASH: 256 MB
+    ...
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 10:14:47 2009 -0500
+
+    tqm85xx: Remove board_add_ram_info()
+
+    This is in preparation for adding one common 8xxx board_add_ram_info()
+    function for all 8xxx boards
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 10:14:46 2009 -0500
+
+    xes: Remove 8xxx board_add_ram_info() function
+
+    This is in preparation for adding one common 8xxx board_add_ram_info()
+    fuction for all 8xxx boards
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 17 10:14:45 2009 -0500
+
+    86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
+
+    Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
+    the 86xx user's manual and other Freescale architectures
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Thu Jul 9 10:05:48 2009 +0800
+
+    85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
+
+    Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Jul 14 22:42:01 2009 -0500
+
+    85xx: Report which "bank" of NOR flash we are booting from on FSL boards
+
+    The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
+    swizzling the upper address bits of the NOR flash we boot out of which
+    creates the concept of "virtual" banks.  This is useful in that we can
+    flash a test of image of u-boot and reset to one of the virtual banks
+    while still maintaining a working image in "bank 0".
+
+    The PIXIS FPGA exposes registers on LBC which we can use to determine
+    which "bank" we are booting out of (as well as setting which bank to
+    boot out of).
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Jul 15 13:45:00 2009 -0500
+
+    86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
+
+    The MPC8641HPCN board is capable of swizzling the upper address bit of
+    the NOR flash we boot out of which creates the concept of "virtual"
+    banks.  This is useful in that we can flash a test of image of u-boot
+    and reset to one of the virtual banks while still maintaining a
+    working image in "bank 0".
+
+    The PIXIS FPGA exposes registers on LBC which we can use to determine
+    which "bank" we are booting out of (as well as setting which bank to
+    boot out of).
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit caf72ff329759b4da71352ab098537c7698c0e9f
+Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+Date:  Tue Jul 21 10:45:49 2009 +0200
+
+    Refresh LZMA-lib to v4.65
+
+    Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
+
+commit 70ebf31633f372a24505e47846b2628e8435ea37
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri Jul 17 23:35:29 2009 +0200
+
+    AT91: factor out ROUND() macro
+
+    A large number of boards (all AT91 based) duplicated the ROUND()
+    macro in their board specific config files. Add the definition to
+    include/common.h and clean up the board config files.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 89188a62333c0841a7166783d2ebdd39d7044eb2
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Jul 15 08:54:50 2009 -0500
+
+    85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
+
+    We have always mapped at least 16M in the kernel and we have seen cases
+    with new kernel features that a kernel image needs more than 8M of
+    memory.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d4abc757c26c531293f5bbc4262ade44a317eec9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Jul 20 19:02:21 2009 -0500
+
+    Move api_examples to examples/api
+
+    Also add a rule to remove demo.bin which was previously leftover
+    after a "make clean"
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Jul 21 06:37:28 2009 +0200
+
+    83xx, kmeter: fix compile error
+
+    CONFIG_SYS_MALLOC_LEN is defined in the board config, and
+    the keymile-common.h, which collects common options used
+    by all keymile-boards. This results in a compile error
+    when compiling the kmeter1 board. So remove this define
+    in the board config file.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Jul 9 12:04:26 2009 +0200
+
+    i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
+
+    This patch adds the possibility to call a board specific
+    i2c bus reset routine for the fsl_i2c bus driver, and adds
+    this option for the keymile kmeter1 board.
+
+    The deblock sequence for this board is implemented and
+    tested in the following way:
+
+    CR = 0x20 (release SDA and SCL pin)
+    CR = 0xa0 (start read)
+    dummy read
+    dummy read
+    if 2. dummy read == 0x00
+       3. dummy read
+
+    CR = 0x80 (SDA and SCL now 1 SR = 0x86)
+    CR = 0x00 (Modul reset SR=0x81)
+    CR = 0x80 (SDA and SCL = 1, SR = 0x81)
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 10 11:03:19 2009 -0500
+
+    Move examples/ to examples/standalone
+
+    The current files in examples are all standalone application examples,
+    so put them in their own subdirectory for organizational purposes
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b220c64d86f7c705a183302c3b50076d7e5d876c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jul 10 11:03:15 2009 -0500
+
+    Move architecture specific config.mk files into subdirs
+
+    This cleans up U-Boot's toplevel directory a bit and makes the
+    architecture 'config.mk' file naming and location similar to board
+    and cpu 'config.mk' files
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 082becd0d546399637fa94fdf9f1730a0f7bf348
+Author: Po-Yu Chuang <ratbert@faraday-tech.com>
+Date:  Fri Jul 10 18:25:34 2009 +0800
+
+    Add "tags" to .gitignore file.
+
+    Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Jul 9 12:04:18 2009 +0200
+
+    powerpc: updates for the keymile boards
+
+    - CONFIG_SYS_MAX_I2C_BUS changed to 1
+      We use only one I2C hardwarecontroller on this boards, so
+      change the CONFIG_SYS_MAX_I2C_BUS to 1.
+    - common: dont print errormsg if second IVM Block lacks.
+    - 82xx, mgcoge: fix double mtdpart entry in environment
+    - 82xx, mgcoge: activate on second Flash the second bank.
+    - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
+    - common: Change malloc size to 1MByte for all Keymile boards
+       We need a bigger malloc area for the environment support (128k)
+       on some Keymile boards (kmeter1) and the upcoming UBI support.
+       Change it to 1MB for all Keymile boards to be on the save side.
+       Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
+       UBI/UBIFS support.
+    - Add UBI support to all Keymile boards
+    - change manner of writing "/localbus/ranges" node
+       instead of writting the complete "/localbus/ranges" node
+       before booting Linux, only update the ranges entries
+       which gets dynamical detected (size of flashes).
+       This is needed, because keymile adds in the DTS
+       "/localbus/ranges" node entries, which u-boot must
+       not overwrite/delete.
+    - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
+       The Intel P30 chip has 2 non-identical chips on
+       one die, so we need to define 2 seperate regions
+       that are scanned by physmap_of independantly.
+    - kmeter1: Add MTD concat support to Keymile boards
+    - 82xx, mgcoge: add "unlock=yes" to default environment
+    - added CONFIG_MTD_DEVICE to get in sync with mainline code
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
+Author: galak <galak@ducky.am.freescale.net>
+Date:  Tue Jul 7 15:53:21 2009 -0500
+
+    fsl_sata: Fix compiler warnings shown by gcc-4.4
+
+    Update fsl_sata to use common structures instead of casting
+    back and forth between the fsl specific ones and the common ones
+    (which are identical).
+
+    fsl_sata.c: In function 'scan_sata':
+    fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:545: note: initialized from here
+    fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
+    ...
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 20938e54a207472a090f04f20f30c9e32b14137e
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Jul 7 15:58:51 2009 +0200
+
+    Add unaligned.h for arm
+
+    This patch adds unaligned.h for ARM (needed to build with LZO
+    compression). The file is taken from the linux kernel, but includes
+    u-boot headers instead.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 433ea8abd6adfae3138dd4ce238237a037e1e537
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Jul 19 19:17:42 2009 -0500
+
+    Remove last remanants of unused CONFIG_I2C_CMD_TREE
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit f6ca3b70949790ab5438d6c9a592216cc3616110
+Author: Andrzej Wolski <awolski@poczta.fm>
+Date:  Fri Jul 17 22:26:54 2009 +0200
+
+    ubi: help message correction
+
+    Fix incorrect information about size units and correct typo.
+
+    Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sun Jul 19 19:17:42 2009 -0500
+
+    Remove last remanants of unused CONFIG_I2C_CMD_TREE
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit f99a292aa6083057f5db8283d2ce4a2be22b8856
+Author: Andrzej Wolski <awolski@poczta.fm>
+Date:  Fri Jul 17 22:26:54 2009 +0200
+
+    ubi: help message correction
+
+    Fix incorrect information about size units and correct typo.
+
+    Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b86b85e2611d57d834795a92453431a1a340c3c9
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Jun 29 17:53:16 2009 +0400
+
+    mmc: set bus width to 1 and clock to minimum early during initialization
+
+    We need to switch back to 1-bit before initialization or SD 2.0 cards
+    will fail to send SCR if we've switched to 4-bit already.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
+Author: Shinya Kuribayashi <skuribay@pobox.com>
+Date:  Sat Jun 20 19:14:33 2009 +0900
+
+    config.mk: Remove unused HPATH
+
+    This variable is not unused anywhere.
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Wed Jun 17 16:20:14 2009 +0200
+
+    digsy mtc: Enable command line history.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 37566090766d61beef70c62986b90749920255d8
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 2 19:23:25 2009 -0400
+
+    compiler.h: unify system ifdef cruft here
+
+    Shove a lot of the HOSTCC and related #ifdef checking crap into the new
+    compiler.h header so that we can keep all other headers nice and clean.
+
+    Also introduce custom uswap functions so we don't have to rely on the non
+    standard implementations that a host may (or may not in the case of OS X)
+    provide.  This allows mkimage to finally build cleanly on an OS X system.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Jun 15 11:50:40 2009 -0500
+
+    common: fix 'dummy' is used uninitialized in this function warning
+
+    fix this gcc 4.4 warning:
+
+    xyzModem.c: In function 'xyzModem_stream_open':
+    xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 23:33:14 2009 -0400
+
+    push CROSS_COMPILE out to $(ARCH)_config.mk
+
+    Each arch should handle setting a proper default CROSS_COMPILE value in
+    their own config.mk file rather than having to maintain a large ugly list
+    in the Makefile.  By using conditional assignment, we don't have to worry
+    about the variable already being set (env/cmdline/etc...).
+
+    The common config.mk file takes care of exporting CROSS_COMPILE already,
+    and while a few variables (toolchain ones) utilize CROSS_COMPILE before
+    including the arch config.mk, they do so with deferred assignment.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jun 13 12:55:37 2009 +0200
+
+    malloc.h: protect it against multiple include
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jul 19 19:37:24 2009 +0200
+
+    Fix boards broken after removal of legacy NAND and DoC support
+
+    Commit 2419169f removed support for legacy NAND and disk on chip but
+    missed to update the code for a few boards. This patch fixes the
+    resulting build issues.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jul 19 19:32:37 2009 +0200
+
+    cmd_flash.c: fix fix compile error for boards with DataFlash
+
+    Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
+    'addr_first'/'addr_last'") changed the #ifdef logic areound the
+    declaration of these variables and missed a combination of settings
+    of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
+
+    Also spotted by Alessandro Rubini <rubini@gnudd.com>
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 341245a28830d3261c41b09d958eeea7bb93587a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jul 19 12:05:15 2009 +0200
+
+    pcm030: fix out-of-tree building
+
+    Commit 0a87dd90 that was supposed to fix out-of-tree building for the
+    pcm030 board was unfortunately incomplete.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 8bf29b59fce8cc381114929082202d800e313ad5
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Jul 7 13:58:51 2009 +0200
+
+    Add unaligned.h for arm
+
+    This patch adds unaligned.h for ARM (needed to build with LZO
+    compression). The file is taken from the linux kernel, but includes
+    u-boot headers instead.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit e405afab1dda66c9df3733f6b779d72fc36a0162
+Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
+Date:  Fri Jun 12 18:10:12 2009 +0900
+
+    Canyonlands SATA harddisk driver
+
+    This patch adds a SATA harddisk driver for the canyonlands.
+    This patch is kernel driver's porting.
+    This patch corresponded to not cmd_scsi but cmd_sata.
+    This patch divided an unused member with ifndef __U_BOOT__ in the structure.
+
+    [environment variable, boot script]
+    setenv bootargs root=/dev/sda7 rw
+    setenv bootargs ${bootargs} console=ttyS0,115200
+    ext2load sata 0:2 0x400000 /canyonlands/uImage
+    ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
+    fdt addr 0x800000 0x4000
+    bootm 0x400000 - 0x800000
+
+    If you drive SATA-2 disk on Canyonlands, you must change parts from
+    PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
+    following disks:
+
+    1.Vendor: Fujitsu   Type: MHW2040BS
+    2.Vendor: Fujitsu   Type: MHW2060BK
+    3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
+    4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
+    5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
+    6.Vendor: Hitachi   Type: HTS543232L9A300 (CONFIG_LBA48 required)
+    7.Vendor: Seagate   Type: ST31000333AS (CONFIG_LBA48 required)
+    8.Vendor: Transcend         Type: TS32GSSD25S-M
+    9.Vendor: MTRON             Type: MSD-SATA1525-016
+
+    Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
+
+commit 52a0e2dee90c17e39634de814b16b96061cfb472
+Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+Date:  Wed Jun 10 19:09:40 2009 +0200
+
+    Add support for the Tundra TSI148 VME-bridge
+
+    From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+    This patch adds support for the Tundra TSI148 VME-bridge. It's used on
+    the upcoming esd VME8349 board.
+
+    Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 16 19:05:30 2009 -0400
+
+    Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
+
+    MAC addresses should not be hardcoded in boards to avoid random link level
+    conflicts.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit baf357050353aee30c04f3f4b868426cb54468ca
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jul 10 10:42:06 2009 -0400
+
+    Blackfin: bf533-stamp: back down SCLK a bit
+
+    While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
+    SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
+    the shortened SDRAM traces.  So lower the SCLK speed down to a value that
+    all three can handle.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 490fe7349102012c48730f6fc14ef36c8d155068
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 9 20:56:56 2009 -0400
+
+    Blackfin: split cpu COBJS into multilines
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jul 9 01:15:05 2009 -0400
+
+    Blackfin: add os log functions
+
+    Part of the mini Blackfin ABI with operating systems is that they can use
+    0x4f0-0x4f8 to pass log buffers to/from bootloaders.  So add support to
+    U-Boot for reading the log buffer.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9993e196da707a0a1cd4584f1fcef12382c1c144
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Sat Jul 18 18:42:13 2009 -0500
+
+    mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit d39041fcadb1231430201d298c31f6be03d654f7
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jul 19 01:15:52 2009 +0200
+
+    PATI board: fix compiler warnings
+
+    Fix these:
+    pati.c: In function 'checkboard':
+    pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
+    ../common/flash.c: In function 'write_word':
+    ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    cmd_pati.c: In function 'do_pati':
+    cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 28c345042eafc550a34b9f52431bd4a22af6ac25
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 12:14:56 2009 +0200
+
+    mpl: printing current stdio devices cleanup
+
+    Currently the mpl boards duplicate the code to print the current
+    devices from common/console.c; use stdio_print_current_devices()
+    instead
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+    Edited commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 12:14:55 2009 +0200
+
+    console: unify printing current devices
+
+    Create stdio_print_current_devices() for this purpose
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 5669ed4557edf2714203aa8625c9fcd5a753b338
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 23:18:14 2009 +0200
+
+    cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Tue Jun 30 15:04:13 2009 -0500
+
+    OMAP3 Fix compiler warning for v7_flush_dcache_all
+
+    On build of omap3 targets in MAKEALL, the *.ERR files have
+
+    cpu.c: In function 'cleanup_before_linux':
+    cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
+    cpu.c:64: warning: implicit declaration of function 'get_device_type
+
+    The functions v7_flush_dcache_all and get_device_type are declared
+    in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
+    declare the functions.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit dba107b967332fc8a35867f4d58038626c968800
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 22:09:38 2009 +0200
+
+    ARM: make split_by_variant.sh output more useful
+
+    The board/armltd/integrator/split_by_variant.sh script used to print
+    "Configuring for integrator*p board..." no matter which board name
+    was being compiled. This made it difficult to match MAKEALL output to
+    board names. This patch fixes this.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 21:52:24 2009 +0200
+
+    NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
+
+    Commit 8d2effea added a warning for configurations that use NAND
+    without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
+    failed to fix the affected boards.
+
+    This patch covers the non-PPC boards that were missed in the previous
+    patch (commit 170c1972).
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 7024aa14df2981b4e65c6189909da9aadb1c22da
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 20:46:38 2009 +0200
+
+    at91cap9adk: fix #ifdef/#endif pairing
+
+    The #ifdef/#endif pairing in this file was obviously messed up.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4abc5bffea244589fa1097e4c899a63efc609c8e
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Jul 16 20:58:01 2009 +0530
+
+    Marvell MV88F6281GTW_GE Board support
+
+    This is Marvell's 88F6281_A0 based custom board developed
+    for wireless access point product
+
+    This patch is tested for-
+    1. Boot from DRAM/SPI flash/NFS
+    2. File transfer using tftp and loadb
+    3. SPI flash read/write/erase
+    4. Booting Linux kernel and RFS from SPI flash
+    5. Boot from USB supported
+
+    Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Jul 16 20:58:00 2009 +0530
+
+    Marvell Sheevaplug Board support
+
+    Reference:
+    http://plugcomputer.org/
+    http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
+
+    This patch is tested for-
+    1. Boot from DRAM/NAND flash
+    2. File transfer using tftp
+    3. NAND flash read/write/erase
+    4. Linux kernel and RFS Boot from NAND
+    5. Enabled USB PHY init for kernel need
+    6. Boot from USB supported
+
+    Note: to boot Kirkwood kernel with USB support,
+       you should add "usb start" in the boot sequence
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 0a87dd90a75d034301496285026fbd8106c7c6d5
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 18:00:25 2009 +0200
+
+    pcm030: fix out-of-tree building
+
+    Commit c9969947, which added support for the pcm030 board
+    (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 16:36:11 2009 +0200
+
+    MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 16:13:18 2009 +0200
+
+    8xxx: fix warning: implicit declaration of function 'uec_standard_init'
+
+    Commit 8e55258f created function uec_standard_init() to initialize
+    all UEC interfaces for 83xx and 85xx but failed to provide a
+    prototype for it.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 15:46:02 2009 +0200
+
+    MIP405T: fix compile problem
+
+    The "stdio/device: rework function naming convention" patch
+    (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 15:32:10 2009 +0200
+
+    NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
+
+    Commit 8d2effea added a warning for configurations that use NAND
+    without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
+    failed to fix the affected boards.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6e897a661fb9968ce354165a12cce82e4b889e04
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jul 18 15:05:44 2009 +0200
+
+    CPCI750: fix compile problem
+
+    Commit bc0d3296 removed ppc_error_no.h from Marvell boards
+    but forgot to update board/esd/cpci750/mv_eth.h
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
+Author: Alessandro Rubini <rubini-list@gnudd.com>
+Date:  Fri Jul 17 14:42:11 2009 +0200
+
+    cmd_i2c: bugfix: add missing brace
+
+    The sub-command parser missed a brace, so "return 0;" is always
+    taken and no error message is diplayed if you say "i2c scan"
+    instead of "i2c probe", for example.
+
+    Proper brace is added. Also, a misleading and unneeded else
+    is removed.
+
+    Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
+
+commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 12:14:54 2009 +0200
+
+    stdio/device: rework function naming convention
+
+    So far the console API uses the following naming convention:
+
+       ======Extract======
+       typedef struct device_t;
+
+       int     device_register (device_t * dev);
+       int     devices_init (void);
+       int     device_deregister(char *devname);
+       struct list_head* device_get_list(void);
+       device_t* device_get_by_name(char* name);
+       device_t* device_clone(device_t *dev);
+       =======
+
+    which is too generic and confusing.
+
+    Instead of using device_XX and device_t we change this
+    into stdio_XX and stdio_dev
+
+    This will also allow to add later a generic device mechanism in order
+    to have support for multiple devices and driver instances.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+    Edited commit message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Jul 15 00:01:08 2009 -0500
+
+    ppc: Fix compile error for boards with CONFIG_DDR_ECC
+
+    A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
+    which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
+    defined and resulted in errors such as:
+
+    Configuring for canyonlands board...
+    fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
+    processor"
+    make[1]: *** No rule to make target `.depend', needed by `libdma.a'.  Stop.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Thu Jul 16 20:57:59 2009 +0530
+
+    include/config_cmd_default.h cleanup
+
+    arranged configurations in alphabetical order
+    CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 21:35:22 2009 -0400
+
+    sata: namespace curr_device variable
+
+    The curr_device variable really should be namespaced with a "sata_" prefix
+    since it is only used by the sata code.  It also avoids random conflicts
+    with other pieces of code (like cmd_mmc):
+    common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
+       multiple definition of `curr_device'
+    common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 21:35:21 2009 -0400
+
+    cmd_mmc: make curr_device static
+
+    The curr_device variable isn't used outside of cmd_mmc, so mark it static
+    to avoid conflicts with other pieces of code (like sata which also exports
+    a curr_device).  Otherwise we end up with stuff like:
+    common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
+       multiple definition of `curr_device'
+    common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 21:35:16 2009 -0400
+
+    envcrc: add missing dependencies on env storage
+
+    When the envcrc building was made conditional, it missed a bunch of env
+    storage types, so add all currently supported types.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2419169f5749d7af501b3b77a5336d1d535320de
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Jul 16 19:08:04 2009 -0500
+
+    Remove legacy NAND and disk on chip references from boards.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
+Author: Shinya Kuribayashi <skuribay@pobox.com>
+Date:  Sat Jun 20 19:10:14 2009 +0900
+
+    config.mk: Remove $(PCI_CLOCK) reference
+
+    The following commit introduced $(PCI_CLOCK) reference so that
+    we could tweak `PCI_66M' definition via an environment variable.
+
+    > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
+    > Author: Eran Liberty <liberty@freescale.com>
+    > Date:   Thu Jul 28 10:08:46 2005 -0500
+    >
+    >    * Patch by Eran Liberty
+    >      Add support for the Freescale MPC8349ADS board.
+
+    But I suggest a removal of it for the following reasons:
+
+    * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
+      and it seems that MPC8349EMDS port is PCI_66M free.
+
+    * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
+      but they don't need $(PCI_CLOCK) environment variable at all.
+      PCI_66M is automatically configured via $(BOARD)_config names
+      with the help of $(findstring _66_,$@).
+
+    * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
+      so only a few people know the existence of it these days.
+
+    * Keep config.mk independent from $(BOARD) as much as possible.
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 23 21:42:36 2009 +0200
+
+    fix: missing autoconfig.mk from general Makefile
+
+    At the first run of make we generate the autoconf.mk and
+    autoconf.mk.dep if not already the case and we currently include only
+    to .dep
+
+    In order to use these autogenerated values we need to include it also
+    even if it's included in config.mk but it's done before their
+    generation
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1ca298ced07327749b54321815f76fcddb2f9479
+Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
+Date:  Thu Jul 9 16:07:30 2009 +0200
+
+    Added support for splash screen positioning
+
+    This patch adds support splash image positioning by adding an
+    additional variable "splashpos" to the environment. Please see
+    README for details.
+
+    Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
+    Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Tue Jul 7 13:11:36 2009 +0200
+
+    video: mb862xx: replace printf with puts
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit cce99b2a7dd80683d61360aee56a6ece344950b2
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Tue Jul 7 13:27:07 2009 +0200
+
+    video: mb862xx: use macros instead of magic numbers
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Tue Jul 7 13:24:08 2009 +0200
+
+    video: mb862xx: fix coding style and remove dead code
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 292ed489dba8cc97b458579003a8001cd4703cd8
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Tue Jun 30 12:03:50 2009 +0200
+
+    microblaze: Remove ignored return type for __arch__swab16 function
+
+    This change remove compilation warnings.
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit e2776587c0eac131954ae100fda89cc3e7ed8b57
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Tue Jun 30 12:02:45 2009 +0200
+
+    microblaze: Removed unused variables
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit be33b046b549ad88c204c209508cd7657232ffbd
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Wed Apr 1 15:02:13 2009 -0500
+
+    Remove legacy NAND and disk on chip code.
+
+    Legacy NAND had been scheduled for removal.  Any boards that use this
+    were already not building in the previous release due to an #error.
+
+    The disk on chip code in common/cmd_doc.c relies on legacy NAND,
+    and it has also been removed.  There is newer disk on chip code
+    in drivers/mtd/nand; someone with access to hardware and sufficient
+    time and motivation can try to get that working, but for now disk
+    on chip is not supported.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 16:40:36 2009 +0200
+
+    nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
+
+    This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
+    defines such a 4k plus 218 bytes ECC layout.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Scott Wood <scottwood@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit f2f376ab956c17d4a0c42a993133ca25cdc87278
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jul 16 15:13:04 2009 +0200
+
+    nand: ndfc: Remove unnecessary #ifdef's
+
+    Now that the 4xx NAND driver ndfc is moved to the common NAND driver
+    directory we don't need this #ifdef's anymore.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Scott Wood <scottwood@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 12582ac771b0bf3852817c3bfa4be326522a0665
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jul 16 15:12:48 2009 +0200
+
+    nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Scott Wood <scottwood@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Tue Jul 14 13:51:10 2009 +0300
+
+    nand: fixed failed reads on corrected ECC errors in nand_util.c
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ed727d394c5ab139033719772dc95dc25cfa14f7
+Author: David Brownell <david-b@pacbell.net>
+Date:  Mon Jul 13 16:29:04 2009 -0700
+
+    Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 937076f84c5064f0a79105fce352ac7cf7b33643
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Sat Jul 11 16:49:55 2009 +0900
+
+    MTD: OneNAND: Increase the environment size to 4KiB
+
+    Also use mtd operation instead of onenand functions
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit bfadb17f69c256196620c32164775f063a59c34f
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:38 2009 +0400
+
+    mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
+
+    Since we have simple hwconfig interface now, we don't need
+    pci_external_arbiter variable any longer.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:36 2009 +0400
+
+    mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
+
+    This patch simply converts the board to the hwconfig infrastructure.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c78c678354c8321737aa07e86831ff14176f4ed5
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:31 2009 +0400
+
+    mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
+
+    fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
+    also will fixup clock-frequency property.
+
+    Plus, since DR USB and eSDHC are mutually exclusive, we should
+    only configure the eSDHC if asked through hwconfig.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:30 2009 +0400
+
+    mpc83xx: MPC837XERDB: Add support for FSL eSDHC
+
+    This patch adds support for eSDHC on MPC837XERDB boards. The WP
+    switch doesn't seem to work on RDB boards though, the WP pin is
+    always asserted (can see the pin state when it's in GPIO mode).
+
+    FSL DR USB and FSL eSDHC are mutually exclusive because of pins
+    multiplexing, so user should specify 'esdhc' or 'dr_usb' options
+    in the hwconfig environment variable to choose between the
+    devices.
+
+    p.s.
+    Now we're very close to a monitor len limit (196 bytes left using
+    gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:29 2009 +0400
+
+    fsl_esdhc: Add device tree fixups
+
+    This patch implements fdt_fixup_esdhc() function that is used to fixup
+    the device tree.
+
+    The function adds status = "disabled" propery if esdhc pins muxed away,
+    otherwise it fixups clock-frequency for esdhc nodes.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Wed Jun 10 00:25:27 2009 +0400
+
+    Add simple hwconfig infrastructure
+
+    This patch implements simple hwconfig infrastructure: an
+    interface for software knobs to control a hardware.
+
+    This is very simple implementation, i.e. it is implemented
+    via `hwconfig' environment variable. Later we could write
+    some "hwconfig <enable|disable|list>" commands, ncurses
+    interface for Award BIOS-like interface, and frame-buffer
+    interface for AMI GUI[1] BIOS-like interface with mouse
+    support[2].
+
+    Current implementation details/limitations:
+
+    1. Doesn't support options dependencies and mutual exclusion.
+       We can implement this by integrating apt-get[3] into the
+       u-boot. But I didn't bother yet.
+
+    2. Since we don't implement hwconfig command, i.e. we're working
+       with the environement directly, there is no way to tell that
+       toggling a particular option will need a reboot to take
+       an effect. So, for now it's advised to always reboot the
+       target after modifying hwconfig variable.
+
+    3. We support hwconfig options with arguments. For example,
+
+       set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
+
+       That means:
+       - dr_usb - enable Dual-Role USB controller;
+       - dr_usb:mode=peripheral - USB in Function mode;
+       - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
+
+    The purpose of this simple implementation is to define some
+    internal API and then we can continue improving user experience
+    by adding more mature interface, like hwconfig command with
+    bells and whistles. Or not adding, if we feel that current
+    interface fits its needs.
+
+    [1] http://en.wikipedia.org/wiki/American_Megatrends
+    [2] Regarding ncurses and GUI with mouse support -- I'm just
+       kidding.
+    [3] The comment regarding apt-get is also a joke, meaning that
+       dependency tracking could be non-trivial. For example, for
+       enabling HW feature X we may need to disable Y, and turn Z
+       into reduced mode (like RMII-only interface for ethernet,
+       no MII).
+
+       It's quite trivial to implement simple cases though.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
+Author: Jerry Van Baren <gvb.uboot@gmail.com>
+Date:  Wed Jul 15 20:42:59 2009 -0400
+
+    Improve U-Boot Porting Guide in the README
+
+    Update for...
+    * BDI2000 -> BDI3000 (BDI2000 is obsolete).
+    * Add a line to read the doc/README.* files
+    * Fix coding standard violations
+
+    Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
+
+commit 9578718c1b085cac73017d834001bc5cb0b2f73f
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Tue Jul 14 16:00:24 2009 -0500
+
+    mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
+
+    a.k.a cfi_mtd.c does as cfi_flash.c does.  This also prevents
+    the TQM834x build from doing a:
+
+    cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
+    cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
+
+    using gcc 4.4.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Tue Jul 7 18:04:21 2009 -0500
+
+    mpc83xx: increase MONITOR_LEN to offset growing pains
+
+    Saving the environment leads to overwriting u-boot itself,
+    bricking boards.  Increase u-boot's image size so the environment
+    base address doesn't end up overlapping u-boot text.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c31e13260bcd048a94412a47b004386ea6112acf
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Tue Jun 30 15:48:41 2009 +0300
+
+    usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit d89e1c36891de793a20a929282acc0fc7b98feac
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Tue Jun 30 15:48:40 2009 +0300
+
+    usb: mpc834x: added support of the MPH USB controller in addition to the DR one
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit d9ac3d5a17ecef0beb70073018925e011b11684e
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Jun 15 11:51:47 2009 -0500
+
+    mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
+
+    When enabling NAND support for a board, one must also define
+    CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
+    for correct output.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Cc: Dave Liu <daveliu@freescale.com>
+    Cc: Ron Madrid <ron_madrid@sbcglobal.net>
+    Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
+
+commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Wed Jul 8 07:41:24 2009 +0000
+
+    ColdFire: Update bootargs
+
+    Add a bootargs for M53017EVB and update bootargs
+    for M54451EVB
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Tue Jun 30 14:30:19 2009 +0000
+
+    Command for accessing serial flash update
+
+    Change strtoul number base of argv 3 from 0 to 16
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit ee0a8462466dd284968536eb57c6eef4be0d6aad
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Tue Jun 30 14:18:29 2009 +0000
+
+    ColdFire: Add DSPI support for MCF5227x and MCF5445x
+
+    Remove individual CPU specific DSPI driver.
+    Add required feature for the common DSPI driver in cpu_init and
+    in platform configuration file.
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit dec61c7851baa72151ef1d3657e7bb3b68907d48
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Tue Jun 30 14:09:47 2009 +0000
+
+    Coldfire: Consolidate DSPI driver
+
+    Unify both MCF5227x and MCF5445x DSPI driver in CPU to
+    driver/spi folder for common use.
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 11d88b26a68bd4bf98b1c962fde6257a50978231
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Fri Jun 12 13:03:34 2009 +0000
+
+    ColdFire: Remove compiler warning messages
+
+    Remove unused variables and printf type mismatch in
+    lib_m68k/board.c
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Fri Jun 12 11:31:31 2009 +0000
+
+    ColdFire: Fix M53017EVB flash size
+
+    Increase the flash size from 8MB to 16MB
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Fri Jun 12 11:29:00 2009 +0000
+
+    ColdFire: Add M5208EVB and MCF520x CPU support
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 709b384b6493d9726dce20663ebe31bf7cab2925
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Thu Jun 11 15:39:57 2009 +0000
+
+    ColdFire: Update for M54451EVB
+
+    Update serial boot DRAM's Internal RAM, vector table and DRAM in
+    start.S, serial flash's read status command over SPI and NOR
+    flash.
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
+Author: TsiChung Liew <tsicliew@gmail.com>
+Date:  Thu Jun 11 12:50:05 2009 +0000
+
+    ColdFire: Update configuration file to use flash buffer write
+
+    Update M52277EVB, M53017EVB and M54455EVB platform configuration
+    file to use flash buffer write
+
+    Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
+
+commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:53 2009 +0200
+
+    mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:52 2009 +0200
+
+    aria: add JFFS2 and MTDPARTS support; adjust flash map
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:51 2009 +0200
+
+    aria: enable NAND flash support
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 13946925e850db5351982acb691d51716fc754e2
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:50 2009 +0200
+
+    MPC512x: fix typo in comment listing the NAND driver name
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:49 2009 +0200
+
+    mecp5123: cleanup - remove dead code
+
+    Remove dead code that was obviously a left-over from copy & paste.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:48 2009 +0200
+
+    aria: adjust memory controller initialization
+
+    Needed for Rev. 2 silicon at 400 MHz
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:47 2009 +0200
+
+    MPC512x: factor out common code
+
+    Now that we have 3 boards for the MPC512x it turns out that they all
+    use the very same fixed_sdram() code.
+
+    This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
+    and adds a new header file, include/asm-ppc/mpc512x.h, with some
+    macros, inline functions and prototype definitions specific to MPC512x
+    systems.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:46 2009 +0200
+
+    mecp5123: fix build error
+
+    The mecp5123 board did not compile because the MSCAN Clock Control
+    Registers were missing; these got added, but as an array instead
+    of 4 individual registers. Adapt the code so it builds.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:45 2009 +0200
+
+    MPC512x: Add MSCAN1...4 Clock Control Registers
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit f5489c4200b37c9a1d6dbde116f5adc0539610de
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:58:44 2009 +0200
+
+    MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
+
+    When enabling NAND support for a board, one must also define
+    CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
+    for correct output.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
+Author: Po-Yu Chuang <ratbert@faraday-tech.com>
+Date:  Fri Jul 10 18:03:57 2009 +0800
+
+    issue write command to base for JEDEC flash
+
+    For JEDEC flash, we should issue word programming command relative to
+    base address rather than sector base address. Original source makes
+    SST Flash fails to program sectors which are not on the 0x10000 boundaries.
+
+    e.g.
+    SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
+    is 0x1000 bytes.
+
+    Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
+    it sends to 0x46555 and the chip fails to recognize that address.
+
+    This patch is tested with SST39LF040.
+
+    Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 986922714ffd21ad39f48522d285fffc7aed56b1
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 2 11:53:50 2009 +0200
+
+    versatile: update config and merge to cfi flash driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Peter Pearse <peter.pearse@arm.com>
+    Cc: Catalin Marinas <catalin.marinas@arm.com>
+
+commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 2 11:53:49 2009 +0200
+
+    versatile: specify the board type on the prompt
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Peter Pearse <peter.pearse@arm.com>
+    Cc: Catalin Marinas <catalin.marinas@arm.com>
+
+commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
+Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+Date:  Thu Jun 25 17:04:15 2009 +0200
+
+    at91: Introduction of at91sam9g10 SOC.
+
+    AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
+    faster clock speed: 266/133MHz.
+
+    Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+
+commit 22ee647380c42f44528f99b7c1b423725e542102
+Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+Date:  Thu Jul 9 10:16:29 2009 +0200
+
+    at91: Introduction of at91sam9g45 SOC.
+
+    AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
+    It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
+    peripherals.
+
+    The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
+    On the board you can find 2 USART, USB high speed,
+    a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
+
+    Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+
+commit c33c5990cec7ced9ef1ef148debbca34adafa12b
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Tue Jun 23 17:30:05 2009 +0200
+
+    pxa: fix CKEN_B register bits
+
+    The current defition for CKEN_B register bits is nonsense. Adding 32 to
+    the shifted value is equal to '| (1 << 5)', and this bit is marked
+    'reserved' in the PXA docs.
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+
+commit bd876be46f28b5fc2896537f6d01353f332789f7
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Tue Jun 23 17:30:04 2009 +0200
+
+    pxa: add clock for system bus 2 arbiter
+
+    This clock is needed for systems using the USB2 device unit or the 2d
+    graphics accelerator.
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+
+commit b016000a95514c08cab50e1cba00b019c0801bc4
+Author: Grazvydas Ignotas <notasas@gmail.com>
+Date:  Wed Jul 8 00:30:01 2009 +0300
+
+    OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
+
+    Pandora is using both SDRC CSes. The MUX setting is needed
+    for the second CS clock signal to allow the 2 RAM parts to
+    be put in self-refresh correctly.
+
+    Based on similar patch for beagle and overo by
+    Jean Pihet and Steve Sakoman.
+
+commit 8672c288703f3c51c829851c8fe6608c7869faaa
+Author: Grazvydas Ignotas <notasas@gmail.com>
+Date:  Wed Jul 8 00:30:00 2009 +0300
+
+    OMAP3 pandora: setup pulls for various GPIOs
+
+    Set pullups or pulldowns for GPIOs which need them.
+    Disable them for others, which have external pulls.
+    Also make disabled pull setting consistent (some pins had
+    type set to "up" even if pull type selection was disabled).
+
+commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
+Author: Grazvydas Ignotas <notasas@gmail.com>
+Date:  Wed Jul 8 00:29:59 2009 +0300
+
+    OMAP3 pandora: setup pin mux for pins used on rev3 boards
+
+    Setup pin mux for GPIO pins connected on rev3 or later
+    boards. Also change NUB2 IRQ pin. This should not affect
+    older boards because they don't have any nubs (analog
+    controllers) attached to them.
+
+commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
+Author: Grazvydas Ignotas <notasas@gmail.com>
+Date:  Wed Jul 8 00:29:58 2009 +0300
+
+    OMAP3 pandora: pin mux cleanup
+
+    Remove configuration of not unused pins, effectively
+    leaving them in safe mode.
+
+commit b996165f5a1623a055c03b22d64d6d5da81835d0
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Jul 6 15:50:47 2009 +0530
+
+    arm: Kirkwood: bugfix: UART1 bar correction
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Jul 7 15:48:58 2009 -0500
+
+    usb: Fix compiler warning with gcc4.4
+
+    ehci-hcd.c: In function 'ehci_submit_root':
+    ehci-hcd.c:719: warning: value computed is not used
+    ehci-hcd.c:748: warning: value computed is not used
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Wed Jul 8 11:42:19 2009 +0900
+
+    sh: Update pci config for Renesas r7780mp board
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Thu Jun 25 16:31:26 2009 +0900
+
+    sh: Add support ESPT-GIGA borad
+
+    ESPT-Giga is SH7763-based reference board.
+    Board support is relatively sparse, presently supporting serial,
+    gigabit ethernet, USB host, and MTD.
+
+    More information (in Japanese) available at:
+    http://www.cente.jp/product/cente_hard/ESPT-Giga.html
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit dae4e0148a1146a5610025ae4b445e841410b659
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Fri Jul 3 16:06:37 2009 +0200
+
+    Add ESD PCI vendor ID
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+
+commit 876b3cef537aab2cba8c19505db2876f6057f818
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Jun 22 18:01:41 2009 -0500
+
+    api_examples/Makefile: General cleanup
+
+    * Remove symlinking of files located outside api_examples/
+
+    * Auto generate dependencies for files located outside api_examples/
+
+    * Update names of variables to be similar to those in tools/Makefile
+
+    * Fix out of tree build error
+      Dependencies are calculated for all files in the SRCS variable.
+      Previously, the SRCS variable contained files which were symlinked
+      into the api_examples/ directory.  These symlinked files did not exist
+      when dependencies were calculated when building out of tree.  This
+      resulted in errors such as:
+       make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'.  Stop.
+       make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
+       make: *** [depend] Error 2
+
+      Since symlinked source files are no longer used, this bug no longer
+      exists.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Jun 22 18:01:40 2009 -0500
+
+    api_examples/Makefile: Get rid of unnecessary intermediate LIB target
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Jun 22 18:01:39 2009 -0500
+
+    api_examples/Makefile: Combine ELF and BIN targets
+
+    Combining the two rules cleans up the Makefile a bit
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Jun 22 18:01:38 2009 -0500
+
+    api_examples/Makefile: Split up variable declarations
+
+    This cleans up the Makefile a bit and simplifies future changes
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
+Author: Timur Tabi <timur@freescale.com>
+Date:  Fri Jun 19 14:10:52 2009 -0500
+
+    remove _IO_BASE and KSEG1ADDR from board configuration files
+
+    The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
+    driver, but the code that used that macro was removed over a year
+    ago, so board configuration files no longer need to define it.
+
+    The _IO_BASE macro is also automatically defined to 0 if it isn't
+    already set, so there's no need to define that macro either in the
+    board configuration files.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+    Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c9969947a4687de90e2bb58e76842b491aa0e0b9
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Sun Jun 14 18:21:28 2009 -0400
+
+    board support patch for phyCORE-MPC5200B-tiny
+
+    Add support for the Phytec phyCORE-MPC5200B-tiny.
+    Code originally from Pengutronix.de.
+    Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
+    Timer 0/1
+
+    Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
+    Acked-by: Grant Likely <grant.likely@secretlab.ca>
+
+commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Jun 15 13:37:20 2009 -0400
+
+    kallsyms: fix escaping of NUL char in strings
+
+    The current kallsyms code is using \\0 to escape the backslash in the awk
+    code, but the shell too needs escaping.  This way we make sure gcc is
+    passed the \0.  Then gcc itself will consume this as an octal, so we have
+    to use 000 so gcc will create the final NUL.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ed540f07b8ad86909704e9806c1762462cb4995a
+Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+Date:  Fri Jun 26 10:18:49 2009 -0400
+
+    Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
+
+    The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
+    board, so add a simple example of how to do that in the board config.
+
+    Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f8bf54b4081c3c3d518830df0017a23ec672a841
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jun 25 19:40:28 2009 -0400
+
+    Blackfin: blackstamp: update spi flash settings
+
+    The latest blackstamp boards can only run the SPI flash at 15MHz before
+    they start to crap out, so lower the max speeds accordingly.  The new SPI
+    flash also has different sector requirements, so update the environment
+    sizes as well.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 286070ddc8339666c09bd7912e960b850a8a0318
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:31:52 2008 -0400
+
+    Blackfin: add cache_dump commands
+
+    A few debug-type commands used to dump the raw icache/dcache data. Useful
+    when trying to track down cache-related bugs.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Jul 8 15:31:57 2009 +0200
+
+    ppc4xx: Set default PCI device ID for 405EP boards
+
+    Current code only sets the PCI vendor id to 0x1014 and
+    leaved device id to 0x0000.
+
+    Ths patch ....
+    a) uses the correct PCI_VENDOR_ID_IBM macro for this
+    b) sets the default device ID as stated in the UM to 0x0156
+       by using PCI_DEVICE_ID_IBM_405GP for this.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 123f102ec093fba6967066acdf9beb637df2e2d1
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Jul 8 13:43:55 2009 +0200
+
+    ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
+
+    This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
+    to cpu/ppc4xx/4xx_pci.c.
+
+    The original cpu_init_f() function enabled the 405EP's internal arbiter
+    in all situations. Also the HCE bit in cpc0_pci is always set.
+    The first is not really wanted for PCI adapter designs and the latter
+    is a general bug for PCI adapter U-Boots. Because it enables
+    PCI configuration by the system CPU even when the PCI configuration has
+    not been setup by the 405EP. The one and only correct place is
+    in pci_405gp_init() (see "Set HCE bit" comment).
+
+    So for compatibility reasons the arbiter is still enabled in any case,
+    but from weak pci_pre_init() so that it can be replaced by board specific
+    code.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c71103f9dc66dfcce8ad6df942364043bf27ade8
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Wed Jul 8 13:43:23 2009 +0200
+
+    ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Jun 29 20:56:43 2009 +0530
+
+    usb: add Marvell Kirkwood ehci host controller driver
+
+    This driver is tested on Sheevaplug platform
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit db7b43e4681f6f93c336132708157a8a0cca1f8b
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Wed Jun 24 10:08:40 2009 +0530
+
+    mpc83xx: USB: fix: access of ehci struct elements
+
+    It fixes the access to the 'ehci' struct elements for mpc83xx which
+    should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
+    Sorry about that.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 08066152735417fc55a5c9de2cec0714c529e4f3
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Fri Jun 19 17:56:00 2009 +0530
+
+    mpc8xxx: USB: fix: access of ehci struct elements
+
+    This patch fixes the access to the 'ehci' struct elements which should
+    have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
+    Sorry about that.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
+Author: Bryan Wu <bryan.wu@analog.com>
+Date:  Tue Jun 16 05:26:27 2009 -0400
+
+    usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
+
+    Signed-off-by: Bryan Wu <bryan.wu@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 7984967a9405672db1581402d2c2cfae268d1a67
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jun 16 05:26:25 2009 -0400
+
+    usb: musb: drop old musb read/write prototypes
+
+    These functions are no longer defined, so remove their prototypes.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Jun 15 11:50:07 2009 -0500
+
+    usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
+
+    fix a stray CONFIG_MPC83XX that escaped commit
+    0f898604945af4543c1525fc33b6bae621a3b805.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Tue Jun 30 23:47:30 2009 +1000
+
+    asm-generic: Consolidate errno.h to asm-generic/errno.h
+
+    This patch use blackfin errno.h implementation which
+    correspond Linux kernel one.
+
+    MIPS implemetation is different that's why I keep it.
+
+    I removed ppc_error_no.h from Marvell boards which
+    was the same too.
+
+    I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
+
+    Acked-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 2896b5851f0430bf16529376a4193630e966c788
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Jul 7 16:01:02 2009 +0200
+
+    Command improvements for ubifs
+
+    Check that an argument is passed to ubifsmount and that addresses and
+    sizes are actually numbers for ubifsload. Also improve the instructions
+    a bit.
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Jul 7 16:59:46 2009 +0200
+
+    Handle VID header offset in ubi part command
+
+    The VID header offset is sometimes needed to initialize the UBI
+    partition. This patch adds it (optionally) to the command line
+    for the ubi part command.
+
+    (Lines have been properly wrapped since last version)
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+    Acked-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Jul 9 09:56:16 2009 +0200
+
+    MAINTAINERS: fix sorting, remove duplicates.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit efbf14e9a2394a154b12643d4a011994b5096b5a
+Author: Heiko Schocher <heiko.schocher@invitel.hu>
+Date:  Wed Dec 10 08:27:01 2008 +0100
+
+    all platforms: make show_boot_progress() work again
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Jun 29 15:25:18 2009 +0530
+
+    nand: Add Marvell Kirkwood NAND driver
+
+    This patch adds a NAND driver for the Marvell Kirkwood SoC's
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+
+commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Mon Jul 6 16:27:33 2009 +0200
+
+    ppc4xx: Make pll_write global
+
+    This patch makes pll_write on PPC405EP boards
+    global and callable from C code.
+
+    pll_write can be used to dynamically modify the PLB:PCI divider
+    as it is required for 33/66 MHz pci adapters based on the 405EP.
+
+    board_early_init_f() is a good place to do that (check M66EN signal
+    and call pll_write() when it is required).
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 20b3c4b528606d51799aed5e4c71783720cd2b72
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jul 6 11:44:33 2009 +0200
+
+    ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Fri Jul 3 16:06:06 2009 +0200
+
+    ppc4xx: Implement is_pci_host() for 405 CPUs
+
+    This patch implements the is_pci_host() function in a similiar way
+    as it is used on 440 targets.
+
+    The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
+    build on 405EP targets because checking the PCI arbiter is different.
+    So putting the fixed code into a separate function makes the code
+    more readable.
+
+    Also using is_pci_host() on 405 brings 405 and 440 PCI code
+    a little bit closer.
+
+    In preparation for an upcoming 405EP based PMC module I made this
+    function weak so that it can be overwritten from board specific code.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 04ddae915f295dee301f15c32100533a48e3b433
+Author: Alessio Centazzo <centazzo@gmail.com>
+Date:  Wed Jul 1 22:20:51 2009 -0700
+
+    ppc4xx: Fixed PPC4xx debug compilation error in uic.c
+
+    This patch fixes a debug compilation error for PPC4xx platforms, all
+    other architectures are not affected by this change.  The 'handler'
+    pointer was undefined.  The fix is exercised and has effect only if
+    DEBUG is defined.
+
+    Signed-off-by: Alessio Centazzo acpatin@yahoo.com
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
+Author: Felix Radensky <felix@embedded-sol.com>
+Date:  Wed Jul 1 11:37:46 2009 +0300
+
+    4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
+
+    This patch fixes printf format string compilation warnings in several
+    debug statements. It also fixes the dump of DDR controller MQ registers
+    found on some 44x and 46x platforms. The current register dump code
+    uses incorrect DCRs to access these registers.
+
+    Signed-off-by: Felix Radensky <felix@embedded-sol.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
+Author: Felix Radensky <felix@embedded-sol.com>
+Date:  Mon Jun 22 15:30:42 2009 +0300
+
+    ppc4xx: Fix FDT EBC mappings on Canyonlands
+
+    This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
+    First, NAND EBC mapping was missing, making Linux NAND driver
+    unusable on this board. Second, NOR remapping code assumed that
+    NOR is always on CS0, however when booting from NAND NOR is on CS3.
+
+    Signed-off-by: Felix Radensky <felix@embedded-sol.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Tue Jun 16 22:29:15 2009 +0900
+
+    sh: Revised the build with newest compiler
+
+    The check of data became severe from newest gcc.
+    This patch checked in gcc-4.2 and 4.3 .
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit be45c632568ba76343c1453b3951ad793f482fd5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:48 2009 +0200
+
+    sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:47 2009 +0200
+
+    sh3/sh4: fix CONFIG_SYS_HZ to 1000
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit add380f51f34ed1e2678c2abac8d53c91d652f26
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:46 2009 +0200
+
+    sh: introduce clock framework
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:45 2009 +0200
+
+    sh: unify linker script
+
+    all sh boards use the same cpu linker script so move it to cpu/$(CPU)
+
+    that could be overwrite in following order
+    SOC
+    BOARD
+    via the corresponding config.mk
+
+    tested on r2dplus
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 236aad875817771eb1f25ed32784b3cd7760b2e6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:44 2009 +0200
+
+    sh: make the linker scripts more generic
+
+    currently we need to sync the linker script enty and TEXT_BASE manualy
+    and the reloc_dst is based on it
+
+    instead provide it now from the ldflags
+
+    tested on r2dplus
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit ce29817212792113cd2d67a9767049a2e262c406
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jun 4 12:06:43 2009 +0200
+
+    sh7785lcr: fix out of tree build
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 2e8a6f551cba550e9220dca4d8504066203b1f74
+Author: HeungJun Kim <riverful.kim@gmail.com>
+Date:  Tue Jun 30 14:42:22 2009 +0900
+
+    env_onenand: change env_address type from unsigned long to loff_t
+
+    If use the onenand boot, the env_relocate_spec() calls mtd->read(),
+    and the type of the argument #2 of mtd->read() was changed to loff_t.
+    But, the "env_addr" type is still unsigned long, thus this patch change
+    the type from unsigned long to loff_t.
+
+    Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
+    Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Thu Jun 18 18:23:27 2009 +0800
+
+    fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
+
+    The bbt descriptors contains the pointer to the bbt pattern which
+    are statically initialized memory struct. When relocated to RAM,
+    these pointers will continue point to NOR flash(or L2 SRAM, or
+    other boot device). If the contents of NOR flash changed or L2
+    SRAM disabled, it'll hang the system.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 1dac3a51875967f32641bbc0d26dc382ef02330a
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Wed Jun 24 17:23:49 2009 -0500
+
+    nand_spl: Fix cmd_ctrl usage in nand_boot.c.
+
+    When adding large page NAND support to this file, I had a misunderstanding
+    about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
+    anywhere I can find) -- it is apparently just a hint to drivers,
+    which aren't required to preserve the old value for subsequent
+    non-"change" invocations.
+
+    This change makes nand_boot.c no longer assume this.  Note that this
+    happened to work by chance with some NAND drivers, which don't preserve
+    the value, but treat 0 equivalently to NAND_CTRL_ALE.
+
+    I don't have hardware to test this, so any testing is appreciated.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 98713d2663d5d30dde74f48f547114a2bfd9d463
+Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
+Date:  Thu Jun 18 18:41:03 2009 +0100
+
+    Bug-fix in drivers mtd nand Makefile
+
+    The S3C2410 NAND driver source file is included in the makefile instead of
+    the object file.
+
+    Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Mon May 18 16:07:22 2009 +0200
+
+    nand_spl: read environment early, when booting from NAND using nand_spl
+
+    Currently, when booting from NAND using nand_spl, in the beginning the default
+    environment is used until later in boot process the dynamic environment is read
+    out. This way environment variables that must be interpreted early, like the
+    baudrate or "silent", cannot be modified dynamically and remain at their
+    default values. Fix this problem by reading out main and redundand (if used)
+    copies of the environment in the nand_spl code.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 14:27:40 2009 +0200
+
+    mtd: nand: use loff_t for offset
+
+    nand_util currently uses size_t which is arch dependent and not always a
+    unsigned long.  Now use loff_t, as does the linux mtd layer.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun May 24 17:34:33 2009 +0200
+
+    nand/onenand: Fix missing argument checking for "markbad" command
+
+    The "nand markbad" and "onenand markbad" commands did not check if an
+    argument was passed; if this was forgotten, no error was raised but
+    block 0 was marked as bad.
+
+    While fixing this bug, clean up the code a bit and allow to pass more
+    than one block address, thus allowing to mark several blocks as bad
+    in a single command invocation.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit cd84423a09f3a08029fe41c1db96168debd0b51f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon May 25 22:42:28 2009 -0400
+
+    mtd: nand: new base driver for memory mapped nand devices
+
+    The BF537-STAMP Blackfin board had a driver for working with NAND devices
+    that are simply memory mapped.  Since there is nothing Blackfin specific
+    about this, generalize the driver a bit so that everyone can leverage it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit d27bc728cf35e7d7996fbd77154335e66615b213
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Mon May 18 16:06:45 2009 +0200
+
+    env_nand: remove unused variable.
+
+    Remove an unused "total" variable in multiple functions.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Sun May 10 15:43:01 2009 -0700
+
+    davinci_nand chipselect/init cleanup
+
+    Update chipselect handling in davinci_nand.c so that it can
+    handle 2 GByte chips the same way Linux does:  as one device,
+    even though it has two halves with independent chip selects.
+    For such chips the "nand info" command reports:
+
+      Device 0: 2x nand0, sector size 128 KiB
+
+    Switch to use the default chipselect function unless the board
+    really needs its own.  The logic for the Sonata board moves out
+    of the driver into board-specific code.  (Which doesn't affect
+    current build breakage if its NAND support is enabled...)
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Sat May 9 12:35:20 2009 -0400
+
+    NAND DaVinci: Update to ALE/CLE Mask values
+
+    All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
+    except the DM646x. This was decided by the design team driving the design.
+    This patch updates the CLE and ALE values for DM646x.
+    Updated patches for DM646x will be sent shortly.
+    This applies to u-boot-nand-flash git
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 0c1684437ef810c503df29e8d73f63191aa63862
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Wed Apr 29 09:47:09 2009 -0400
+
+    ARM DaVinci: Changing ALE Mask Value
+
+    The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
+    from '0xa' to '0x8'. This is the mask we use for all TI releases.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Tue Apr 28 13:19:53 2009 -0700
+
+    davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
+
+    Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option.  It's not just nasty;
+    it's also unused by any current boards, and doesn't even match the
+    main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
+    on newer chips that support it).
+
+    DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
+    match non-BROKEN code paths for 1-bit HW ECC.  The BROKEN code paths
+    do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
+    and 5.0/2.6.18) do ... but only for small pages.  Large page support
+    is really broken (and it's unclear just what software it was trying
+    to match!), and the ECC layout was making three more bytes available
+    for use by filesystem (or whatever) code.
+
+    Since this option itself seems broken, remove it.  Add a comment
+    about the MV/TI compat issue, and the most straightforward way to
+    address it (should someone really need to solve it).
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Tue Apr 28 13:19:50 2009 -0700
+
+    davinci_nand: cleanup I (minor)
+
+    Minor cleanup for DaVinci NAND code:
+
+     - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
+       be defined when there are multiple chipselect lines in use
+       (as with common 2 GByte chips).
+
+     - Cleanup handling of EMIF control registers
+       * Only need one pointer pointing to them
+       * Remove incorrect and unused struct supersetting them
+
+     - Use the standard waitfunc; we don't need a custom version
+
+     - Partial legacy cleanup:
+       * Don't initialize every board like it's a DM6446 EVM
+       * #ifdef a bit more code for BROKEN_ECC
+
+    Sanity checked with small page NAND on dm355 and dm6446 EVMs;
+    and large page on dm355 EVM (packaged as two devices, not one).
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jul 7 22:35:02 2009 +0200
+
+    Coding style cleanup; update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jun 29 13:30:50 2009 +0200
+
+    UBI: Fix build problem noticed on Apollon (arm/testing repo)
+
+    This patch fixes a build problem noticed on Apollon by using
+    mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
+    So this brings the U-Boot UBI version more in sync with the Linux
+    version again.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Jul 6 20:29:15 2009 +0530
+
+    sf: Macronix additional chips supported
+
+    new chips supported:-
+    MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
+    out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
+
+    Modified the Macronix flash support to use 2 bytes of device id instead of 1
+    This was required to support MX25L12855E
+
+    Signed-off-by: Piyush Shah <spiyush@marvell.com>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit dd54126715b89ed0c43322aa78b0dad306f043b6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jun 19 03:27:28 2009 -0400
+
+    sf: sst: add sst25vf###b ids
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jun 19 03:20:06 2009 -0400
+
+    sf: sst: fix sector size
+
+    Looks like when I was encoding the sector sizes, I forgot to divide by 8
+    (due to the stupid marketing driven process that declares all sizes in
+    useless megabits and not megabytes).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jul 5 01:06:06 2009 +0200
+
+    nhk8815: fix MAKEALL
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Sat Jul 4 10:31:24 2009 +0200
+
+    MX31: Add NAND SPL boot support to i.MX31 PDK board.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit 78eabb90b793fafe875a7469526d1715fa56cbb4
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Jun 29 20:55:54 2009 +0530
+
+    arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
+
+    This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 095a460b49022e64df76134300643606e3acb4e9
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Jun 29 10:52:37 2009 +0200
+
+    arm nomadik: use 1000 as HZ value and rewrite timer code
+
+    This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
+    timer code, which is now both correct and much smaller.  Unused
+    functions like udelay_masked() have been removed as no driver uses
+    them, even the ones that are not currently active for this board.
+    mtu.h is copied literally from the kernel sources.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f7aa59b29a451cc502078a9e4ba32345a4250c05
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Jun 22 09:18:57 2009 +0200
+
+    arm nomadik: allow Nand and OneNand to coexists
+
+    The evaluation kit has both Nand and OneNand, both drivers are there
+    and the two configurations only select a different default for the
+    jffs partition. This adds the OneNand driver and cleans up storage.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+
+commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Jun 22 09:18:47 2009 +0200
+
+    arm nomadik: cleanup reset
+
+    There is only one public release of the Nomadik chip, so the ifdef
+    in reset code as well as a define in the config file are not needed
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+
+commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Jun 22 09:18:37 2009 +0200
+
+    arm nomadik: rename board to nhk8815
+
+    This is an error in my side in the initial submission: nobody
+    calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
+
+commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
+Author: Stefano Babic <sbabic@denx.de>
+Date:  Wed Jul 1 20:40:41 2009 +0200
+
+    xscale: add support for the polaris board
+
+    The Polaris board is based on the TrizepsIV module of
+    Keith & Koep (http://www.keith-koep.com).
+
+    Signed-off-by: Stefano Babic <sbabic@denx.de>
+
+commit 88bd97501314683b87f3f1edcf55b347c041b722
+Author: Stefano Babic <sbabic@denx.de>
+Date:  Wed Jul 1 04:33:56 2009 +0200
+
+    xscale: fix USB initialization for Trizepsiv module
+
+    Due to change in the usb_board_init() prototype, the USB for
+    the TrizepsIV was not correctly initialized.
+    Removed dummy print from usb_board_stop().
+
+    Signed-off-by: Stefano Babic <sbabic@denx.de>
+
+commit 0b785ddd60120cfb74d18e58c56054238219f6db
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Wed Jul 1 20:34:51 2009 +0200
+
+    net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
+
+    This patch looks okay on u-boot-net.git/next branch
+    but when it was merged to u-boot.git/master the last line is missing
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
+Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+Date:  Tue Jun 30 21:03:37 2009 +0200
+
+    at91: Add esd gmbh MEESC board support
+
+    This patch adds support for esd gmbh MEESC board.
+    The MEESC is based on an Atmel AT91SAM9263 SoC.
+
+    Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+
+commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Tue Jun 30 21:03:35 2009 +0200
+
+    ARM: Update mach-types
+
+    update against linux v2.6.30
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 45627fce18139a74e0755124d27376b520db156c
+Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+Date:  Tue Jun 30 23:03:33 2009 +0200
+
+    at91: Add CAN init function
+
+    To enable CAN init, CONFIG_CAN has to be defined in the board config file
+    and at91_can_hw_init() has to be called in the board specific code.
+
+    CAN is available on AT91SAM9263 and AT91CAP9 SoC.
+
+    Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+
+commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
+Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
+Date:  Tue Jun 30 23:03:31 2009 +0200
+
+    arm: Kirkwood: Correct header define
+
+    Correct define typo (. -> ,)
+
+    Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
+
+commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Wed Jul 1 01:07:55 2009 +0200
+
+    MX31: Add basic support for Freescale i.MX31 PDK board.
+
+    Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
+
+    This patch assumes that some other program performs the actual
+    NAND boot.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+    Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 8d460a573e2a2ac4834636903865a0428ad0e629
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Tue Jun 23 00:12:01 2009 +0200
+
+    S3C24x0: extract interrupts from timer
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit c8badbe500a752f42049e51042767ee62ea714e0
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jun 28 14:14:21 2009 +0200
+
+    dm355/pm9261: add missing CONFIG_NET_MULTI
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Tue Jun 23 00:12:01 2009 +0200
+
+    arm920t/interrupts: Move conditional compilation to Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 06e758e75c79ce8761866bf8165c443584a20893
+Author: Kim, Heung Jun <riverful@gmail.com>
+Date:  Sat Jun 20 11:02:17 2009 +0200
+
+    move L2 cache enable/disable function to cache.c in the omap3 SoC directory
+
+    Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
+    CC: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit d583ef5147066d3609de21f3beebbab99a19bad4
+Author: Thomas Lange <thomas@corelatus.se>
+Date:  Sat Jun 20 11:02:17 2009 +0200
+
+    ARM DaVinci: EMIF settings
+
+    NAND module should not modify EMIF registers unrelated to CS2
+    that is used for NAND, i.e. do not modify EWAIT config register
+    or registers for other Chip Selects.
+
+    Without this patch, EMIF configurations made in board_init()
+    will be invalidated.
+
+    Signed-off-by: Thomas Lange <thomas@corelatus.se>
+
+commit 2600b8571a26c10c1c43401d7af38e2333cc5381
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jun 20 11:02:17 2009 +0200
+
+    versatile: config coding style cleanup
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: Peter Pearse <peter.pearse@arm.com>
+
+commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sat Jun 20 11:01:53 2009 +0200
+
+    arm: Kirkwood: Basic SOCs support
+
+    Kirkwood family controllers are highly integrated SOCs
+    based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
+
+    SOC versions supported:-
+    1) 88F6281-A0      define CONFIG_KW88F6281_A0
+    2) 88F6192-A0      define CONFIG_KW88F6192_A0
+
+    Other supported features:-
+    1) get_random_hex() fucntion
+    2) PCI Express port initialization
+    3) NS16550 driver support
+
+    Contributors:
+    Yotam Admon <yotam@marvell.com>
+    Michael Blostein <michaelbl@marvell.com
+
+    Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
+    Acked-by: Stefan Rose <sr@denx.de>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 5c3d5817e5e68b828c165c501c215e793dc63aac
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sat Jun 20 11:01:52 2009 +0200
+
+    arm: generic cache.h for ARM architectures
+
+    This patch is required for Kirkwood SoC support
+    may be used by other ARM architectures
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 9c8c706c92e53433a871a563946c38075d76504d
+Author: Matthias Ludwig <mludwig@ultratronik.de>
+Date:  Sat Jun 20 11:01:50 2009 +0200
+
+    OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
+
+    Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
+
+commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
+Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+Date:  Wed Jun 24 08:32:09 2009 +0200
+
+    at91sam9260/9263: add back up for the rst(reset controller).
+
+    On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
+    set to 0 after being set to 500 ms for the PHY reset.
+    Do backup the old reset length and restore it after the MACB initialisation.
+
+    Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
+    Signed-off-by: Stelian Pop <stelian@popies.net>
+
+commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Jul 3 12:45:44 2009 -0500
+
+    fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
+
+    sys_eeprom.c: In function 'do_mac':
+    sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
+    sys_eeprom.c: In function 'mac_read_from_eeprom':
+    sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:51 2009 -0500
+
+    83xx: Add support for fsl_dma driver
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
+    Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:50 2009 -0500
+
+    83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
+
+    Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
+    CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
+    use
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Jul 2 16:15:01 2009 +0530
+
+    8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
+
+    Defining the next two configs allows to switch the serial port from the
+    console using the setenv stdin and stdout
+      1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
+      2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 546b1032907df70f2dd0f98f3ad09885a88411e5
+Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+Date:  Thu Jul 2 16:14:40 2009 +0530
+
+    85xx: Adds GPIO registers to MPC85xx Memory Map.
+
+    Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 5da6f806b400372b8a0664f3282c9e83a402eb66
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:26:01 2009 -0500
+
+    86xx: XPedite5170 board support
+
+    Initial support for Extreme Engineering Solutions XPedite5170 -
+    a MPC8640-based 3U VPX single board computer with a PMC/XMC
+    site.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e66f38da8434425aca8df08d06d9ef41b3478d3b
+Author: Timur Tabi <timur@freescale.com>
+Date:  Wed Jul 1 16:51:59 2009 -0500
+
+    fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
+
+    The calculate for rank density in compute_ranksize() for DDR3 used all
+    integers for the expression, so the result was also a 32-bit integer, even
+    though the 'bsize' variable is a u64.  Fix the expression to calculate a
+    true 64-bit value.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:49 2009 -0500
+
+    fsl_dma: Make DMA transactions snoopable
+
+    Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
+    This allows dma transactions to be used for operations such as memory
+    copies without any additional cache control operations.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:48 2009 -0500
+
+    fsl_dma: Break out common memory initialization function
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 79f4333ceb059049b3ee560167d6cbaec493695f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:47 2009 -0500
+
+    8xxx: Move dma_init() call to common code
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:46 2009 -0500
+
+    fsl_dma: Move dma function prototypes to common header file
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:45 2009 -0500
+
+    8xxx: Rename dma_xfer() to dmacpy()
+
+    Also update dmacpy()'s argument order to match memcpy's and use
+    phys_addr_t/phy_size_t for address/size arguments
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:44 2009 -0500
+
+    fsl_dma: Fix Channel Start bug in dma_check()
+
+    The Channel Start (CS) bit in the Mode Register (MR) should actually be
+    cleared as the comment in the code suggests.  Previously, CS was being
+    set, not cleared.
+
+    Assuming normal operation of the DMA engine, this change shouldn't have
+    any real affect.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:43 2009 -0500
+
+    fsl_dma: Add support for arbitrarily large transfers
+
+    Support DMA transfers larger than the DMA controller's limit of
+    (2 ^ 26 - 1) bytes
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a730393a362741c318b21771b8d7b2647e546c3e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:42 2009 -0500
+
+    fsl_dma: Use proper I/O access functions
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9c06071a6077ba95e9d43226156e39567d5d064a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:41 2009 -0500
+
+    fsl_dma: Add bitfield definitions for common registers
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 017f11f68ef543e866be033bcb7b8058a8a380d8
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jun 30 17:15:40 2009 -0500
+
+    8xxx: Break out DMA code to a common file
+
+    DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
+    previous CONFIG_DDR_ECC
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6bbced671719518d0e28ff422623cd7ce396cbda
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Mon Jun 29 15:59:10 2009 +0100
+
+    Atmel LCD driver GUARDTIME fix
+
+    This patch allows the guard time parameter to be set in
+    the Atmel LCDC driver.
+
+    By default, the previous value of 1 is used, unless the
+    setting is defined elsewhere.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+
+commit 29c35182462feea09f322e51913759a53359a3e0
+Author: Roy Zang <tie-fei.zang@freescale.com>
+Date:  Tue Jun 30 13:56:23 2009 +0800
+
+    85xx: Add pci e1000 Ethernet support for P2020 board
+
+    Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 156984a3611c28093919d3e3c042f722b5548253
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Jun 18 08:39:42 2009 -0500
+
+    8xxx: Fix PCI bus address setup for 36-bit configs
+
+    We want the outbound PCI memory map to end at the 4G boundary so we
+    can maximize the amount of space available for inbound mappings if
+    we have large amounts of memory.
+
+    This matches the device tree setup in the kernel for the 36-bit physical
+    configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 480f61790565d77432b70b4016b73f2ae27d530f
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Jun 18 08:23:01 2009 -0500
+
+    86xx: Add CPU_TYPE_ENTRY support
+
+    Unify with 83xx and 85xx and use CPU_TYPE_ENTRY.  We are going to use
+    this to convey the # of cores and DDR width in the near future so its
+    good to keep in sync.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
+Author: Peter Meerwald <pmeerw@pmeerw.net>
+Date:  Mon Jun 29 15:48:33 2009 -0400
+
+    Blackfin: TWI/I2C: fix pure writes
+
+    If doing a pure write with register address and data (not a read/write
+    combo transfer), we don't set the initial transfer length properly which
+    ends up causing only the register address to be transferred.
+
+    While we're here, fix the i2c_write() parameter description of the buffer.
+
+    Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 5710de45808eb8f1cc34b51dc3e67e2422113249
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sat May 30 01:13:33 2009 +0530
+
+    spi: Add Marvell Kirkwood SPI driver
+
+    This patch adds a SPI driver for the Marvell Kirkwood SoC's.
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit 6bde171a4c4116cee179167cb65335a28f99932d
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Thu Jun 25 19:21:33 2009 +0900
+
+    s3c64xx: move the reset_cpu function
+
+    Because of the reset_cpu is soc specific, should be move to soc
+    And read reset value from SYS_ID register instead of hard code
+    this patch also supports s3c6410
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:37 2009 +0200
+
+    integrator: merge integratorap and integratorcp
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit 46937b27427688a56bf7f5944a92d962dc43c3fa
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:36 2009 +0200
+
+    integratorap/cp: use cfi driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:36 2009 +0200
+
+    integratorap/cp/versatile: remove non used functions
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit f54851a6e3844b7e01581b5a9681f294118b7529
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:36 2009 +0200
+
+    integratorcp: split timer support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:36 2009 +0200
+
+    integratorap: split timer support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 17 00:58:36 2009 +0200
+
+    integratorap: split pci support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Peter Pearse <peter.pearse@arm.com>
+
+commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Jun 8 04:12:50 2009 +0400
+
+    arm: add support for CONFIG_GENERIC_MMC
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 47d19da4d3f9ac4787abe9dee32406478424be52
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Jun 8 04:12:46 2009 +0400
+
+    serial_mx31: allow it to work with mx27 too and rename to serial_mxc
+
+    UART hardware on i.MX27 is the same as on the i.MX31 so we just
+    need to provide the driver with correct address of the registers.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Jun 8 04:12:45 2009 +0400
+
+    mx27: basic cpu support
+
+    This patch adds generic code to support Freescale's i.MX27 SoCs.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit dd2f6965a6c71f6f711ec98827880152e022c236
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Sat Jun 13 20:50:03 2009 +0200
+
+    i.MX31: Create a common device file.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit 958f7da7887fea4a2091ae60944d62c1708c2c55
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jun 13 20:50:02 2009 +0200
+
+    ARM: Add macros.h to be used in assembler file.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 40c642bc19b9fa2906e3172487a522fee456340b
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Sat Jun 13 20:50:01 2009 +0200
+
+    MX31: Add NAND SPL for i.MX31.
+
+    This patch adds the NAND SPL framework needed to boot i.MX31 boards
+    from NAND.
+
+    It has been tested on a i.MX31 PDK board with large page NAND. Small
+    page NANDs should work as well, but this has not been tested.
+
+    Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
+    whether this is compatible with a particular setup depends on how
+    the NAND device is programmed by the flash programmer (e.g. JTAG
+    debugger).
+
+    The patch is based on the work by Maxim Artamonov.
+
+    Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit df81238b3e27a791da996a9208402ac8f40b9862
+Author: Magnus Lilja <lilja.magnus@gmail.com>
+Date:  Sat Jun 13 20:50:00 2009 +0200
+
+    ARM1136: Introduce CONFIG_PRELOADER macro.
+
+    Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
+    in start.S. In preparation for adding support for NAND SPL
+    the macro CONFIG_PRELOADER is introducted and replaces the
+    CONFIG_ONENAND_IPL in start.S.
+
+    Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
+
+commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jun 13 12:50:04 2009 +0200
+
+    at91: unify nor boot support
+
+    the lowlevel init sequence is the same so unify it
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jun 13 12:48:36 2009 +0200
+
+    at91sam9263ek: add nor flash support
+
+    this will allow you to store use it for the env and to boot directly U-Boot from
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 329492329700812c6df275aa0fda09d609cd0fd4
+Author: Ilko Iliev <iliev@ronetix.at>
+Date:  Fri Jun 12 21:20:39 2009 +0200
+
+    at91: add support for the PM9261 board of Ronetix GmbH
+
+    The PM9261 board is based on the AT91SAM9261-EK board.
+
+    Here is the page on Ronetix website:
+    http://www.ronetix.at/starter_kit_9261.html
+
+    Signed-off-by: Ilko Iliev <iliev@ronetix.at>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 01550a2b650fbabc03334f9eadcc6083601a2414
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Jun 12 21:20:38 2009 +0200
+
+    pm9263: use macro instead of hardcode value for the lowlevel_init
+
+    optimize a few the RAM init
+
+    Signed-off-by: Ilko Iliev <iliev@ronetix.at>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7a11c7f9747240dc770954d320569596c0fbcb50
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Jun 12 21:20:37 2009 +0200
+
+    pm9263: lowlevel init update
+
+    move PSRAM init to pm9263.c
+    this will allow us after to make the nor lowlevel_init generic
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Jun 15 00:25:19 2009 -0400
+
+    Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
+
+    The way the ALL variable is used allows for config.mk's to add more
+    targets themselves without having to clutter up the top level Makefile.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 22:29:35 2009 -0400
+
+    Blackfin: fix SPI flash speed define name
+
+    The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
+    CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 22:26:31 2009 -0400
+
+    Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
+
+    Building the compression code in lib_generic/ with -O2 rather than -Os
+    gives a nice speed boost without too much code size increase.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 21:23:27 2009 -0400
+
+    Blackfin: bf548-ezkit: bump up monitor size
+
+    The latest version of U-Boot got a bit fatter in the BSS section which
+    caused overflows in the RAM region, so increase the monitor size.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
+Author: Vivi Li <vivi.li@analog.com>
+Date:  Fri Jun 12 10:53:22 2009 +0000
+
+    Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
+
+    The SPI flash layer is much stricter about sector usage than the eeprom
+    layer we used to use, so update the env settings to better match the
+    sector alignment of the flashes we use.
+
+    Signed-off-by: Vivi Li <vivi.li@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
+Author: Vivi Li <vivi.li@analog.com>
+Date:  Fri Jun 12 10:33:23 2009 +0000
+
+    Blackfin: bump up default JTAG console timeout
+
+    The debug tools that interface with the other side of the JTAG console
+    got much slower when generalizing things, so bump up the default timeout
+    value on the U-Boot side to cope.  Hopefully at some point we can improve
+    the debug tools to speed things back up.
+
+    Signed-off-by: Vivi Li <vivi.li@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c11ff779f4e0e0c7edc322e84dd229ad28709595
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Jun 1 19:08:33 2009 -0400
+
+    Blackfin: add jtagconsole helper script
+
+    This script is similar to the netconsole script, but instead works with
+    the JTAG console device driver that exists on Blackfin parts.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 60f61e6d7655400bb785a2ef637581679941f6d1
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Sat May 2 21:49:18 2009 +0200
+
+    Convert DM9000 driver for CONFIG_NET_MULTI
+
+    All drivers need to be converted to CONFIG_NET_MULTI.
+    This patch converts the dm9000 driver.
+
+    Signed-off-by: Thomas Smits <ts.smits@gmail.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9131589ada4dda0718604d0a425ca46e52775f6e
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sun Jun 14 22:33:46 2009 +0530
+
+    net: Add Marvell Kirkwood gigabit ethernet driver
+
+    This patch adds a egiga driver for the Marvell Kirkwood SoC's.
+
+    Contributors:
+    Yotam Admon <yotam@marvell.com>
+    Michael Blostein <michaelbl@marvell.com
+
+    Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
+    Acked-by: Stefan Rose <sr@denx.de>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 7835f4b94927ecb5affd99aad62592108db606ad
+Author: s-paulraj@ti.com <s-paulraj@ti.com>
+Date:  Tue May 12 11:45:34 2009 -0400
+
+    DaVinci Network Driver Updates
+
+    Different flavours of DaVinci SOC's have differences in their EMAC IP
+    This patch does the following
+    1) Updates base addresses for DM365
+    2) Updates MDIO frequencies for DM365 and DM646x
+    3) Update EMAC wrapper registers for DM365 and DM646x
+
+    Patch applies to u-boot-net git. the EMAC driver itself
+    will be updated shortly to add support for DM365 and DM646x
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 44578bea14e49035331a8f0e000e935e0d830ff4
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Tue May 26 08:29:29 2009 -0400
+
+    Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
+
+     From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
+    From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Date: Wed, 20 May 2009 18:26:01 -0400
+    Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
+Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
+Date:  Thu Jun 4 09:39:48 2009 +0200
+
+    A VLAN tagged DHCP request/discover is 4 bytes short
+
+    The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
+    If sending a VLAN tagged frame (when env variable vlan is set) this
+    should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
+
+    Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue Apr 28 16:39:19 2009 -0700
+
+    Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue May 26 00:34:07 2009 -0700
+
+    Switched davinci_emac Ethernet driver to use newer API
+
+    Added CONFIG_NET_MULTI to all Davinci boards
+    Removed all calls to Davinci network driver from board code
+    Added cpu_eth_init() to cpu/arm926ejs/cpu.c
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Mon Apr 27 23:19:10 2009 -0700
+
+    Initial cleanup of Davinci Ethernet driver
+
+     Removed pointless #ifdefs
+     Moved functions around in file in preparation for switch to newer API
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue May 26 00:17:59 2009 -0700
+
+    Moved Davinci Ethernet driver to drivers/net
+
+    This driver has been renamed davinci_emac.c
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Tue May 19 01:40:16 2009 +0530
+
+    Marvell MV88E61XX Switch Driver support
+
+    Chips supported:-
+    1. 88E6161 6 port gbe swtich with 5 integrated PHYs
+    2. 88E6165 6 port gbe swtich with 5 integrated PHYs
+    2. 88E6132 3 port gbe swtich with 2 integrated PHYs
+    Platform specific configuration supported for:-
+    default or router port vlan configuration
+    led_init configuration
+    mdip/n polarity reversal configuration
+
+    Note: This driver is supported and tested against
+    kirkwood egiga interface
+
+    Contributors:
+    Yotam Admon <yotam@marvell.com>
+    Michael Blostein <michaelbl@marvell.com
+
+    Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
+Author: Zach LeRoy <zleroy@xes-inc.com>
+Date:  Fri May 22 10:26:33 2009 -0500
+
+    tsec: Add support for BCM5482S PHY
+
+    Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
+    Acked-by: Kumar Gala <galak@kernel.crashing.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 06:29:07 2009 -0400
+
+    Blackfin: unify u-boot linker scripts
+
+    All the Blackfin linker scripts were duplicated across the board dirs with
+    no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
+    unify all of them in the lib_blackfin/ dir and for the few boards that
+    need to embedded the environment directly, add a LDS_BOARD_TEXT define for
+    them to customize via their board config file.  This is much simpler than
+    forcing them to duplicate the rest of the linker script.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri May 29 17:02:37 2009 -0400
+
+    Blackfin: bf518f-ezbrd: enable SST SPI flash driver
+
+    The BF51xF parts have an internal SST SPI flash, so make sure the driver is
+    enabled by default so we can access it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f348ab85f741dc98b2d202c04b5f430eace94925
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 24 17:22:40 2009 -0400
+
+    Blackfin: convert specific pre/post config headers to common method
+
+    The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
+    common Blackfin board defines.  The common method now is to use config.h,
+    so convert blackfin-config-post.h to that. Rename the still Blackfin
+    specific blackfin-config-pre.h to config-pre.h so the naming conventions
+    at least line up.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 24 17:11:47 2009 -0400
+
+    Blackfin: enable LZMA for all ADI boards
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Apr 13 05:52:45 2009 -0400
+
+    Blackfin: make default ADI env more flexible
+
+    Allow boards to easily override the root= and default bootcmd, allow
+    people to tweak the file used in default bootcmds at runtime via one env
+    var, and add a stock nandboot command.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0f52b560f19623ec651f9b9b40405d138ec251d3
+Author: Hoan Hoang <hnhoan@i-syst.com>
+Date:  Sun Jan 18 22:44:17 2009 -0500
+
+    Blackfin: ibf-dsp561: new board port
+
+    Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3088189a15d219c48fd7e71623ca4daa08b80b59
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 23:28:33 2008 -0400
+
+    Blackfin: blackstamp: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 23:22:25 2008 -0400
+
+    Blackfin: bf537-srv1: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 23:16:52 2008 -0400
+
+    Blackfin: bf537-minotaur: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 23:08:03 2008 -0400
+
+    Blackfin: bf537-pnav: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:55:45 2008 -0400
+
+    Blackfin: cm-bf527: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:54:07 2008 -0400
+
+    Blackfin: cm-bf548: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9417d9a21384279308abe5b4dd8dfd418742484c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:49:28 2008 -0400
+
+    Blackfin: tcm-bf537: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e548321af00e869af7194896576beb9b68457ff7
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:45:05 2008 -0400
+
+    Blackfin: cm-bf561: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:41:06 2008 -0400
+
+    Blackfin: cm-bf537e: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e82d8a1f028bedb12c4ab88a35a935010d92898c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:36:22 2008 -0400
+
+    Blackfin: cm-bf533: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Nov 27 16:50:32 2008 -0500
+
+    Blackfin: new spibootldr command
+
+    Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
+    so add a new 'spibootldr' command to take advantage of it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 67c2829b646bb5b859088b36fbc89e971b9c1960
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 04:42:33 2008 -0400
+
+    Blackfin: support embedding the environment into loader files (LDRs)
+
+    For the most part, the Blackfin processor boots files in the LDR format
+    rather than binary/ELF files.  So we want to export the environment as a
+    raw blob to the LDR utility so it can embed it at the right location.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 11:03:48 2009 -0400
+
+    add %.c->%.i and %.c->%.s rules
+
+    The Linux kernel has some helper rules which allow you to quickly produce
+    some of the intermediary files from C source.  Specifically, you can
+    create .i files which is the preprocessed output and you can create .s
+    files which is the assembler output.  This is useful when you are trying
+    to track down header/macro expansion errors or inline assembly errors.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 6d1ce387874c1060f27656f70151a52c511cd0e3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat May 30 01:02:03 2009 -0400
+
+    make sure toplevel $(SUBDIRS) is always declared
+
+    The $(SUBDIRS) variable is only declared when U-Boot has been configured,
+    but it gets used all the time.  In the non-configured case, it is used to
+    generate a helpful error message, but it needs to be set properly for that
+    to occur.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Fri Jun 12 11:33:55 2009 +0200
+
+    digsy mtc: Add description to GPIO initial configuration.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 12304871bc7839145f2b4238923e9023616d7399
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Fri Jun 12 11:33:54 2009 +0200
+
+    digsy MTC: Add 'mtc' command.
+
+    New command allows to:
+        o check FW version
+        o set LED status
+        o set digital output status
+        o get digital input status
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Fri Jun 12 11:33:53 2009 +0200
+
+    digsy MTC: Add SPI support.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Fri Jun 12 11:33:52 2009 +0200
+
+    mpc52xx: Add SPI driver.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 14 09:33:00 2009 -0400
+
+    allow boards to customize compiler options on a per-file/dir basis
+
+    With our Blackfin boards, we like to build the compression routines with
+    -O2 as our tests show a pretty good size/speed tradeoff.  For the rest of
+    U-Boot though, we want to stick with the default -Os as that is mostly
+    control code.  So in our case, we would add a line like so to the board
+    specific config.mk file:
+       CFLAGS_lib_generic += -O2
+
+    Now all files under lib_generic/ will have -O2 appended to their build.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 21:30:39 2009 +0200
+
+    Prepare v2009.06
+
+    Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c3147c1762f8caf99649051116a2411bdf887c10
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jun 14 20:31:36 2009 +0200
+
+    Revert "SMC911x driver fixed for NFS boot"
+
+    This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
+    which causes compile warnings ("large integer implicitly truncated
+    to unsigned type") on all systems that use this driver. The warning
+    results from passing long constants (TX_CFG, RX_CFG) into
+    smc911x_set_mac_csr() which is declared to accept "unsigned
+    character" arguments only.
+
+    Being close to a release, with nobody available to actually test the
+    code or the suggested fixes, it seems better to revert the patch.
+
+commit 388517e4b745b00256c2fa201ce7bccb67b4f245
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 10:26:37 2009 -0500
+
+    xes: Update Freescale clock code to work with 86xx processors
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 25623937bb81cae788d767e6c59a11c96fc82866
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 10:26:36 2009 -0500
+
+    xes: Update Freescale DDR code to work with 86xx processors
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit bef3013908bbc68f24084174a3ca86cc2a3eb986
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 10:26:35 2009 -0500
+
+    xes: Update Freescale PCI code to work with 86xx processors
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6442b71b522face775c1c31bd43121db3b4bf7d6
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 10:26:32 2009 -0500
+
+    85xx: Add PORBMSR and PORDEVSR shift defines
+
+    Add defines similar to those already used for the the 86xx architecture.
+    This will ease sharing of PCI code between the 85xx and 86xx
+    architectures.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Thu May 21 12:10:00 2009 -0500
+
+    fsl/85xx, 86xx: Sync up DMA code
+
+    The following changes were made to sync up the DMA code between the 85xx
+    and 86xx architectures which will make it easier to break out common
+    8xxx DMA code:
+
+    85xx:
+    - Don't set STRANSINT and SPCIORDER fields in SATR register.  These bits
+      only have an affect when the SBPATMU bit is set.
+    - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
+      status register. We may as well clear all 32 bits of the register...
+
+    86xx:
+    - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
+    - Add clearing of errors in the DMA status register when initializing
+      the controller
+    - Clear the channel start bit in the DMA mode register after a transfer
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b1f12650d332eadac1306a772cab6096abee6ddd
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Thu May 21 12:09:59 2009 -0500
+
+    fsl: Create common fsl_dma.h for 85xx and 86xx cpus
+
+    Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
+    reduce a large amount of code duplication
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:41 2009 -0400
+
+    85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
+
+    On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
+    UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
+    disable UEC6 and UEC8 by default.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit e8efef7c1b457442583a8b9d38d8a5b667661616
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Jun 4 16:12:42 2009 -0400
+
+    drivers/qe: add sgmii support in for UEC driver
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Jun 4 16:12:41 2009 -0400
+
+    qe: Pass in uec_info struct through uec_initialize
+
+    The uec driver contains code to hard code configuration information for the uec
+    ethernet controllers. This patch creates an array of uec_info structures, which
+    are then parsed by the corresponding driver instance to determine configuration.
+    It also creates function uec_standard_init() to initialize all UEC interfaces
+    for 83xx and 85xx.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9a6110897fc9282ade598bbba70ad72b940436e3
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Jun 4 16:12:40 2009 -0400
+
+    fsl: Update the number of ethxaddr in reading system eeprom
+
+    We support up to 8 mac addresses in system eeprom, so we define the macro
+    MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
+    according to mac_count.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f82107f637f167a77803c0933f9b24741a91c711
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:37 2009 -0400
+
+    85xx: Add RMII support for MPC8569MDS
+
+    This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
+    support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
+    enalbe_mpc8569mds_qe_uec which is  more accurate.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 750098d33bc362ac4263863e92da158cf011063f
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:36 2009 -0400
+
+    85xx: Add UEC3 and UEC4 support for MPC8569MDS
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:35 2009 -0400
+
+    drivers/qe: Add more SNUM number for QE
+
+    Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
+    1000 mode.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Acked-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7211fbfa18f3061858696150ee6e9e093d9eceae
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu May 21 15:34:14 2009 -0400
+
+    drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
+
+    Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
+    define MAX_QE_RISC for QE based silicons.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Acked-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:29 2009 -0400
+
+    85xx: Add QE clk support
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Acked-by: Timur Tabi <Timur@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 71b358cc26792889bbac35054d8e89d59b3fabc4
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed May 20 01:11:33 2009 -0500
+
+    85xx: Added MPC8535/E identifiers
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu May 21 08:36:43 2009 -0500
+
+    85xx: Always attempt ethernet device tree fixup
+
+    Its reasonable that we may have ethernet devices but dont have drivers
+    or support enabled for them in u-boot and want the device tree fixed up.
+    Unconditionally calling the ethernet fixup is fine since if we dont have
+    ethernet nodes that match (or aliases) we will not attempt to do
+    anything.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Timur Tabi <timur@freescale.com>
+
+commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu May 21 15:32:13 2009 -0400
+
+    drivers/qe: Rename the camel-case identifiers in uec
+
+    Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+
+commit feb7838f979ec2b581df3c791b9ae3284c36bb47
+Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
+Date:  Fri Apr 3 15:36:13 2009 -0500
+
+    85xx: Add P2020DS support
+
+    The patch adds support for P2020DS reference platform.
+    DDR3 interface uses hard-coded initialization rather than SPD
+    for now and was tested at 667Mhz. Some PIXIS register
+    definitions and associated code sections need to be fixed.
+    TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
+    tested under u-boot.
+
+    Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
+    Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 9 16:57:47 2009 +0200
+
+    mpc512x: MPC5121ADS: Add NAND support
+
+    This patch adds NAND support to the MPC5121ADS board. Please
+    note that the image size increased since NAND support didn't
+    fit in the current image size (256k).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Wolfgang Denk <wd@denx.de>
+
+commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 9 16:57:03 2009 +0200
+
+    nand/mpc512x: Add MPC512x NAND support (NFC)
+
+    This patch adds NAND Flash Controller driver for MPC5121 revision 2.
+    All device features, except hardware ECC and power management, are
+    supported.
+
+    This NFC driver replaces the one orignally posted by John Rigby:
+
+    "[PATCH] Freescale NFC NAND driver"
+
+    It's a port of the Linux driver version posted by Piotr Ziecik a few
+    weeks ago. Using this driver has the following advantages (from my
+    point of view):
+
+    - Compatibility with the Linux NAND driver (e.g. ECC usage)
+    - Better code quality in general
+    - Resulting U-Boot image is a bit smaller (approx. 3k)
+    - Better to sync with newer Linux driver versions
+
+    The only disadvantage I can see, is that HW-ECC is not supported right
+    now. But this could be added later (e.g. port from Linux driver after
+    it's supported there). Using HW-ECC on the MCP5121 NFC has a general
+    problem because of the ECC usage in the spare area. This collides with
+    JFFS2 for example.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Piotr Ziecik <kosmo@semihalf.com>
+    Cc: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+    Cc: Scott Wood <scottwood@freescale.com>
+
+commit e53b507cee5d976953134a565c72fd32c967d7dd
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 9 11:50:40 2009 +0200
+
+    mpc512x: Add esd gmbh mecp5123 board support
+
+    MECP5123 is a MPC5121E based module by esd gmbh.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 9 11:50:05 2009 +0200
+
+    mcp512x: Add macros for SCFR LPC divisor access
+
+    Thos macros will be used by the esd mecp5123 board.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jun 8 09:38:07 2009 +0200
+
+    mpc512x: Fix problem with I2C access before relocation
+
+    This is needed for the upcoming esd MECP5123 board port which uses
+    I2C EEPROM for environment storage.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+    Acked-by: Heiko Schocher<hs@denx.de>
+
+commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 13:35:39 2009 +0200
+
+    74xx_7xx: CPCI750: Add CPCI adapter/target support
+
+    The CPCI750 can be built as CPCI host or adapter/target board. This patch
+    adds support for runtime detection of those variants.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit ae7a2739d7a0704437376e229bb21940952c55be
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Jun 5 05:45:41 2009 +0200
+
+    74xx_7xx: CPCI750: Enable access to PCI function > 0
+
+    The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
+    patch enables access to those functions.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 13:35:37 2009 +0200
+
+    74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 13:35:36 2009 +0200
+
+    74xx_7xx: CPCI750: Add loadpci command
+
+    This command is used to load/boot an OS-image which is transferred from
+    the CPCI host to the CPCI target/adapter.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 13:35:35 2009 +0200
+
+    74xx_7xx: CPCI750: Add commandline editing/history
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
+
+commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jun 4 16:55:34 2009 +0200
+
+    UBI: Add compile-time check for correct malloc area configuration
+
+    UBI is quite memory greedy and requires at least approx. 512k of malloc
+    area. This patch adds a compile-time check, so that boards will not
+    build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Mon Apr 6 21:24:43 2009 +0530
+
+    sf: new Macronix MX25xx SPI flash driver
+
+    Added macronix SF driver for MTD framework
+    MX25L12805D is supported and tested
+    TBD: sector erase implementation, other deivces support
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
+Author: Todor I Mollov <tmollov@ucsd.edu>
+Date:  Sat Apr 4 07:14:44 2009 -0400
+
+    sf: atmel: implement power-of-two write/erase funcs
+
+    Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Mon May 25 17:23:18 2009 +0530
+
+    mpc85xx: 8536ds: Add USB related CONFIGs
+
+    This patch adds CONFIGs for enabling USB in mpc8536ds and also
+    adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
+    Copyright.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 6823e9b01290977c4d9c90381459c01f66e12e79
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Mon May 25 17:23:17 2009 +0530
+
+    mpc83xx: 8315erdb: Add USB related CONFIGs
+
+    This patch adds CONFIGs for enabling USB in mpc8315erdb and also
+    adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
+    Copyright.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Thu May 21 17:32:48 2009 +0530
+
+    mpc85xx: USB: Add support
+
+    The following patch adds 85xx-specific USB support and also
+    revamps Copyright in immap_85xx.h
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Mon May 25 17:23:16 2009 +0530
+
+    mpc83xx: USB: Reorganized its support
+
+    The following patch reorganizes/reworks the USB support for mpc83xx
+    as under:-
+
+      * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
+       cpu/mpx83xx/cpu_init.c
+
+      * Board specific usb_phy_type is read from the environment
+
+      * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
+
+      * Copyrights revamped in most of the following files
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Thu May 21 17:32:27 2009 +0530
+
+    mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
+
+    The following patch moves 8xxx-specifc USB #defines from
+    drivers/usb/host/ehci-fsl.h to include/usb.
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
+Author: Vivek Mahajan <vivek.mahajan@freescale.com>
+Date:  Thu May 21 17:32:15 2009 +0530
+
+    mpc8xxx: USB: Removed reenablement of its interface
+
+    To prepare for the 85xx USB support, which requires interface enablement
+    only once in (specified) order, no different than instructions for
+    enabling the interface under 83xx. It is unknown why the original author
+    enabled the interface twice (checked for references in errata, etc).
+
+    Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 2c7920afaf96d9779304202cd8a355b4f7576a83
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 17:23:25 2009 -0500
+
+    83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
+
+    Use the standard lowercase "x" capitalization that other Freescale
+    architectures use for CPU defines to prevent confusion and errors
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 0f898604945af4543c1525fc33b6bae621a3b805
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri May 22 17:23:24 2009 -0500
+
+    83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
+
+    Use the standard lowercase "xx" capitalization that other Freescale
+    architectures use for CPU defines to prevent confusion and errors
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit ba4feae90ca71de1681d5808f17e73224d8f03c4
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 2 16:53:16 2009 +0200
+
+    mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
+
+    This patch removes the duplicated code for baudrate generator configuration
+    in the PSC serial_init() implementation by calling serial_setbrg() instead
+    of duplicating the code.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b8c1d6a54ff8195488b68e163de8ec31f1603496
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Jun 2 16:53:15 2009 +0200
+
+    mpc512x: Fix PSC divisor calculation for baudrate setting
+
+    The wrong input frequency was used in serial_setbrg(). This patch fixes
+    this by using ips_clk as input frequency for the PSC baudrate generator.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 52568c3654b2b257016d52167805ae132faac14e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:46 2009 +0200
+
+    MPC512x: add support for ARIA board
+
+    ARIA is a MPC5121E based COM Express module by Dave/DENX.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:45 2009 +0200
+
+    MPC512x: remove include/mpc512x.h
+
+    Move needed definitions (register descriptions etc.) from
+    include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
+
+    Instead of using a #define'd register offset, use a function that
+    provides the PATA controller's base address.
+
+    All the rest of include/mpc512x.h are register offset definitions
+    which can be eliminated by proper use of C structures.
+
+    There are only a few register offsets remaining that are needed in
+    cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
+    which is intended as a temporary workaround only. In a later patch
+    this file will be removed, too, and then auto-generated from the
+    respective C structs.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit a927e491b2a326c1e9c4313e3ce4042988422697
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:44 2009 +0200
+
+    MPC512x FEC: get rid of duplicated struct ethernet_regs
+
+    Use existing struct fec512x instead.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:43 2009 +0200
+
+    MPC512x: use I/O accessors instead of pointer accesses
+
+    This commit changes the MPC512x code to use I/O accessor calls (i.e.
+    out_*() and in_*()) instead of using deprecated pointer accesses.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit 19dc7e179268be148e550c36203208c662610d76
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:42 2009 +0200
+
+    MPC512x: add more hardware description to immap_512x.h
+
+    - add GPIO module description
+    - add Address Latch Timing Register description
+    - add IO Control Memory Map
+    - add FEC Memory Map
+
+    Also change board/freescale/mpc5121ads/mpc5121ads.c and
+    cpu/mpc512x/iopin.c as needed.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:41 2009 +0200
+
+    Rename ads5121 board into mpc5121ads
+
+    We rename the board so we use a consistent name in U-Boot and in
+    Linux.  Also, we use this opportunity to move the board into the
+    Freecale vendor directory.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit debf87415579c0f50aab9e0832976d4506babe0f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:40 2009 +0200
+
+    cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit 8b251263191ec554967dd1add6237c1ba7f7eb25
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:39 2009 +0200
+
+    cpu/mpc512x/pci.c: minor coding style cleanup
+
+    Get rid of variable declaration in the middle of the code.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:38 2009 +0200
+
+    mpc512x: Move common files to share them by several boards
+
+    We will soon see several new MPC521x based boards added.  This patch
+    moves files that are not board specific to a common directory so they
+    can be shared by all such ports.  It also splits off common IDE code
+    into a new file, cpu/mpc512x/ide.c .
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit 03e069dc0a765d506f78a68319acf33d432e035b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat May 16 10:47:37 2009 +0200
+
+    mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun May 24 17:06:54 2009 +0200
+
+    General help message cleanup
+
+    Many of the help messages were not really helpful; for example, many
+    commands that take no arguments would not print a correct synopsis
+    line, but "No additional help available." which is not exactly wrong,
+    but not helpful either.
+
+    Commit ``Make "usage" messages more helpful.'' changed this
+    partially. But it also became clear that lots of "Usage" and "Help"
+    messages (fields "usage" and "help" in struct cmd_tbl_s respective)
+    were actually redundant.
+
+    This patch cleans this up - for example:
+
+    Before:
+       => help dtt
+       dtt - Digital Thermometer and Thermostat
+
+       Usage:
+       dtt         - Read temperature from digital thermometer and thermostat.
+
+    After:
+       => help dtt
+       dtt - Read temperature from Digital Thermometer and Thermostat
+
+       Usage:
+       dtt
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 94796d8544d4248028141bad11c6a74b840e9d6e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun May 24 19:17:29 2009 +0200
+
+    Make "usage" messages more helpful.
+
+    In case of incorrect command invocations U-Boot used to print pretty
+    useless "usage" messages, for example:
+
+       => nand markbad
+       Usage:
+       nand - NAND sub-system
+
+    In the result, the user would have to run the "help" command to get
+    the (available) information about correct command usage. Change this,
+    so that this information gets always printed.
+
+    Note that this changes the user interface of all commands, but
+    hopefully to the better.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun May 24 02:26:19 2009 -0400
+
+    nvedit: speed up printing of environment
+
+    The printing code would check the same environment byte multiple times and
+    write to the console one byte at a time.  For some devices (such as the
+    Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
+    damned slow.  So create a small 16 byte buffer to fill up and send to puts
+    as needed. In the process, unify the different print functions, shrink
+    the resulting code (source and compiled), and avoid excess env reads as
+    those too can be somewhat expensive depending on the board.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3112030a430553768de5d30c05bedf8710784452
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 22 19:28:52 2009 +0200
+
+    config.mk: remove un-needed REMOTE_BUILD check
+
+    as $(obj) is empty when in tree build
+
+    %.s:       %.S
+       $(CPP) $(AFLAGS) -o $@ $<
+
+    and
+
+    $(obj)%.s: %.S
+       $(CPP) $(AFLAGS) -o $@ $<
+
+    are the same
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 651351fe980b20217b014b9a888398f18d77951c
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Wed May 20 07:55:41 2009 -0500
+
+    FAT replace compare_sign with strncmp.
+
+    The static function compare_sign is only used to compare the fs_type string
+    and does not do anything more than what strncmp does.
+
+    The addition of the trailing '\0' to fs_type, while legal, is not needed
+    because the it is never printed out and strncmp does not depend on NULL
+    terminated strings.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit ecb1dc892297d5d99876907328fed732feefeab2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed May 20 04:35:14 2009 -0400
+
+    Add support for Linux-like kallsysms
+
+    The kernel stores address<->symbol names in it so things can be decoded at
+    runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 36c9169aa6f79ddf604a3bca64e145654f94888b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun May 17 16:01:54 2009 +0200
+
+    cmd_mtdparts.c: allow to omit definitions for default settings
+
+    There is actually no good reason to enforce that all board
+    configuations must define default settings for "mtdids" and
+    "mtdparts".  Actually this may be difficult to handle, especially on
+    boards where different sizes of flash chips can be fit, so there is no
+    real "default" partition map for all boards.
+
+    Lift this arbitrary limitation.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 864aa034f3a0e10ce710e8bbda171df3cab59414
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue May 12 14:31:56 2009 +0200
+
+    cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
+
+    This patch removes all references to the direct CFI FLASH interface
+    (via flash_info[]). Now that all FLASH types currently handled in
+    mtdparts are available (if selected, see below) via the MTD infrastructure.
+    This is NOR, NAND and OneNAND right now. This can be achieved by defining
+    the following options:
+
+    CONFIG_MTD_DEVICE (for all FLASH types)
+
+    plus
+
+    CONFIG_FLASH_CFI_MTD (for NOR FLASH)
+
+    So we need to add those defines to the board config headers currently
+    using the mtdparts commands. This is done via another patch, so
+    we shouldn't break mtdparts compatibility.
+
+    One big advantage from this solution is that the cmd_mtdparts.c is
+    *much* cleaner now. Lot's of #ifdef's are removed and the code itself
+    is smaller. Additionally the newly added MDT concatenation feature
+    can new be used via the mtdparts infrastructure and therefor via
+    UBI etc.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Ladislav Michl <ladis@linux-mips.org>
+    Cc: Scott Wood <scottwood@freescale.com>
+
+commit d558107c18708050f05b6639b2192efb67c905dc
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue May 12 14:31:18 2009 +0200
+
+    mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
+
+    This new define enables mtdcore.c compilation and with this we can
+    select the MTD device infrastructure needed for the reworked mtdparts
+    command.
+
+    We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
+    CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
+    for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Scott Wood <scottwood@freescale.com>
+
+commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue May 12 14:32:58 2009 +0200
+
+    mtd: MTD related config header changes (mtdparts command)
+
+    By changing the cmd_mtdparts to only use the MTD infrastructure and
+    not the direct interface to the CFI NOR FLASH driver we now need
+    to add the MTD infrastructure to all boards using those mtdparts
+    commands. This patch adds those components:
+
+    CONFIG_MTD_DEVICE (for all FLASH types)
+
+    plus
+
+    CONFIG_FLASH_CFI_MTD (for NOR FLASH)
+
+    To all board maintainers: Please test this on your platforms and
+    report any problems/issues found. Thanks.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Wolfgang Denk <wd@denx.de>
+    Cc: Ron Madrid <info@sheldoninst.com>
+    Cc: Georg Schardt <schardt@team-ctech.de>
+    Cc: Michal Simek <monstr@monstr.eu>
+    Cc: Ladislav Michl <ladis@linux-mips.org>
+    Cc: Martin Krause <martin.krause@tqs.de>
+    Cc: Gary Jennejohn <garyj@denx.de>
+    Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
+
+commit 8d2effea23e938631126a7888008a0637e13b389
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon May 11 16:03:55 2009 +0200
+
+    mtd: Update MTD infrastructure to support 64bit device size
+
+    This patch brings the U-Boot MTD infrastructure in sync with the current
+    Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
+    support and a resync of the mtdpart.c file which has seen multiple fixes
+    meanwhile.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Scott Wood <scottwood@freescale.com>
+    Cc: Kyungmin Park <kmpark@infradead.org>
+
+commit 0a57265533c412adf6024f4b4955141f4346b2b9
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue May 12 14:29:39 2009 +0200
+
+    mtd: Add MTD concat support to concatenate multiple MTD NOR devices
+
+    This patch adds concatenation support to the U-Boot MTD infrastructure.
+    By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
+    all found NOR devices into one single MTD device. This can be used by
+    e.g by UBI to access a partition that spans over multiple NOR chips.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Apr 25 14:57:52 2009 +0200
+
+    make MODEM SUPPORT generic instead of duplicate it
+
+    and fix comment
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+    Adjusted Copyright message.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a30f519bd0cde78ba46b424314de94fdab863726
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Tue Jun 2 20:53:56 2009 -0500
+
+    ZOOM2 detect the version of the zoom2 board at runtime.
+
+    There are currently 3 versions of the zoom2 board.
+    The production board, that is currently being released.
+    The beta board, similar in form to the production board but not released.
+    The alpha board, a set of PCBs with a very limited circulation.
+
+    GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
+    the board is a production board, otherwise it is a beta board.
+
+    The alpha board will likely be mistaken for a beta board.  An alpha board
+    was unavailible for testing.
+
+    This has been tested on the beta and production boards.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 718763c4745fd3d987a5576d2a67325e9444f9d4
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Wed Jun 3 01:53:57 2009 -0500
+
+    Beagle Convert the board version detection to use the OMAP3 GPIO interface.
+
+    There is no new functionality in the change.
+
+    This change is a conversion from the using raw register access to using
+    the OMAP3 GPIO API described in doc/README.omap3.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Wed Jun 3 01:53:55 2009 -0500
+
+    Fix a typo in the instructions on using omap3's gpio interface.
+
+    Using the example for reading a gpio, shows the problem.
+    NULL should be the gpio number.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 0c9520efd651ce13451654a35307ec87d4a13a69
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 29 18:57:32 2009 -0500
+
+    ZOOM2 Define GPIO banks used.
+
+    Enable the function and interface clocks for banks 2,3,5 and 6.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 29 18:57:31 2009 -0500
+
+    OMAP3 Turn on the GPIO bank clocks
+
+    The function and interface clocks for each GPIO bank, except the first, must
+    be explicitly turned on.  These are controlled by the config level defines
+    CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Acked-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 59272620c24549b5bcd03c94ba12ec302c1476a2
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Thu Mar 26 15:26:01 2009 -0400
+
+    Coldfire M5271: Activate u-boot system timer interrupt.
+
+    This patch assigns the u-boot system timer interrupt to
+    interrupt level 3, priority 6. Without this patch the interrupt
+    will be a level 0, priority 0, which disables it and cause
+    u-boot functions that relies on the timer (e.g. sleep command)
+    to never return.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit dc26965ad3acdfb18780361d77a276b2843a90af
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Mon Mar 23 13:35:48 2009 -0400
+
+    Compier warning cleanup
+
+    Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
+
+    Cleanup on compiler warnings on unused variables now that
+    bd->bi_enetaddr is no longer used.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit 42a83765d54f042b4079e05a3438789542429981
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Mar 20 15:30:10 2009 -0400
+
+    Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
+
+    Ported from lib_ppc/interrupts.c, this adds the ability for
+    the coldfire system timer to auto-reset the watchdog when
+    dtimer_interrupts is called.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
+Author: Prafulla Wadaskar <prafulla@marvell.com>
+Date:  Sun May 31 14:53:20 2009 +0200
+
+    arch_misc_init support for ARM architectures
+
+    This patch is required for Kirkwood support
+    may be used by other ARM architectures
+
+    Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
+
+commit b2403589b4d9996394bafc73eca3623f43ac2c31
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 31 14:53:18 2009 +0200
+
+    at91: move cpu info print to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b32e189079fa16e1b647ac6b949fd4e0a9435343
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 31 12:44:46 2009 +0200
+
+    at91: move cpu name define to arm/arch/ cpu header
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 5bb59b3c906ee01adfaac9565443e5236a793079
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 31 12:44:45 2009 +0200
+
+    at91: extract reset from timer
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 31 12:44:43 2009 +0200
+
+    omap24xx: rename reset file
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun May 31 12:44:42 2009 +0200
+
+    OMAP3: Fix CKE1 MUX setting to allow self-refresh
+
+    The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
+    setting is needed for the second CS clock signal to allow the 2 RAM
+    parts to be put in self-refresh correctly. This also works on rev B
+    Beagle boards with 128M of RAM.
+
+    From: Steve Sakoman <steve@sakoman.com>
+    From: Jean Pihet <jpihet@mvista.com>
+    Signed-off-by: Jean Pihet <jpihet@mvista.com>
+    Signed-off-by: Steve Sakoman <steve@sakoman.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun May 31 12:44:41 2009 +0200
+
+    OMAP3: Zoom2: Enable Board and CPU info
+
+    With other OMAP3 boards we recently switched to CPU and Board
+    info API. From parallel merge, this is missing for Zoom2.
+    Enable it for Zoom2, too.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Acked-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun May 31 12:44:39 2009 +0200
+
+    ZOOM2 Add led support.
+
+    This patch controls the large LED on the top left of the zoom2.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Sun May 31 12:44:37 2009 +0200
+
+    ZOOM2 Add serial support.
+
+    Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
+    The default serial is from the USB connector on left side of the debug board.
+    The USB connector will produce 2 of the 4 UARTS.  On your host pick the first
+    enumeration.
+
+    The details of the setting of the serial gpmc setup are not available.
+    The values were provided by another party.
+
+    The serial port set up is the same with Zoom1.
+    Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
+
+    The kernel bootargs are
+    console=ttyS3,115200n8
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 3ea201b016ab259a5ac8824af767569522768c47
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun May 31 12:44:27 2009 +0200
+
+    lh7a40x: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 379be585eb2343d8814a5cee5fb3da930d846bee
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 22:48:46 2009 +0200
+
+    pxa: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 9 13:21:19 2009 +0200
+
+    arm: remove cpu_init
+
+    move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit c358d9c3f16571e8f825e81b75eaf32e228cb669
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 9 13:21:18 2009 +0200
+
+    arm: unify interrupt init
+
+    all arm init the IRQ stack the same way
+    so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 10a451cd57cffbca875c97bbd8929059c5627ec6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 8 20:24:12 2009 +0200
+
+    arm: unify linker script
+
+    all arm boards except a few use the same cpu linker script
+    so move it to cpu/$(CPU)
+
+    that could be overwrite in following order
+    SOC
+    BOARD
+    via the corresponding config.mk
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat May 16 10:02:05 2009 +0200
+
+    afeb9260: fix macb device init
+
+    uses PA10, PA11 for ETX2 and ETX3.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed May 27 10:34:32 2009 +0200
+
+    ppc4xx: Remove PCI async bootup message if PCI is not used
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit a3455c00510c5abf1e91743c4a02d8393b6df18d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 09:19:52 2009 +0200
+
+    TQM834x: use buffered writes to accelerate writing to flash
+
+    Also enable display of 'E'mpty sectors in "flinfo" output.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu May 14 23:18:34 2009 +0200
+
+    TQM834x: add FDT support
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu May 14 23:18:33 2009 +0200
+
+    TQM834x: fix environment size; add redundant env.
+
+    Also reserve more space for U-Boot as it will probably grow soon.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 2ae0f35fd60c7345446835b95a4daff356e1f031
+Author: Thomas Lange <thomas@corelatus.se>
+Date:  Sun May 3 20:07:33 2009 +0200
+
+    ARM DaVinci: Reset with watchdog enabled
+
+    Once the Davinci watchdog has been enabled, the timeout
+    value cannot be changed. If the timeout in use is long,
+    it can take a long time for card to reset. By writing
+    an invalid service key, we can trigger an immediate reset.
+
+    Signed-off-by: Thomas Lange <thomas@corelatus.se>
+
+commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 10:07:43 2009 +0200
+
+    video: Add an option to skip video initialization
+
+    This patch adds an option to skip the video initialization on for all
+    video drivers. This is needed for the CPCI750 which can be built as
+    CPCI host and adapter/target board. And the adapter board can't
+    access the video cards located on the CompactPCI bus.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Anatolij Gustschin <agust@denx.de>
+
+    Rebased against simplifying patch.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 10:07:42 2009 +0200
+
+    drv_video_init(): simplify logic
+
+    Simplify nesting of drv_video_init() and use a consistent way of
+    indicating failure / success. Before, it took me some time to realize
+    which of the returns was due to an error condition and which of them
+    indicated success.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Anatolij Gustschin <agust@denx.de>
+
+commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed May 13 21:01:13 2009 +0200
+
+    at91: regroup IP hw init in one file per soc
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 28b00324becf3552134ae1e086509dc9c3d6e932
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:48:37 2009 +0200
+
+    dm355 evm support
+
+    Initial U-Boot support for the DaVinci DM355 EVM.  This is a board
+    from Spectrum Digital.  Board docs include schematic and firmware
+    for its microcontroller:
+
+      http://c6000.spectrumdigital.com/evmdm355/revd/
+
+    Most of the DM355 chip is fully documented by TI, the most notable
+    exception being the MPEG/JPEG coprocessor (programmable using codecs
+    available at no cost from TI), which is omitted from its DM335 sibling:
+
+      http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
+
+    This version can boot from the on-board DM9000 Ethernet chip, after
+    being loaded (from NAND, MMC/SD, or UART). In the near future, NAND
+    and USB support could be added ... NAND support is being held back
+    until the support for the 4-bit ECC hardware is ready.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Fri May 15 23:48:37 2009 +0200
+
+    OMAP3EVM: Set default bootfile
+
+    The current configuration doesn't define default
+    bootfile; leading to this warning at execution:
+
+    OMAP3_EVM # dhcp
+    ...
+    ...
+    DHCP client bound to address 192.168.1.11
+    *** Warning: no boot file name; using 'AC18BE16.img'
+    TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
+    sending through gateway 192.168.1.1
+    Filename 'AC18BE16.img'.
+    Load address: 0x82000000
+    Loading: *
+    TFTP error: 'File not found' (1)
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
+Author: s-paulraj@ti.com <s-paulraj@ti.com>
+Date:  Fri May 15 23:48:36 2009 +0200
+
+    ARM DaVinci: Minor Updates to base addresses
+
+    Patch adds base addresses for DaVinci DM365. Updated patches for DM365
+    will be posted soon.
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit de193e8e369f5f029ed3b6e2fc60341098eea766
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:48:36 2009 +0200
+
+    ZOOM2 Add support for debug board detection.
+
+    The logicpd web site is a good source for general information on this board.
+    Please start looking here if the below links are broken.
+    http://www.logicpd.com
+
+    This is a pdf of the product
+    http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
+
+    This is a pdf of the product quick start guide.
+    The debug board is described here.
+    http://support.logicpd.com/downloads/1165/
+
+    This is a wiki showing the debug board in use
+    https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
+
+    The zoom2 has an auxillary board that contains the serial, net, jtag and
+    battery simulator. This change supports a runtime check if the debug board is
+    connected.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:48:36 2009 +0200
+
+    OMAP3 Port kernel omap gpio interface.
+
+    Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
+    The orignal source is in linux/arch/arm/plat-omap/gpio.c
+
+    See doc/README.omap3 for instructions on use.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:48:36 2009 +0200
+
+    ZOOM2 Add initial support for Zoom2
+
+    Zoom2 is a new board from Texas Instruments and LogicPD
+
+    The logicpd web site is a good source for general information on this board.
+    Please start looking here if the below links are broken.
+    http://www.logicpd.com
+
+    This is a pdf of the product
+    http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
+    This is the product description web page
+    http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
+
+    This patch provides a zoom2 base target by copying zoom1 and by making some
+    obvious changes.
+
+    To configure, run
+    make omap3_zoom2_config
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
+Author: Sandeep Paulraj <s-paulraj@ti.com>
+Date:  Fri May 15 23:48:33 2009 +0200
+
+    ARM DaVinci:Consolidate common u-boot.lds
+
+    The u-boot.lds is common for all DaVinci boards. The patch removes
+    multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
+    folder. This addresses one of the comments i received while submitting
+    patches for DM3xx
+
+    Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
+
+commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:47:52 2009 +0200
+
+    OMAP Consolidate common u-boot.lds to cpu layer.
+
+    The u-boot.lds file is common for all omap boards.
+    Move a cleaned up version to the cpu layer and add makefile logic to use it.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:47:14 2009 +0200
+
+    arm/dcc: add xscale support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 66e8f9da6879fe37f3159b3997bff874842dc51d
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:47:14 2009 +0200
+
+    arm/dcc: use static support to allow to use it at anytime
+
+    the dcc can be used at the start of the cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:47:13 2009 +0200
+
+    ARM: Update mach-types
+
+    update against linux v2.6.29
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2907798926ee932f453ac8538e7a6c05c18428a5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:47:13 2009 +0200
+
+    arm920/926/926: remove non needed header
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 269dfea017b09c5a999d3053d00505c19789c350
+Author: David Brownell <david-b@pacbell.net>
+Date:  Fri May 15 23:47:13 2009 +0200
+
+    davinci dm6446evm NAND update
+
+    This updates the optional (non-default!) NAND support for the
+    DaVinci DM6446 EVM:
+
+     - include MTD partitioning, defaulting to what Linux uses
+
+     - use a flash-based BBT, which among other things speeds bootup
+
+    This matches code that's now queued for mainline Linux, and might
+    even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
+    that the U-Boot $mtdparts environment variable can be passed as-is
+    on the kernel command line as a cmdlinepart override.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:47:12 2009 +0200
+
+    davinci: display correct clock info
+
+    Move the clock-rate dumping code into the cpu/.../davinci area
+    where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
+    updating the format and showing the DSP clock (where relevant).
+
+    Switch boards to use the cpuinfo() hook for this stuff.
+
+    Remove a few now-obsolete PLL #defines.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit daea928829098cae3c9ec6b801e52ba616725034
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:47:12 2009 +0200
+
+    ZOOM1 Remove more legacy NAND defines.
+
+    These legacy NAND defines are no longer needed by this target.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:47:12 2009 +0200
+
+    LED Add documentation describing the status_led and colour led API.
+
+    This document describes the u-boot status LED API.
+    This allows common u-boot commands to use a board's leds to
+    provide status for activities like booting and downloading files.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri May 15 23:47:12 2009 +0200
+
+    ARM Add blue colour LED to status_led.
+
+    There is exiting support for red,yellow,green but no blue.
+    The main LED on the zoom2 is a blue LED.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:47:02 2009 +0200
+
+    arm: timer and interrupt init rework
+
+    actually the timer init use the interrupt_init as init callback
+    which make the interrupt and timer implementation difficult to follow
+
+    so now rename it as int timer_init(void) and use interrupt_init for interrupt
+
+    btw also remane the corresponding file to the functionnality implemented
+
+    as ixp arch implement two timer - one based on interrupt - so all the timer
+    related code is moved to timer.c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:22 2009 +0200
+
+    OMAP3: Reorganize Makefile style
+
+    Reformat COBJS handling.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit b1966982718347f67317b3fb356439743ca68a37
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:22 2009 +0200
+
+    OMAP3: Remove dublicated interrupt code
+
+    Remove duplicated interrupt code. Original, identical code can be found
+    in lib_arm/interrupts.c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:22 2009 +0200
+
+    at91rm9200: move reset code to reset.c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2c75c78d94574ee996db2aa9b511258519471dd6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:22 2009 +0200
+
+    ixp/interrupts: Move conditional compilation to Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:20 2009 +0200
+
+    arm: cleanup remaining CONFIG_INIT_CRITICAL
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 15 23:45:12 2009 +0200
+
+    arm946es: remove non used timer
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:44:09 2009 +0200
+
+    davinci: add basic dm355/dm350/dm335 support
+
+    Add some basic declarations for DaVinci DM355/DM350/DM335 support,
+    keyed on CONFIG_SOC_DM355. (DM35X isn't quite right because the
+    DM357 is very different; while the DM355 is like a DM355 without
+    the MPEG/JPEG coprocessor).
+
+    These have different peripherals than the DM6446, and some of
+    the peripherals are at different addresses.  Notably for U-Boot,
+    there's no EMAC, and the NAND controller address is different
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:44:09 2009 +0200
+
+    davinci: fix dm644x buglets
+
+    Fix two buglets in the dm644x support:  don't set two must-be-zero
+    bits in the UART management register; and only include the I2C hooks
+    if the I2C driver is being included.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit f79043681ff44bae435c06f830e51e1546db7e19
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:44:08 2009 +0200
+
+    davinci: split out some dm644x-specific bits from psc
+
+    Split out DaVinci DM6446-specific bits from more generic bits:
+
+     - Add a CONFIG_SOC_DM644X.  All current boards use DM6446 chips;
+       DM6443 and DM6441 chips differ in available peripherals.
+
+     - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
+       which is conditionally built.  It provides device-specific setup.
+
+    Plus minor coding style and comment updates with respect to the PSC.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:44:08 2009 +0200
+
+    davinci: cpu-specific build uses conditional make syntax
+
+    Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
+    Add the first conditional: for EMAC driver support.  Not all
+    chips have an EMAC; and boards might not use it, anyway.
+
+    This doesn't touch PHY configuration; that should eventually
+    become conditional too.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 7b7808ae6dace59287f565e9323cda7b098a5612
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Fri May 15 23:44:06 2009 +0200
+
+    davinci: move psc support board-->cpu
+
+    Move DaVinci PSC support from board/* to cpu/* where it belongs.
+    The PSC module manages clocks and resets for all DaVinci-family
+    SoCs, and isn't at all board-specific.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
+Author: David Brownell <david-b@pacbell.net>
+Date:  Tue Apr 14 08:52:58 2009 -0700
+
+    DaVinci now respects SKIP_LOWLEVEL_INIT
+
+    Don't needlessly include lowlevel init code; that's only really
+    needed with boot-from NOR (not boot-from-NAND).  The 2nd stage
+    loader (UBL) handles that before it loads U-Boot.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Sun Apr 12 22:49:26 2009 -0700
+
+    DaVinci Ethernet cleanup
+
+    Chips without the EMAC controller won't need the utilities
+    it uses to read an Ethernet address from EEPROM; so don't
+    include them needlessly.
+
+    Use is_valid_ether() to validate the address from EEPROM.
+    All-zero addresses aren't the only invalid addresses.
+    A fully erased EEPROM returns all-ones, also invalid...
+
+    Switch those Ethernet utilities to use "%pM" for printing
+    MAC addresses; and not say ROM when they mean EEPROM.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit c790b04d230363d03939dc008bcc80f3ba4de1ae
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon May 11 15:50:12 2009 +0200
+
+    lib_arch/board.c: Move malloc initialization before flash_init()
+
+    This patch moves the malloc initialization before calling flash_init().
+    Upcoming changes to the NOR FLASH common CFI driver with optional
+    MTD infrastructure and MTD concatenation support will call malloc().
+    And nothing really speaks against enabling malloc just a little earlier
+    in the boot stage. Some architectures already enable malloc before
+    calling flash_init() so they don't need any changes here.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Wolfgang Denk <wd@denx.de>
+    Cc: Mike Frysinger <vapier@gentoo.org>
+    Cc: Scott McNutt <smcnutt@psyent.com>
+    Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+    Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    Cc: Daniel Hellstrom <daniel@gaisler.com>
+    Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Cc: John Rigby <jcrigby@gmail.com>
+
+commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon May 11 13:46:14 2009 +0200
+
+    ppc4xx: Add Sequoia RAM-booting target
+
+    This patch adds another build target for the AMCC Sequoia PPC440EPx
+    eval board. This RAM-booting version is targeted for boards without
+    NOR FLASH (NAND booting) which need a possibility to initially
+    program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
+    configured to setup the SDRAM, this debugger can load this RAM-
+    booting image to the target address in SDRAM (in this case 0x1000000)
+    and start it there. Then U-Boot's standard NAND commands can be
+    used to program the NAND FLASH (e.g. "nand write ...").
+
+    Here the commands to load and start this image from the BDI2000:
+
+    440EPX>reset halt
+    440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
+    440EPX>go 0x1000000
+
+    Please note that this image automatically scans for an already
+    initialized SDRAM TLB (detected by EPN=0). This TLB will not be
+    cleared. This TLB doesn't need to be TLB #0, this RAM-booting
+    version will detect it and preserve it. So booting via BDI2000
+    will work and booting with a complete different TLB init via
+    U-Boot works as well.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed May 6 08:41:45 2009 -0400
+
+    tools/envcrc: add --binary option to export embedded env
+
+    The --binary option to envcrc can be used to export the embedded env as a
+    binary blob so that it can be manipulated/examined/whatever externally.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 18cc7afd9a153a66854af862d14ba01c5496cf07
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue Apr 28 16:50:53 2009 -0700
+
+    Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
+
+    All in-tree PPC4xx boards now use CONFIG_NET_MULTI
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 70be6c2d40076f14062b892152649f9a62832fc9
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:51:01 2009 +0200
+
+    4xx: Add support for DP405 hardware variants
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit de47a34d4de1d007a8951efd072283516d580ffa
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:51:00 2009 +0200
+
+    4xx: Remove binary cpld bitstream from DP405 board
+
+    This patch removes the cpld binary bitstream that is
+    used by esd's cpld command on DP405 boards.
+
+    Because u-boot with an external cpld bitstream may not
+    take more space in flash than before the u-boot binary is
+    shrinked a little bit. Some unused featues have been
+    removed therefore.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 700d553fd3afe804086de8f73d95153315eb0c32
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:50:59 2009 +0200
+
+    4xx: Remove binary cpld bitstream from VOM405 board
+
+    This patch removes the cpld binary bitstream that is
+    used by esd's cpld command on VOM405 boards.
+
+    Because u-boot with an external cpld bitstream may not
+    take more space in flash than before the u-boot binary is
+    shrinked a little bit.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 0bb10630364c48d9857cbf5353da609fc4dd6751
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:50:58 2009 +0200
+
+    4xx: Remove binary cpld bitstream from PMC405 board
+
+    This patch removes the cpld binary bitstream that is
+    used by esd's cpld command on PMC405 boards.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:50:57 2009 +0200
+
+    4xx: Remove binary cpld bitstream from CMS700 board
+
+    This patch removes the cpld binary bitstream that is
+    used by esd's cpld command on CMS700 boards.
+
+    Because u-boot with an external cpld bitstream may not
+    take more space in flash than before the u-boot binary is
+    shrinked a little bit. Some unused featues have been
+    removed therefore.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Wed Apr 29 09:50:56 2009 +0200
+
+    esd/common: extend cpld command with address parameter
+
+    This patch adds support for an address parameter to esd's
+    cpld command. This is in preparation to remove compiled-in
+    binary cpld (xsvf) bitstreams.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9166b776350d16460c7330bfb0a50154ea0a1903
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:06 2009 -0500
+
+    cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
+
+    When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
+    correct, eg:
+
+    => help i2c
+    i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
+    speed [speed] - show or set I2C bus speed
+    i2c dev [dev] - show or set current I2C bus
+    ...
+
+    It has been changed to:
+    i2c speed [speed] - show or set I2C bus speed
+    i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
+    i2c dev [dev] - show or set current I2C bus
+    ...
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:05 2009 -0500
+
+    cmd_i2c: Clean up trivial helper functions
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:04 2009 -0500
+
+    cmd_i2c: Clean up i2c command argument parsing
+
+    argc and argv should only be modified once instead of once for
+    every i2c sub-command
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 0f89c54be92773b23d66ac401ba6acb6144100c3
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:03 2009 -0500
+
+    i2c: Update references to individual i2c commands
+
+    The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
+    and isdram are no longer available so all references to them have been
+    updated to the new form of "i2c <cmd>".
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:02 2009 -0500
+
+    i2c: Remove deprecated individual i2c commands
+
+    The following individual I2C commands have been removed: imd, imm, inm,
+    imw, icrc32, iprobe, iloop, isdram.
+
+    The functionality of the individual commands is still available via
+    the 'i2c' command.
+
+    This change only has an impact on those boards which did not have
+    CONFIG_I2C_CMD_TREE defined.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 655b34a78adf60ef260981688837904208883ae9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:01 2009 -0500
+
+    i2c: Create common default i2c_[set|get]_bus_speed() functions
+
+    New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
+    replace a number of architecture-specific implementations.
+
+    Also, providing default functions will allow all boards to enable
+    CONFIG_I2C_CMD_TREE.  This was previously not possible since the
+    tree-form of the i2c command provides the ability to display and modify
+    the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
+    present.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Sat Apr 18 22:34:00 2009 -0500
+
+    cm5200: Make function test command names more unique
+
+    Add "_test" to cm5200's function test command names to prevent
+    overlap with common, global function names.  Originally, the
+    "do_i2c" function test command interfered with
+    common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
+
+    The functions were also made static as they are not globally accessed.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit f0722ee762e8dada9d7f74ac2745e043f83aae85
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:34:09 2009 -0500
+
+    tsi108_i2c: Add i2c_init() stub function
+
+    Add the i2c_init() function so that the tsi108_i2c.c driver fits
+    U-Boot's standard I2C API which is utilized by cmd_i2c.c
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:34:08 2009 -0500
+
+    mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
+
+    Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
+    it can use the common 'i2c speed' command. Note that the I2C controller
+    utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
+    dynamically.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:34:07 2009 -0500
+
+    Marvell: i2c cleanup
+
+    The following changes were made, primarily to bring the Marvell i2c
+    driver in line with U-Boot's current I2C API:
+    - Made i2c_init() globally accessible
+    - Made i2c_read() and i2c_write() return an integer
+    - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
+      offhand chance someone adds slave support in the future
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 54afc6ee10c8cd09598d814d49e601359b005e49
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:34:06 2009 -0500
+
+    cpci750: i2c cleanup
+
+    The following changes were made, primarily to bring the cpci750 i2c
+    driver in line with U-Boot's current I2C API:
+    - Made i2c_init() globally accessible
+    - Made i2c_read() and i2c_write() return an integer
+    - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
+      offhand chance someone adds slave support in the future
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:34:05 2009 -0500
+
+    i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
+
+    Many boards/controllers/drivers don't support an I2C slave interface,
+    however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
+    default
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Jun 11 23:42:35 2009 -0500
+
+    fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
+
+    The ddr code computes most things as 64-bit quantities and had some places
+    in the middle that it was using phy_addr_t and phys_size_t.
+
+    Instead we use unsigned long long through out and only at the last stage of
+    setting the LAWs and reporting the amount of memory to the board code do we
+    truncate down to what we can cover via phys_size_t.
+
+    This has the added benefit that the DDR controller itself is always setup
+    the same way regardless of how much memory we have.  Its only the LAW
+    setup that limits what is visible to the system.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit d4b130dc80761b430dc5b410159cd158fca1a348
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Jun 11 23:40:34 2009 -0500
+
+    85xx: Use print_size to report amount of memory not mapped by TLBs
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:42 2009 -0400
+
+    85xx: Add README for MPC8569MDS
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b2aab386e957ba684d4f2a466bfaa91770e5058a
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:33 2009 -0400
+
+    85xx: Add UART1 support for MPC8569MDS
+
+    MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
+    those pins before using UART1.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:32 2009 -0400
+
+    85xx: Add PIB support at CS4/CS5 for MPC8569MDS
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit fb27949059f1bc84381a6216a819090f0cdbaa70
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Jun 4 16:12:39 2009 -0400
+
+    85xx: Fix some settings for MPC8569MDS board
+
+    - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
+    malloc to support up to eight Ethernet interfaces.
+    - Move Environment address out of uboot thus the saved environment variables
+    will not be erased after u-boot is re-programmed.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Wed May 20 12:30:30 2009 -0400
+
+    85xx: Fix MURAM size for MPC8569
+
+    MPC8569 has 128K bytes MURAM.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 22 20:23:51 2009 +0200
+
+    at91/cpu.c: add missing Copyright & GPL header
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit aa446a591aca46ef2b53cc6598ea8091feb45444
+Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+Date:  Sun Jun 7 21:45:16 2009 +0900
+
+    apollon: Fix a OBJCFLAGS typo
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jun 10 00:19:28 2009 +0200
+
+    Prepare 2009.06-rc3
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jun 10 00:15:11 2009 +0200
+
+    rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Thu Jun 4 19:44:12 2009 +0200
+
+    ubifs: fix small error path mismatch
+
+    In do_readpage(), don't free 'dn' if its allocation failed.
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+
+commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Jun 4 00:31:07 2009 +0200
+
+    EP88x: fix broken linker script
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
+
+commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 00:16:02 2009 +0200
+
+    TQM85xx: minor config file cleanup
+
+    Remove "saveenv" from "update" definition: the environment is outside
+    the U-Boot image on TQM85xx and therefor not affected by updates.
+
+    Also "beautify" code a bit (vertical alignment).
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c0296b1801fc9426d772fa75fe58458db605dfee
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 00:16:01 2009 +0200
+
+    TQM85xx: adapt for new flash types
+
+    Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
+    series while new boards have 'N' type Flashes from the S29GLxxxN
+    series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
+
+    We now change the configuration to the new flash types for all
+    boards; this also works on old boards - we just waste two flash
+    sectors for the environment which could be smaller there.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6735104924f06340071a6914a9ee3345607fc102
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Mon May 18 17:49:23 2009 +0800
+
+    85xx: Fix the wrong SYS_CLK_IN for 8569MDS
+
+    The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
+    The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
+    so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri May 15 10:27:44 2009 +0800
+
+    85xx: Fix the wrong BCSR address of 8569MDS
+
+    The BCSR17[7] = 1 will unlock the write protect of FLASH.
+    The WP# pin only controls the write protect of top/bottom sector,
+    That is why we can save env, but we can't write the first sector
+    before the patch.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
+Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
+Date:  Tue Jun 2 16:27:10 2009 -0500
+
+    85xx: bugfix for reading maximum TLB size on mpc85xx
+
+    The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
+    This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
+    (256 MB)
+    which made u-boot hang in board_init_f() when trying to create a new stack
+    in RAM.
+    I have an mpc8540 with one 1GB dimm.
+
+    Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+    Acked-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Mar 27 14:32:43 2009 +0800
+
+    85xx: Fix the clock adjust of mpc8569mds board
+
+    Currently the clk_adj is 6 (3/4 cycle), The settings will cause
+    the DDR controller hang at the data init. Change the clk_adj
+    from 6 to 4 (1/2 cycle), make the memory system stable.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit faa14babd7466dfade358f9cac128ae246b9bf1b
+Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
+Date:  Fri Jun 5 16:54:31 2009 +0200
+
+    at91: fix a USB problem for AT91SAM9261
+
+    This patch corrects the missing PLLB initialization in usb_cpu_init()
+    for AT91SAM9261.
+    Because of the missing PLLB initialization, the USB support for all
+    AT91SAM9261 based boards will work only if the PLLB is configured by a
+    precedent bootloader.
+
+    Signed-off-by: Ilko Iliev <iliev@ronetix.at>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
+Author: Felix Radensky <felix@embedded-sol.com>
+Date:  Sun May 31 20:44:15 2009 +0300
+
+    ppc4xx/net: Fix MDIO clock setup
+
+    This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
+    Current code assumes that the value of sysinfo.freqOPB is 100000000
+    when OPB frequency is 100MHz. In reality it is 100000001. As a result
+    MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
+    the standard. This in not a problem on boards equipped with Marvell PHYs
+    (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
+    but can be a problem for other PHYs (e.g. Realtek ones).
+
+    Signed-off-by: Felix Radensky <felix@embedded-sol.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit d65e34d12514de2bbe3b8f519761d641c081bad0
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 14:27:29 2009 +0900
+
+    rtl8169: fix PCI system memory address
+
+    When PCI device use system memory, some PCI host controller should be
+    set physical memory address.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
+Author: Manikandan Pillai <mani.pillai@ti.com>
+Date:  Wed Apr 8 09:14:35 2009 +0530
+
+    SMC911x driver fixed for NFS boot
+
+    eth_halt() function in the smc911x drivers used to call the
+    smc911x_reset() function. eth_halt() used to be called after
+    tftp transfers. This used to put the ethernet chip in reset
+    while the linux boots up resulting in the ethernet driver
+    not coming up. NFS boot used to fail as a result.
+
+    This patch calls smc911x_shutdown() instead of smc911x_reset().
+    Some comments received has also been fixed.
+
+    Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit e5a3bc2401a23f1890611f020f57f94824a534db
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Sun May 3 12:11:40 2009 +0200
+
+    Add config option for disabling DM9000-SROM support.
+
+    Some boards do not have SROM support for the DM9000 network adapter.
+    Instead of listing these board names in the driver code, make this
+    option configurable from the board config file.
+
+    It also removes a build warning for the at91sam9261ek board:
+    'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
+
+    And it repaires the trizepsiv board build which was broken around the
+    same routines
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Fri Jun 5 14:11:33 2009 -0500
+
+    mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
+
+    In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
+    impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
+    SICRH[TSIOB1] was erroneously being set high.
+
+    U-Boot always operated this PHY interface in GMII mode.  It is assumed this
+    was missed in the clean up by the original board porters, and copied along
+    to the TQM and sbc boards.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Acked-by: Ira Snyder <iws@ovro.caltech.edu>
+    Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
+    Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    CC: Dave Liu <DaveLiu@freescale.com>
+
+commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Wed Apr 8 13:23:37 2009 +0200
+
+    smc911x: write back the manually set MAC address
+
+    If the MAX address is given by the environment, write it back to the
+    hardware.
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+    Cc: Sascha Hauer <s.hauer@pengutronix.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 00:16:03 2009 +0200
+
+    Redundant Environment: protect full sector size
+
+    Several boards used different ways to specify the size of the
+    protected area when enabling flash write protection for the sectors
+    holding the environment variables: some used CONFIG_ENV_SIZE and
+    CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
+    a mix of both for the "normal" and the "redundant" areas.
+
+    Normally, this makes no difference at all. However, things are
+    different when you have to deal with boards that can come with
+    different types of flash chips, which may have different sector
+    sizes.
+
+    Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
+    biggest sector size, which may include several sectors on boards using
+    the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
+    or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
+    case that only the first of these sectors get protected, while the
+    following ones aren't.
+
+    This is no real problem, but it can be confusing for the user -
+    especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
+    "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
+    "redundant" area.
+
+    To avoid such inconsistencies, I changed all sucn boards that I found
+    to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
+    not cause any functional changes to the code.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Paul Ruhland
+    Cc: Pantelis Antoniou <panto@intracom.gr>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Gary Jennejohn <garyj@denx.de>
+    Cc: Dave Ellis <DGE@sixnetio.com>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Thu May 14 14:03:09 2009 +0400
+
+    mmc: it's safe to ignore mmc_send_if_cond() return value
+
+    Return value of mmc_send_if_cond() can be safely ignored (as it is
+    done in Linux). This makes older cards work with MXC MCI controller.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon May 11 15:54:13 2009 +0200
+
+    cfi_mtd: Fix bug in last sector detection
+
+    This patch now enabled this cfi-mtd wrapper to correctly detect and
+    erase the last sector in an NOR FLASH device.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
+Author: Yauhen Kharuzhy <jekhor@gmail.com>
+Date:  Thu May 7 00:43:30 2009 +0300
+
+    mmc: Fix decoding of SCR & function switch data on little-endian machines
+
+    SCR & switch data are read from card as big-endian words and should be
+    converted to CPU byte order.
+
+    Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
+Author: Yauhen Kharuzhy <jekhor@gmail.com>
+Date:  Thu May 7 13:08:53 2009 +0300
+
+    mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
+
+    Cards which are not compatible with SD 2.0 standard, may return response
+    for CMD8 command, but it will be invalid in terms of SD 2.0. We should
+    accept this case as admissible, just like Linux does.
+
+    Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 998be3dd59ed0af4bec38324047fecfa88ac45db
+Author: Rabin Vincent <rabin@rab.in>
+Date:  Sun Apr 5 13:30:56 2009 +0530
+
+    mmc: drop unnecessary casts
+
+    Now that response is a uint, we can drop all the casts.
+
+    Signed-off-by: Rabin Vincent <rabin@rab.in>
+
+commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
+Author: Rabin Vincent <rabin@rab.in>
+Date:  Sun Apr 5 13:30:55 2009 +0530
+
+    mmc: fix response decoding on little endian
+
+    The mmc code defines the response as an array of chars.  However, it
+    access the response bytes both as (i) an array of four uints (with
+    casts) and (ii) as individual chars.  The former case is used more
+    often, including by the driver when it assigns the response.
+
+    The char-wise accesses are broken on little endian systems because they
+    assume that the bytes in the uints are in big endian byte order.
+
+    This patch fixes this by changing the response to be an array of four
+    uints and replacing the char-wise accesses with equivalent uint-wise
+    accesses.
+
+    Signed-off-by: Rabin Vincent <rabin@rab.in>
+
+commit 9b1f942c09dd942e6de3185caa81c111b14de567
+Author: Rabin Vincent <rabin@rab.in>
+Date:  Sun Apr 5 13:30:54 2009 +0530
+
+    mmc: use lldiv to fix arm eabi build
+
+    The generic MMC core uses direct long long divisions, which do not build
+    with ARM EABI toolchains.  Use lldiv() instead, which works everywhere.
+
+    Signed-off-by: Rabin Vincent <rabin@rab.in>
+
+commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
+Author: Rabin Vincent <rabin@rab.in>
+Date:  Sun Apr 5 13:30:53 2009 +0530
+
+    mmc: check find_mmc_device return value
+
+    find_mmc_device returns NULL if an invalid device number is specified.
+    Check for this to avoid dereferencing NULL pointers.
+
+    Signed-off-by: Rabin Vincent <rabin@rab.in>
+
+commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
+Author: Rabin Vincent <rabin@rab.in>
+Date:  Sun Apr 5 13:30:52 2009 +0530
+
+    mmc: clean up help texts
+
+    Remove some repeated words and superfluous newlines in the mmc command
+    help entries.
+
+    Signed-off-by: Rabin Vincent <rabin@rab.in>
+
+commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri May 29 17:01:48 2009 -0400
+
+    Blackfin: spi: fix pin handling of SPI0 SSEL4
+
+    CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
+    peripheral in order to work.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2157359dad2533987f5eb0181ef543693fad6a33
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue May 26 02:51:57 2009 -0400
+
+    Blackfin: fix if() logic in bootrom evt1 check
+
+    A missing set of parenthesis caused the silicon revision to apply only to
+    the BF533 and not the BF531/BF532 variants.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
+Author: Stefan Roese <sr@denx.de>
+Date:  Sat May 16 12:04:22 2009 +0200
+
+    jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
+
+    Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
+    mtdparts_init() is available in both files, cmd_mtdparts.c and
+    cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
+    the jffs2/mtdparts command/file split those 2 different versions
+    already existed. So this is nothing new. The main problem is that the
+    variables "current_dev" and "current_partnum" are declared in both
+    files now. This doesn't work.
+
+    This patch now changes the names of those variable to more specific
+    names: "current_mtd_dev" and "current_mtd_partnum". This is because
+    this patch also changes the declaration from static to global, so
+    that they can be used from both files.
+
+    Please note that my first tests were not successful. The MTD devices
+    selected via mtdparts are now accessed but I'm failing to see the
+    directory listed via the "ls" command. Nothing is displayed. Perhaps
+    I didn't generate the JFFS2 image correctly (I never used JFFS2 in
+    U-Boot before). Not sure. Perhaps somebody else could take a look at
+    this as well. I'll continue looking into this on Monday.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Cc: Wolfgang Denk <wd@denx.de>
+    Cc: Detlev Zundel <dzu@denx.de>
+    Cc: Ilya Yanok <yanok@emcraft.com>
+    Cc: Renaud barbier <renaud.barbier@ge.com>
+
+commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
+Author: Graf Yang <graf.yang@analog.com>
+Date:  Sun May 24 02:34:34 2009 -0400
+
+    Blackfin: bf518f-ezbrd: setup portmux for async flash
+
+    The pins for async memory where parallel flash lives are not enabled by
+    default, so make sure we mux them as needed.
+
+    Signed-off-by: Graf Yang <graf.yang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f40f6db278f602b55820693634a7256b0b4e4b80
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed May 20 10:58:03 2009 +0200
+
+    nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
+
+    This patch enables Smart Media (SMC) ECC byte ordering which is used
+    on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
+    incompatible ECC byte ordering to the Linux kernel NDFC driver.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+
+commit 399aab7748bef053d59612211e1bd7a3fabfce18
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed May 20 10:58:02 2009 +0200
+
+    ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
+
+    This patch now uses the correct ECC byte order (Smart Media - SMC)
+    to be used on the 4xx NAND FLASH driver. Without this patch we have
+    incompatible ECC byte ordering to the Linux kernel NDFC driver.
+
+    Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
+    drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
+    a seperate patch.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+
+commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed May 20 10:58:01 2009 +0200
+
+    ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
+
+    This patch moves the definition for the PPC4xx NAND FLASH controller
+    (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
+    upcoming fix for the ECC byte ordering of the NDFC driver.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+
+commit 2df72b82bc9e17b88dc82735a067749220beb025
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Tue May 19 12:53:36 2009 -0500
+
+    common: fix inline--weak error spotted by gcc 4.4
+
+    cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
+
+    removing the inline attribute fixes it.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Tue May 19 12:53:32 2009 -0500
+
+    TQM834x: remove defines causing gcc4.4 warnings
+
+    Configuring for TQM834x board...
+    cpu_init.c: In function 'cpu_init_f':
+    cpu_init.c:262: warning: array subscript is above array bounds
+    cpu_init.c:263: warning: array subscript is above array bounds
+    cpu_init.c:270: warning: array subscript is above array bounds
+    ...
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 0850301747228a3327f2815a85284d26ade3de95
+Author: Andreas Huber <andreas.huber@keymile.com>
+Date:  Tue May 19 11:06:30 2009 +0200
+
+    UBI: fix return code in ubi_volume_read
+
+    Return -ENODEV instead of 0 when trying to read from a non existing volume.
+
+    Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
+Author: Graf Yang <graf.yang@analog.com>
+Date:  Tue May 19 04:40:08 2009 -0400
+
+    Blackfin: fix timer_init()/timer_reset()
+
+    The timer_init() function was not using the right csync instruction, nor
+    was it doing it right after disabling the core timer.
+
+    The timer_reset() function would reset the timestamp, but not the actual
+    timer, so there was a common edge case where get_timer() return a jump of
+    one timestamp (couple milliseconds) right after resetting. This caused
+    many functions to improperly timeout right away.
+
+    Signed-off-by: Graf Yang <graf.yang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c06326c73bf90e48a8e1cf8893ad31c575423f50
+Author: Shinya Kuribayashi <skuribay@pobox.com>
+Date:  Sat May 16 09:12:09 2009 +0900
+
+    MIPS: lib_mips/board.c: Remove unused variables
+
+    This fixes the following build warnings:
+
+    board.c: In function 'board_init_r':
+    board.c:328: warning: unused variable 'i'
+    board.c:326: warning: unused variable 'e'
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
+Author: Shinya Kuribayashi <skuribay@pobox.com>
+Date:  Sat May 16 09:12:09 2009 +0900
+
+    MIPS: Make all extern-ed functions in bitops.h static
+
+    All these functions are expected to be static inline-ed.
+    This patch also fixes the following build warnings on MIPS targets:
+
+    include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
+    include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
+    include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
+    include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit 87423d740b91329b8d1d0b73cafd6930993b558a
+Author: Thomas Lange <thomas@corelatus.se>
+Date:  Fri Apr 24 16:22:16 2009 +0200
+
+    MIPS: Implement ethernet halt for au1x00
+
+    Implement ethernet halt() by putting MAC0 in reset.
+    If we do not do this, we will get memory corruption
+    when ethernet frames are received during early OS boot.
+
+    Signed-off-by: Thomas Lange <thomas@corelatus.se>
+    Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
+
+commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 23:29:23 2009 +0200
+
+    Prepare v2009.06-rc2
+
+    Update CHANGELOG.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f4317ea91942f44cc1c433277927b61618e9b0a5
+Author: Daniel Mack <daniel@caiaq.de>
+Date:  Tue May 5 12:48:29 2009 +0200
+
+    ARM: fix PXA build by defining UP2OCR
+
+    U-Boot does not currently build for PXA platforms with USB support
+    enabled:
+
+    usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
+
+    Signed-off-by: Daniel Mack <daniel@caiaq.de>
+    Cc: Markus Klotzbuecher <mk@denx.de>
+
+    Edited commit message.
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 22:32:57 2009 +0200
+
+    Minor Coding Style fix; update CHANGELOG.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 15 09:27:58 2009 +0200
+
+    IDE: bail out of dev_print() for unknown device types
+
+    Commit 574b319512 introduced a subtle bug by mixing a list of tests
+    for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
+    then mostly did not work because "dev_desc->type" cannot take any
+    "IF_*" type values. A later fix in commit 8ec6e332ea changed the
+    switch() into testing "dev_desc->if_type", but at this point the
+    initial test for unknown device types was completely lost, which
+    resulted in output like that for IDE ports without device attached:
+
+      Device 1: Model: Firm:  Ser#:
+               Type: # 1F #
+               Capacity: not available
+
+    This patch re-introduces the missing test for unknown device types.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Stefan Roese <sr@denx.de>
+    Cc: Detlev Zundel <dzu@denx.de>
+    Tested-by: Stefan Roese <sr@denx.de>
+
+commit c21f62d8483fbab44cd98d93ff2e9355a330d225
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu May 14 07:25:13 2009 +0200
+
+    74xx_7xx: Fix rounding problem in CPU frequency calculation
+
+    This patch fixes a problem in the CPU frequency calculation. Without it
+    a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed May 13 22:24:12 2009 +0200
+
+    console.h: remove unused prototype 'console_realloc'
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 84bf7ca522e94ec402a1264b01971b924b7e268f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed May 13 22:16:31 2009 +0200
+
+    api: remove un-needed ifdef CONFIG_API already handle by the Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed May 13 10:54:10 2009 +0200
+
+    Fix e-mail address of Gary Jennejohn.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 5e2c08c3ac90808e9be64856916bfd6df984823c
+Author: Emil Medve <Emilian.Medve@Freescale.com>
+Date:  Tue May 12 13:48:32 2009 -0500
+
+    Remove inline qualifier from show_boot_progress()
+
+    The 'inline' is conflicting with the semantic of 'weak' attribute and with the
+    way the show_boot_progress() function is used.
+
+    Also gcc 4.4 is complaining about it:
+
+    main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
+
+    Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
+
+commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue May 12 15:17:35 2009 +0200
+
+    MPC8260: fixup device tree by property instead of path
+
+    cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
+    clock frequencies in the device tree, using a CPU path
+    "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
+
+    However, this does not work when one board config file (here:
+    MPC8260ADS.h) is intended to be used for several diffrent CPUs and
+    therefor contains a generic definition like "cpu@0", as the device
+    trees that will then be loaded will contain specific names like
+    "PowerPC,8272@0".
+
+    We switch to using do_fixup_by_prop_u32() instead, so we can search
+    for device_type="cpu", as it is done in other architectures, too.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Cc: Heiko Schocher <hs@denx.de>
+    Acked-by: Heiko Schocher <hs@denx.de>
+    Tested-by: Heiko Schocher <hs@denx.de>
+
+commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
+Author: Rohit Hagargundgi <h.rohit@samsung.com>
+Date:  Mon Mar 9 19:45:46 2009 +0530
+
+    Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
+
+    Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
+    CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
+    and is used by OneNAND ipl when reading U-Boot image.
+
+    Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
+    Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue Apr 28 17:04:51 2009 -0700
+
+    Schedule removal of non-CONFIG_NET_MULTI net driver API
+
+    This will make CONFIG_NET_MULTI the only net driver configuration and
+    we'll be able to remove this option.
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Tue May 5 16:04:06 2009 +0200
+
+    powerpc/inka4x0: Remove left-over ide reset code.
+
+    The pin which was used in preliminary versions of the board for ide
+    reset is really connected to the rtc clock.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit f578a2da6770951239ad91ee9a1875fdc71dbe48
+Author: Marco Stornelli <marco.stornelli@gmail.com>
+Date:  Tue Apr 28 19:04:02 2009 +0200
+
+    Add imls utility command
+
+    This patch adds, under tools folder, a new command called imls. Its
+    goal is the same of UBoot's imls but it can be used as Linux shell
+    command. It reads from raw mtd partition and prints the list of the
+    stored images.
+
+    Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
+
+commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Apr 28 08:36:11 2009 +0200
+
+    netloop: updates for NetLoop
+
+    Fix some issues introduced from commit:
+    2f70c49e5b9813635ad73666aa30f304c7fdeda9
+    suggested by Mike Frysinger.
+
+    - added some comment for the env_id variable in common_cmd_nvedit.c
+    - moved some variables in fn scope instead of file scope
+    - NetInitLoop now static void
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3c1d89545de11822f8b5afb5646a57757620bd95
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Apr 28 07:48:39 2009 +0200
+
+    82xx, ids8247: added ids8247 board to MAKEALL script
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 890a017a8a995c921d1e889d360e8d6538ceecfe
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Thu May 7 13:08:55 2009 +0200
+
+    arm/imx31_phycore: Fix bi_arch_number
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Cc: Sascha Hauer <s.hauer@pengutronix.de>
+
+commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
+Author: Sascha Hauer <s.hauer@pengutronix.de>
+Date:  Fri May 15 10:21:33 2009 +0200
+
+    remove myself as phycore/litekit Maintainer
+
+    I never acked a patch that adds me as phycore i.MX31 maintainer nor was
+    it me who pushed the patches, so remove myself from the maintainer list
+    so that other people do not longer wait for my ack.
+
+    Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
+
+commit c63254ef5628efe1c77cb2fdba20753f9666f55d
+Author: Sergey Lapin <slapin@ossfans.org>
+Date:  Tue May 12 12:25:14 2009 +0400
+
+    AFEB9260 network fix
+
+    AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
+    Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
+    not 0.
+
+    Signed-off-by: Sergey Lapin <slapin@ossfans.org>
+
+commit f8ddcd58221cab63dd25c2324dd2032487f748b1
+Author: Graf Yang <graf.yang@analog.com>
+Date:  Tue May 5 02:26:27 2009 -0400
+
+    Blackfin: bf518f-ezbrd: reset ethernet PHY during init
+
+    We don't know what state the ethernet PHY is in when starting up, so make
+    sure we set it to a sane state.  This fixes troubles seen when Linux boots
+    up, configures the PHY is a non-default state, and then the system reboots
+    into U-Boot which previously expected a reset state only.
+
+    Signed-off-by: Graf Yang <graf.yang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue May 5 01:35:41 2009 -0400
+
+    Blackfin: bf527-ezkit: fix SPI flash env params
+
+    The BF527-EZKIT settings for storing the environment in SPI flash wasn't
+    using the correct sector settings for the SPI flash part that is actually
+    on the board.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f58bf804a14324c6c9186a7a664fa23281780e8b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 24 23:54:19 2009 -0400
+
+    Blackfin: avoid get_sclk() with early serial debug
+
+    When the clock functions were changed to use cached values (and thereby
+    avoiding expensive math functions), early serial debug broke because the
+    baud programming is called before external memory is available.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 02778f2f1b4b1a28b492367477db27c58d45ae35
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 24 23:39:41 2009 -0400
+
+    Blackfin: fix booting with older bootroms (no EVT1)
+
+    When dropping jump block support, the assumption was that all bootroms
+    supported entry point redirection via the EVT1 register.  Unfortunately,
+    this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
+    and older and BF561).  No one really noticed earlier because these parts
+    usually are booted by bypassing the bootrom entirely, and older BF533
+    parts are not supported at all (too many anomalies).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit af2c37378f203857d5e6c957e77a14c2da5b59d2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 24 23:22:48 2009 -0400
+
+    Blackfin: recurse with early serial initcode
+
+    Make sure we recurse through serial_putc() rather than bang on the UART
+    transmit register directly to avoid hardware overflows when using \n.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 1 21:59:12 2009 +0200
+
+    Prepare v2009.06-rc1
+
+    Update CHANGELOG.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri May 1 15:38:06 2009 +0200
+
+    at91: remove lowlevel_init.S
+
+    lowlevel_init.S is not used any more so remove it.
+    As consequence, we also don't have to generate u-boot.lds
+    but can use a static version as before.
+
+    This also fixes the out-of-tree build problem introduced
+    with commit f0a2c7b4 "at91: add support for the PM9263 board"
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Fri May 1 00:16:11 2009 +0200
+
+    Update CHANGELOG; minor coding style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
+Author: Manikandan Pillai <mani.pillai@ti.com>
+Date:  Tue Apr 21 17:29:05 2009 +0200
+
+    OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
+
+commit ac9140037a84629c5583066ff1a177396c47d89d
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Fri Apr 17 14:27:56 2009 +0200
+
+    OMAP3: Beagle: Set pinmux conditionally for Rev C boards
+
+    The Beagle Rev C boards pull UART2 from an alternate set of balls.
+
+    Signed-off-by: Steve Sakoman <steve@sakoman.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
+Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+Date:  Mon Apr 27 18:33:33 2009 +0200
+
+    ubifs: BUG: Blocks commpressed with zlib
+
+    Blocks compressed with zlib dont have the full gzip header.
+
+    Without this patch, block compressed with zlib cannot be readed!
+
+    Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+
+commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
+Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+Date:  Mon Apr 27 18:33:32 2009 +0200
+
+    lib_generic: gunzip: New function zunzip
+
+    Separate gunzip in
+
+    gunzip: Find the end of the header and call zunzip.
+    zunzip: Inflate gunzip block without header.
+
+    UBI fs blocks can be compresed in lzo, zlib or no-compression. The
+    current implementation of u-boot supported all the compressions but
+    there was a bug in the implementation of the zlib blocks.
+
+    UBIFS's Zlib blocks do not have header but they were compressed using
+    gunzip, a function used to decompress gunzip files/sectors with a
+    header.
+
+    This patch adds a new function zunzip that uncompress a zlib block with
+    no header.
+
+    Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+
+commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
+Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+Date:  Thu Apr 23 15:37:16 2009 +0200
+
+    at91: fixed plla calc when no USB support is active
+
+    Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 3791a1187c1401c33c9512595e6e89dbb46230c5
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Wed Apr 22 01:12:04 2009 +0200
+
+    arm925t: Fix CONFIG_SYS_HZ to 1000
+
+    Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
+    get_timer.
+
+    Changes since original version:
+    * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
+      improve timer resolution.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 42bf4b2248146abdc592bde0009c6ea42067f437
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Tue Apr 14 20:15:17 2009 +0200
+
+    OMAP3: Remove legacy NAND defines
+
+    Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Mon Apr 27 21:27:54 2009 +0530
+
+    OMAP3: Print correct silicon revision
+
+    The function display_board_info() displays incorrect
+    silicon revision - based on the return value from
+    function get_cpu_rev().
+
+    This patch fixes the problem.
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+commit 90006e9b33bcdbf241b0295d186e3634137907a9
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Mon Apr 27 21:27:44 2009 +0530
+
+    OMAP3: Remove unused board-types
+
+    The board-types defined in struct omap3_sysinfo seem to be
+    unused. The function display_board_info() is passed
+    board type as an argument; which is ignored.
+
+    This patch removes all uses of board-type, related definitions
+    and functions.
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Mon Apr 27 21:27:27 2009 +0530
+
+    OMAP3: Use functions print_cpuinfo() and checkboard()
+
+    Use the functions print_cpuinfo() and checkboard() to
+    display the cpu and board specific information.
+
+    These functions reuse content from the existing function
+    display_board_info() - which has been removed.
+
+    Also, updated the existig OMAP3 configurations to
+    define:
+     - CONFIG_DISPLAY_CPUINFO
+     - CONFIG_DISPLAY_BOARDINFO
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Mar 18 11:17:37 2009 +0100
+
+    MTD: Change cfi-mtd to accept non-uniform sector sizes
+
+    With this patch non-uniform NOR FLASH chips (chips with multiple erase
+    regions) can be exported via the cfi-mtd layer and therefor used by UBI.
+    We select the largest sector size as erasesize. The cfi driver will make
+    sure that the smaller sectors are handled correctly.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 3dcbe628d66b648e954bc8147d4faff2983206d9
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Thu Apr 23 12:35:22 2009 +0200
+
+    video: fix bug in cfb_console.c code
+
+    Fix bug in drawing long version/info strings:
+    U-Boot version string like
+    "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
+    is long and doesn't wrap around correctly while drawing
+    beside the logo. Such long strings partially overwrite
+    the logo. This patch is an attempt to fix it.
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Apr 28 08:50:31 2009 +0200
+
+    cmd_ext2.c: fix compile warnings
+
+    Get rid of these warnings:
+
+    cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
+    cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 28afe0160f87ff74574150d703055a965f91422a
+Author: Heiko Schocher <hs@denx.de>
+Date:  Mon Apr 27 10:48:20 2009 +0200
+
+    ids8247: Remove legacy NAND defines
+
+    because legacy NAND support is deprecated converting to current
+    NAND interface. !This just compile, because I have no more the
+    hardware to test it.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit dbd33614404b65aa441c5620c3dbd560c4460c09
+Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+Date:  Mon Apr 27 09:13:31 2009 +0200
+
+    ubifs: BUG realpath string must be ended with NULL
+
+    If the memory used to copy the link_make is "dirty" the string wont
+    be ended with NULL, throwing out multiple memory bugs.
+
+    Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:59:56 2009 -0500
+
+    bmp_logo: Check return value of fread()
+
+    Add basic error handling to fread() function calls.  This prevents
+    compililation warnings such as:
+
+    bmp_logo.c: In function â€˜main’:
+    bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
+    attribute warn_unused_result
+    ...
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit eea8be86d1c2b570660d1f6c553845e13164231a
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Apr 24 15:59:46 2009 -0500
+
+    ncb: Check return value of write()
+
+    This prevents the compilation warning:
+
+    ncb.c: In function 'main':
+    ncb.c:32: warning: ignoring return value of â€˜write’, declared with
+    attribute warn_unused_result
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Apr 24 15:59:35 2009 +0200
+
+    mtd: nand/onenand: Register mtd device upon device scanning
+
+    With this patch the NAND and OneNAND devices are registered in the MTD
+    subsystem and can then be referenced by the mtdcore code (e.g.
+    get_mtd_device_nm()). This is needed for the new "ubi part" command
+    syntax without the flash type parameter (nor|nand|onenand).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 10bb62d85a0850dbad1fdd34123378686373f166
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Apr 24 15:58:33 2009 +0200
+
+    mtd: nand: Include linux/mtd/partitions.h in nand_base.h
+
+    This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
+    defined:
+
+    nand_base.c: In function 'nand_release':
+    nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
+Author: Stefan Roese <sr@denx.de>
+Date:  Fri Apr 24 20:24:19 2009 +0200
+
+    ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
+
+    This patch removes the now unnecessary flash type parameter from the
+    "ubi part" command. Currently the user has to define the type of flash
+    he will be using UBI on. Example:
+
+    => ubi part nor partition1
+
+    With this patch this type parameter is not needed anymore. The user can
+    now select the partition directly without the flash type paramter.
+    Example:
+
+    => ubi part partition1
+
+    This breaks backward compatibility right now because of the change in the
+    command syntax. But UBI support is still quite fresh and the advantage of
+    this new command is syntax big enough for this change. Additionally the
+    code is much cleaner now.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    CC: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 294f10ca9ea82a15e135dcb0fc658382ab206940
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Thu Apr 23 13:14:20 2009 +0200
+
+    mips/vcth: Use generic 16550 uart driver
+
+    As the common code also handles baudrate switching, which the board
+    specific vct.c driver did not support, this is one of the rare
+    occassions where deleting code actually adds a feature :)
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+    Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+
+commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Tue Apr 21 02:26:31 2009 +0200
+
+    Separate mtdparts command from jffs2
+
+    On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
+    > Currently the mtdparts commands are included in the jffs2 command support.
+    > This doesn't make sense anymore since other commands (e.g. UBI) use this
+    > infrastructure as well now. This patch separates the mtdparts commands from
+    > the jffs2 commands making it possible to only select mtdparts when no JFFS2
+    > support is needed.
+
+    One more leftover... Let nboot command know about partitions even if JFFS2
+    support is not enabled.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Apr 20 11:22:13 2009 -0500
+
+    cmd_ide: Remove unused AmigaOneG3SE code
+
+    The output_data_short() and input_data_short() functions for the
+    AmigaOneG3SE are unused and result in compiler warnings.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit c93c102ace00764a56dbdf78bac134a23906721e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Apr 20 11:21:40 2009 -0500
+
+    AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Apr 20 11:09:05 2009 -0500
+
+    Replace __asm references with __asm__
+
+    __asm__ follows gcc's documented syntax and is generally more common
+    than __asm.  This change is only asthetic and should not affect
+    functionality.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit f9a109b3adc5e8647535357500e2a38f0558b5c2
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Mon Apr 20 11:08:46 2009 -0500
+
+    Replace __attribute references with __attribute__
+
+    __attribute__ follows gcc's documented syntax and is generally more
+    common than __attribute.  This change is only asthetic and should not
+    affect functionality.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 08f077da9298ff65cc6f85f90d2770000a1beee9
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Thu Apr 16 19:55:48 2009 -0700
+
+    mtdpart command: align output columns
+
+    Make the headers in the "mtdparts" command output line up
+    with their columns ... strike the extra TAB character.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
+Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+Date:  Thu Apr 16 10:51:03 2009 +0900
+
+    Remove sa1100.h
+
+    sa1100.h is not used anywhere, then remove it.
+
+    $ find . -name '*.h' -empty -print
+    ./include/sa1100.h
+    $ git grep 'sa1100.h' .
+    $
+
+    Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Apr 14 17:51:21 2009 +0200
+
+    UBIFS: Remove tnc_commit.c which is not used in the read-only version
+
+    I missed removing this file while implementing the UBIFS support. It's
+    not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
+    for spotting.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 6356daff70867822bdb23cea49f98e65421a25b8
+Author: Adrian Hunter <adrian.hunter@nokia.com>
+Date:  Tue Apr 14 17:50:38 2009 +0200
+
+    UBIFS: fix recovery bug
+
+    UBIFS did not recovery in a situation in which it could
+    have. The relevant function assumed there could not be
+    more nodes in an eraseblock after a corrupted node, but
+    in fact the last (NAND) page written might contain anything.
+    The correct approach is to check for empty space (0xFF bytes)
+    from then on.
+
+    Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
+Author: Gao Guanhua <B22826@freescale.com>
+Date:  Tue Apr 14 14:37:35 2009 +0800
+
+    fs: Fix the wrong type of var
+
+    The filelen should be signed type, not unsigned type.
+    otherwise, The condition as below never take.
+       if (filelen < 0)
+
+    Signed-off-by: Gao Guanhua <B22826@freescale.com>
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Apr 28 00:29:34 2009 +0200
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Thu Apr 16 23:15:15 2009 -0700
+
+    dm9000 EEPROM reading bugfix
+
+    Make the U-Boot dm9000 driver read addresses from EEPROM just
+    like Linux does ... read six bytes, instead of reading twelve
+    bytes and then discarding every other one.
+
+    Using the right Ethernet address is a big win.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit d4c02e6f5d49880123e7f584b88f857ffd874381
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 14:27:24 2009 +0900
+
+    rtl8169: fix cache coherency problem
+
+    Fix the problem that cannot access actual data when CPU data cache enabled.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Tue Apr 21 17:30:51 2009 +0200
+
+    OMAP3: Fix changed mmc init command
+
+    In recent U-Boot mmcinit changed to mmc init.
+
+    Signed-off-by: Steve Sakoman <steve@sakoman.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 34b76a14f676bc6501c27a96564e4dfb4793f033
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Apr 26 20:39:26 2009 +0200
+
+    lib_arm/board.c: remove misleading "test-only" comment.
+
+    For a long time, the print_cpuinfo() declaration in lib_arm/board.c
+    had been marked as "test-only", which is plain wrong considering
+    current usage.  Delete this misleading comment.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Sun Apr 12 15:40:16 2009 -0700
+
+    minor DaVinci clock cleanup
+
+    Minor cleanup to clock-related defines for DaVinci DM6446 boards:
+
+     - CONFIG_SYS_CLK_FREQ is unused; remove it.
+
+     - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
+
+    On DM6446 both of those peripheral clocks actually come from the
+    same source, the primary oscillator.  Having them use the same
+    symbol avoids bugs in the clone'n'modify development cycle.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Mon Apr 6 19:59:29 2009 +0900
+
+    s3c64xx: remove unnecessary definition
+
+    CONFIG_S3C6400 is must defined at config header file
+    That definition is unnecessary at this file
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 14b9308d511b53042ef478936e367a67282df66a
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Apr 24 06:50:45 2009 +0200
+
+    83xx: searching "muram-data" by compatible property
+
+    if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
+    in the muram-data node, the reg entry needs to be updated.
+    This is done in fdt_fixup_muram(), but we should use
+    the compatible "fsl,qe-muram-data" for searching the
+    node instead of searching the muram-data node with
+    an absolute path.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 8e15088794807944b221c11609d36789efc7f767
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Thu Apr 23 21:29:34 2009 +0200
+
+    mpc83xx: MPC8360ERDK: fix environment offset configuration bug
+
+    The size of U-Boot binary for MPC8360ERDK increased
+    (> 2 flash sectors now), so 'saveenv' will partially
+    overwrite U-Boot in flash and will brick the board.
+    This patch moves environment offset to fourth flash
+    sector and also fixes CONFIG_SYS_MONITOR_LEN.
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
+Author: Michael Zaidman <michael.zaidman@gmail.com>
+Date:  Sat Apr 4 01:43:00 2009 +0300
+
+    NetLoop initialization bug
+
+    The patch fixes the bug of partial initialization of global network
+    parameters.
+
+    Upon u-boot's start up the first ping command causes a failure of the
+    consequent TFTP command. It happens in the recently added mechanism of
+    the NetLoop initialization where initialization of global network
+    parameters is separated in the NetInitLoop routine which is called per
+    env_id change. Thus, ping request will initialize the network parameters
+    necessary for ping operation only, afterwards the env_changed_id will be
+    set to the env_id that will prevent all following initialization requests
+    from other protocols.
+    The problem is that the initialized by ping subset of network parameters
+    is not sufficient for other protocols and particularly for TFTP which
+    requires the NetServerIp also.
+
+    Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit b11f664f52c2855990107c18f242223377183575
+Author: Timur Tabi <timur@freescale.com>
+Date:  Thu Apr 9 10:27:05 2009 -0500
+
+    net: fix ULI 526x macro usage in netdev.h
+
+    Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
+    is used everywhere else, so that's the correct macro name. Without this fix,
+    Ethernet will not work on the Freescale MPC8610 HPCD.
+
+    Signed-off-by: Timur Tabi <timur@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 7ee38c044ca5041d3378d6507580ea4ec344af96
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Sun Apr 12 15:38:06 2009 -0700
+
+    fix DaVinci NS16550_REG_SIZE regression
+
+    Update the DaVinci DM6446 boards to use the new convention
+    for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
+    from the original 4 bytes, but these chips are little-endian.
+
+    (Resolves a regression added recently by the include/ns16550.h
+    patch to "Unify structure declaration for registers".  The code
+    previously worked just fine because the registers were accessed
+    as host-endian words, not as bytes.)
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+
+commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Apr 12 22:29:20 2009 -0400
+
+    cmd_nand: drop duplicate NULL ptr check
+
+    The first if statement checks for NULL ptrs, so there is no need to check
+    it again in later else cases (such as .oob).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Scott Wood <scottwood@freescale.com>
+
+commit 7732cef2eeb4e339cfcd8553fab773af73a20805
+Author: David Brownell <dbrownell@users.sourceforge.net>
+Date:  Mon Apr 13 08:03:38 2009 -0700
+
+    CMD_UBI != MTD_PARTITIONS
+
+    Fix dependency goofage:  it should certainly be possible to have the
+    partition support without bringing in UBI commands.
+
+    Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 6ebff365eb63093ca35b687316002535c6a18820
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Apr 16 21:30:48 2009 +0200
+
+    at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
+
+    The timer has been rewrote with a precision at ~0,18%
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Tested-by: Sergey Lapin <slapin@ossfans.org>
+    Tested-by: Eric BENARD <ebenard@free.fr>
+
+commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
+Author: Ilko Iliev <iliev@ronetix.at>
+Date:  Thu Apr 16 21:30:48 2009 +0200
+
+    at91: add support for the PM9263 board of Ronetix GmbH
+
+    The PM9263 board is based on the AT91SAM9263-EK board.
+
+    Here is the page on Ronetix website:
+    http://www.ronetix.at/starter_kit_9263.html
+
+    Signed-off-by: Ilko Iliev <iliev@ronetix.at>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Apr 16 21:30:44 2009 +0200
+
+    at91sam9/at91cap: improve clock framework
+
+    calculate dynamically the clock rate and pllb setting for usb
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit dd7c302099ef5590069bdbf292aaa8230cd59de7
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Apr 15 14:08:48 2009 +0200
+
+    ppc4xx: Disable POST memory test on NAND-booting Kilauea
+
+    Don't run the memory POST on the NAND-booting version. It will
+    overwrite part of the U-Boot image which is already loaded from NAND
+    to SDRAM. We were just lucky that it booted at all with this SDRAM
+    test enabled.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9a929170be89b27bce677504da27e88600c06c49
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Apr 15 14:06:26 2009 +0200
+
+    ppc4xx: Disable POST memory test on NAND-booting Sequoia
+
+    Don't run the memory POST on the NAND-booting version. It will
+    overwrite part of the U-Boot image which is already loaded from NAND
+    to SDRAM. We were just lucky that it booted at all with this SDRAM
+    test enabled.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Apr 15 11:32:53 2009 +0200
+
+    ppc4xx: Remove unused code for Sequoia NAND booting version
+
+    The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
+    used at all. This patch changes it's define to the currently used value of
+    133333333 and removes the unnecessary code.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit cf9409885cbe01405bad76790e99f8adf3351f4d
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Apr 15 10:50:48 2009 +0200
+
+    ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
+
+    This additional text in the bootup log helps to see if the board is
+    configured for NAND-booting. Especially helpful for boards that can
+    boot from NOR and NAND (e.g. most of the AMCC eval boards).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 5132106a27b8fb302677852b26ffd319b40d17e2
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Apr 8 10:36:22 2009 +0200
+
+    ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
+
+    Currently the NOR & NAND support in Linux only works for the "standard"
+    Sequoia, the version booting for NOR flash. The NAND-booting version
+    has the chip-selects swapped. Here the chip-select mappings:
+
+    "Standard" NOR-booting version:
+    CS0        NOR
+    CS3        NAND
+
+    NAND-booting version:
+    CS0        NAND
+    CS3        NOR
+
+    With this path the dtb gets fixed-up, so that the correct chip-select
+    numbers are patched in the dtb enabling correct NOR & NAND support
+    in Linux on the NAND-booting Sequoia version.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit aad4eca4ba8d597747199d8af723426681557dda
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 09:10:27 2009 -0400
+
+    Blackfin: audit UART for all known anomalies
+
+    There is no code change here, just new comments, but this keeps me from
+    having to do another audit from scratch in the future.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 08:40:13 2009 -0400
+
+    Blackfin: add check for anomaly 05000362
+
+    DESCRIPTION:
+    The column address width settings for banks 2 and 3 are misconnected in
+    the SDRAM controller.  Accesses to bank 2 will result in an error if the
+    Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
+    that of bank 2.
+
+    WORKAROUND:
+    If using bank 2, make sure that banks 2 and 3 have the same column address
+    width settings in the EBIU_SDBCTL register.  This must be the case
+    regardless of whether or not bank 3 is enabled.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c2e07449f546fb375289cdac1a608fdc20357873
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 08:29:55 2009 -0400
+
+    Blackfin: add comment about anomaly 05000430 avoidance
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 48ab1509254a4c175e4f65c478a978928ffe09ec
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 08:10:22 2009 -0400
+
+    Blackfin: add workaround for anomaly 05000242
+
+    DESCRIPTION:
+    If the DF bit is set prior to a hardware reset, the PLL will continue to
+    divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
+    cleared in the PLL_CTL register.
+
+    WORKAROUND:
+    Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
+    2 after reset.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 08:09:24 2009 -0400
+
+    Blackfin: add workaround for anomaly 05000171
+
+    DESCRIPTION:
+    The Boot ROM is executed at power up/reset and changes the value of the
+    SICA_IWR registers from their default reset value of 0xFFFF, but does not
+    restore them.
+
+    WORKAROUND:
+    User code should not rely on the default value of these registers. Set
+    the desired values explicitly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 08:22:36 2009 -0400
+
+    Blackfin: update anomaly sheets
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
+Author: Graf Yang <graf.yang@analog.com>
+Date:  Sat Apr 4 07:45:57 2009 -0400
+
+    Blackfin: nand: flush peripheral before polling it
+
+    We need to make sure the data written to the nand flash controller makes
+    it there before we start polling its status register.  Otherwise, we may
+    get stale data and return before the controller is actually ready.
+
+    Signed-off-by: Graf Yang <graf.yang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Scott Wood <scottwood@freescale.com>
+
+commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Sun Apr 5 11:43:28 2009 +0200
+
+    Support for PXA27X UDC.
+
+       This Patch adds Support for PXA27X UDC.
+       (Rebased to drivers/usb reorganisation)
+
+    Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 2731b9a86685190d26b1883f27afda5ac8e1a313
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Apr 3 12:46:58 2009 +0200
+
+    drivers/usb: regorganisation
+
+    move to linux usb driver organisation
+
+    as following
+
+    drivers/usb/gadget
+    drivers/usb/host
+    drivers/usb/musb
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit d04371a116d102e587ba7aa4c329b441cdbea3f4
+Author: Todor I Mollov <tmollov@ucsd.edu>
+Date:  Sat Apr 4 06:53:06 2009 -0400
+
+    Blackfin: spi: make cs deassert function deterministic
+
+    Blackfin SPI driver was not driving the SPI chip-select high before
+    putting the chip-select signals into tri-state mode.  This is probably
+    something that slipped by unnoticed in most designs.  If the signals are
+    put directly into a tri-state mode, then the board is relying on the
+    pull-up resistors to pull up the chip-select before the next transaction.
+    Most of the time this is fine, except when you have two transactions that
+    follow each other very closely, such as the flash erase and read status
+    register commands. In this case I was seeing a 500ns separation between
+    the transactions.  In my setup, with a 10kOhm pull-up, it would meet
+    timing spec about half the time and resulted in intermittent errors.  (A
+    stronger pull up would fix this, but our design is targeted for low power
+    consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
+    I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
+    chip-selects high before putting them into tri-state.  For me, this
+    resulted in a rise time of 5ns instead of the previous rise time of about
+    1us, and fully satisfied the timing spec of the chip.
+
+    Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Dec 13 21:08:05 2008 +0100
+
+    integratorap: fix PCI support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 1c397508c836dfcb01fb2471c71de0727051f117
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Mon Mar 30 21:15:23 2009 +0200
+
+    OMAP3: Update Overo pin mux for new expansion board
+
+    A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
+    switches. This patch changes the pinmux configuration for those pins.
+    They were previously set up for unused MMC3_DAT4-7.
+
+    Signed-off-by: Steve Sakoman <steve@sakoman.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit ab298231518675b3784aea88ee9b978438f99e63
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Apr 5 13:08:03 2009 +0200
+
+    arm: unify reset command
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b3acb6cd4059dfb29a5e99095d802717f53ff784
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Apr 5 13:06:31 2009 +0200
+
+    arm: clean cache management
+
+    unify arm cache management except for non standard cache as ARM7TDMI
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Apr 5 13:02:43 2009 +0200
+
+    arm: update co-processor 15 access
+
+    import system.h from linux
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 23e4af49e066a53cd3e3659b68ef90572d88de84
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Sun Apr 5 00:42:02 2009 +0200
+
+    ARM: add the imx31_phycore_eet target to MAINTAINERS
+
+    imx31_phycore_eet is a variant of the imx31_phycore board with a few
+    extensions, which justifies a separate entry in the MAINTAINERS list,
+    whereas normally all entries sharing a single configuration file and a
+    board/ directory have only one entry in MAINTAINERS.
+
+    Reported-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+
+commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Sun Apr 5 00:37:07 2009 +0200
+
+    ARM: fix out-of-tree build of imx31_phycore_eet
+
+    Fix out-of-tree build of the imx31_phycore_eet target.
+
+    Reported-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+
+commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Sat Apr 4 17:44:51 2009 -0400
+
+    mpc5200: reduce delays in i2c
+
+    The previous code waited 1000us before checking i2c
+    status. Measurement shows i2c is usually ready in
+    under 50us. Change the polling interval to 15us,
+    loop 6,667 times to keep the polling timeout constant
+    at 100ms.
+
+commit 36003268968949110ef145d9f2eaf8439c96d25b
+Author: Sanjeev Premi <premi@ti.com>
+Date:  Fri Apr 3 14:00:07 2009 +0530
+
+    OMAP: Fix compile issue
+
+    Fixes this compile error:
+    board.c: In function 'do_switch_ecc':
+    board.c:339: error: 'cmd_tbl_t' has no member named 'help'
+    make[1]: *** [board.o] Error 1
+    make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
+    make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
+
+    This is due to the fact that current command uses long
+    help for the usage print even if the CONFIG_SYS_LONGHELP
+    is not enabled. (Thanks Jean-Christophe for explanation).
+
+    Signed-off-by: Sanjeev Premi <premi@ti.com>
+
+commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Fri Apr 3 09:56:16 2009 +0900
+
+    s3c64xx: fix the wrong gpio offset
+
+    This patch fix the wrong gpio offset
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Wed Nov 26 10:18:13 2008 +0900
+
+    Move machine specific code to board at s3c64xx (v2)
+
+    Move machine specific code to smdk6400.
+    Some board use OneNAND instead of NAND.
+
+    Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
+    So it's better to use macro instead of hard-coded value.
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Wed Apr 1 22:02:19 2009 -0500
+
+    ZOOM1 Remove legacy NAND defines
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 5891151707ee5902fe62d554c247f42865815757
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Wed Apr 1 22:02:20 2009 -0500
+
+    OMAP3 Fix multiline formatting in board init files.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Apr 5 00:27:57 2009 +0200
+
+    Update CHANGELOG, coding style cleanup.
+
+commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Apr 5 00:18:44 2009 +0200
+
+    One more fix for building env_embedded.o
+
+    In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
+    commit afcbce07, we also need to do the same for
+    CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Apr 2 16:15:10 2009 -0500
+
+    common/image.c: Relocate strings in tables.
+
+    Without this, u-boot can crash or print garbage if the original link
+    address no longer points to a valid string.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Apr 2 16:10:36 2009 -0500
+
+    mpc8260: Fill in brg's clock-frequency in device tree.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit c73ed274a211699739d83c2cef92853dc6716e15
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Thu Apr 2 18:20:43 2009 -0500
+
+    MPC8260ADS: Add nfsboot/ramboot to default environment.
+
+    This brings it in line with other Freescale boards.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
+Author: Andreas Huber <andreas.huber@keymile.com>
+Date:  Thu Apr 2 17:15:34 2009 +0200
+
+    UBI/cfi-mtd: Fix mtd name for multiple chips
+
+    On platforms with multiple NOR chips, currently only the first one
+    can be selected using the "ubi part" command. This patch fixes this
+    problem by using different names for the NOR "mtd devices".
+
+    It also changes the name of the NOR MTD device from "cfi-mtd" to
+    "norX" (X indexing the device numer) to better match the mtdparts
+    defaults.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
+
+commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
+Author: Peter Korsgaard <jacmet@sunsite.dk>
+Date:  Tue Mar 31 17:52:16 2009 +0200
+
+    tools/setlocalversion: use git svn instead of git-svn
+
+    Use the new "git <subcmd>" syntax instead of the deprecated
+    "git-<subcmd>".
+
+    Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+
+commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Mar 31 14:09:40 2009 +0800
+
+    eSPI: add the eSPI register support
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+
+commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Mon Mar 30 14:55:51 2009 +0900
+
+    cmd_mmc: add support for device command for selecting mmc device
+
+    This patch improves device command for selecting mmc device
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
+Author: Alan Carvalho de Assis <acassis@gmail.com>
+Date:  Sat Mar 28 19:50:16 2009 -0300
+
+    Small fix to m5282evb
+
+    This is just a small fix to get u-boot on m5282evb.
+
+    Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
+
+commit febd7e4174e54579c9aa165c85c519fe5288f9d2
+Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
+Date:  Fri Mar 27 10:21:14 2009 +0100
+
+    UBIFS: add R/O compatibility
+
+    Now UBIFS is supported by u-boot. If we ever decide to change the
+    media format, then people will have to upgrade their u-boots to
+    mount new format images. However, very often it is possible to
+    preserve R/O forward-compatibility, even though the write
+    forward-compatibility is not preserved.
+
+    This patch introduces a new super-block field which stores the
+    R/O compatibility version.
+
+    Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
+    Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Mar 23 22:27:34 2009 -0400
+
+    more command usage cleanup
+
+    Fix up a few dangling commands like in "Command usage cleanup" commit.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 23 12:06:07 2009 +0100
+
+    Separate mtdparts command from jffs2
+
+    On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
+    > Currently the mtdparts commands are included in the jffs2 command support.
+    > This doesn't make sense anymore since other commands (e.g. UBI) use this
+    > infrastructure as well now. This patch separates the mtdparts commands from
+    > the jffs2 commands making it possible to only select mtdparts when no JFFS2
+    > support is needed.
+
+    ... and to make it useful for NAND chips as well, we should also remove now
+    unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
+    jffs2/load_kernel.h which is a bit misleading filename for that purpose,
+    but that can be fixed later (tm).
+
+    Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
+
+commit b196ca75503ce307c535b87bf47d51f05e7530df
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Mar 22 22:18:01 2009 -0400
+
+    smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
+
+    Rather than sticking Blackfin-specific stuff into the eeprom example, use
+    an indirect macro so that any board can override it with their own magic
+    sauce in their board config file.
+
+    Also fix some spurious semi-colons in defines while I'm at it ...
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
+Author: Sascha Hauer <s.hauer@pengutronix.de>
+Date:  Sat Mar 21 09:38:46 2009 -0400
+
+    mpc52xx phy: initialize only when needed
+
+    Do not initialize phy on startup, instead initialize it
+    when we actually need it.
+
+    Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
+
+commit 03bab0091948196b9558248684c04f60943ca4b5
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 16:51:40 2009 +0200
+
+    at91sam9263ek: enable hush and auto complete support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Acked-by: Stelian Pop <stelian@popies.net>
+
+commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:44 2009 +0100
+
+    at91: move dataflash spi driver to drivers/spi
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2b7178afce59f71e95da657273f4132012098c1f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:44 2009 +0100
+
+    at91: move usb driver to drivers/usb
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f82518d7f443ebac5f8821103a3c521c963aa6ee
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:43 2009 +0100
+
+    at91rm9200: Reset update
+
+    Update the rm9200 reset sequence to try executing a board-specific reset
+    function and move specific board reset to board.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 3524049cd053746298e4cfab2449882e75c146fc
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:43 2009 +0100
+
+    at91rm9200: move serial shutdown code to serial drivers
+
+    introduce serial_exit for this purpose. Use it only when the rm9200
+    serial driver is active
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:43 2009 +0100
+
+    at91rm9200: move serial driver to drivers/serial
+
+    add CONFIG_AT91RM9200_USART to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
+Author: Ulf Samuelsson <ulf@atmel.com>
+Date:  Fri Mar 27 23:26:43 2009 +0100
+
+    Add support for the AT91RM9200EK Board.
+
+    The AT91RM9200-EK Evaluation Board supports the AT91RM9200
+    ARM9-based 32-bit RISC microcontroller and enables real-time code development
+    and evaluation.
+
+    Here is the chip page on Atmel website:
+    http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
+
+    with
+       - NOR (cfi driver)
+       - DataFlash
+       - USB OHCI
+       - Net
+       - I2C (hard)
+
+    Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:42 2009 +0100
+
+    add dataflash mmc mux missing support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2a325ce3c705ab2d82760afc541c511328472df8
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:42 2009 +0100
+
+    at91rm9200dk: Move conditional compilation to Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:42 2009 +0100
+
+    at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 843a2654bce74192de2b5a43474fdc27a572ab40
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 23:26:42 2009 +0100
+
+    at91sam9: add watchdog support
+
+    Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit a47492ac60657dd9d59c713aa049319ea6eabd52
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Mar 27 13:14:52 2009 +0100
+
+    at91sam9/at91cap: spi init add hardware chip select support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 66932ac3929c7a145a6ef6574a96fd7535154951
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Apr 4 19:15:40 2009 +0200
+
+    netstar: fix crc32.c dependancy location
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 42f9ebff2f758bef524780a00c712eb63a72d99b
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Fri Apr 3 15:24:40 2009 -0500
+
+    MPC8260ADS: Define CONFIG_HAS_ETH0.
+
+    This is required so that the MAC address will be updated in the device tree.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 8701eceffdf77e2908d0b58add0dabc16edf6087
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Fri Apr 3 15:26:45 2009 -0500
+
+    PQ2FADS: Enable PCI.
+
+    PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Apr 4 16:57:50 2009 +0200
+
+    Fix quoting bug introduced by commit 74de7aef
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Apr 4 16:14:51 2009 +0200
+
+    Fix implicit declaration of function 'htons'
+
+    Include <netinet/in.h> instead of <linux/in.h> to get htons()
+    prototpye.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Sat Apr 4 10:21:02 2009 -0500
+
+    fsl_law: Fix bug in calculation of LAW sizing
+
+    In set_ddr_laws() when we determined how much of the size requested
+    to be mapped was covered by the the first LAW we needed to recalculate
+    the size based on what was actually mapped.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Apr 2 13:57:05 2009 -0500
+
+    fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c8514622e2713d9c47919acfe23fce386782afe7
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Apr 2 13:22:48 2009 -0500
+
+    fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
+
+    Rename the pci header for FSL HW so we can move some prototypes
+    in there and stop doing explicit externs
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Apr 4 16:10:40 2009 +0200
+
+    Fix building of env_embedded.o
+
+    Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
+    only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
+    building for many boards.
+
+    We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
+    set.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit a31e091ad70915278fb15b79d6ae53ea2d44b251
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Apr 4 12:49:11 2009 +0200
+
+    rename include/zlib.h to include/u-boot/zlib.h
+
+    Some systems have zlib.h installed in /usr/include/. This isn't the
+    desired file for u-boot code - we want the one in include/zlib.h.
+    This rename will avoid the conflict.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ae644c178f097874a92a6d934f364985fc7e075a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Apr 4 12:46:31 2009 +0200
+
+    tools/Makefile: fix image.c dependancy location
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Apr 4 07:42:25 2009 -0400
+
+    tools: add ncb to gitignore
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 453c0d7558215cbc8636d94af172886d84e0dbba
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Fri Apr 3 16:45:46 2009 +0200
+
+    include/ns16550.h: Unify structure declaration for registers
+
+    Instead of special casing the different access patterns, use common
+    code with light macros sprinkled in to accomodate for the different
+    layouts of the register structure.
+
+    Note that this also changes the types of the registers for the
+    "positively packed (>1)" cases.  As the registers truly are unsigned
+    chars, this is surely the Right Thing, but it is a semantic change.
+    Note that for this case depending on the endianness on the bus, we may
+    see a change of behaviour.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:52 2009 -0500
+
+    Delete now unused tools/Makefile.win32
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:51 2009 -0500
+
+    Add support for building native win32 tools
+
+    Add support for compiling the host tools in the tools directory using
+    the MinGW toolchain.  This produces executables which can be used on
+    standard Windows computers without requiring cygwin.
+
+    One must specify the MinGW compiler and strip utilities as if they
+    were the host toolchain in order to build win32 executables, eg:
+
+    make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:50 2009 -0500
+
+    tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b0d4d7219a4806e46affc96bd1f65397194a6e72
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:49 2009 -0500
+
+    tools/Makefile: Create generic build rules
+
+    Create a few generic build rules to replace the current method which has
+    1 build target for each file
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 273174ddbcce215c42f6c307470cd5580a3f72bf
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:48 2009 -0500
+
+    tools/Makefile: Use auto-generated object file dependencies
+
+    Files in the SRCS variable have their dependencies automatically
+    generated so remove duplicate explicit dependencies
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:47 2009 -0500
+
+    tools/Makefile: Remove symlinks for remaining source files
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit eed073315b6447eceadf7468a4c2b757442c7c6f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:46 2009 -0500
+
+    tools/Makefile: Dynamically generate libfdt object dependencies
+
+    Add the libfdt files to the SRCS variable so that they have their
+    dependencies automatically generated
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit c0170175393b94560fa7a5da6dd31377df5f4a72
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:45 2009 -0500
+
+    tools/Makefile: Remove symlinks for fdt targets
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:44 2009 -0500
+
+    tools/Makefile: Add libfdt/ to the include search path
+
+    This change makes the process of symlinking libfdt_internal.h
+    unnecessary
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:43 2009 -0500
+
+    tools: Remove unecessary symlinking of zlib.h
+
+    crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
+    was previously necessary to give U-Boot's version of zlib.h precedence
+    over the host computer's version of zlib.h.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:42 2009 -0500
+
+    tools/Makefile: Add tools/ to the include search path
+
+    This change makes the process of symlinking mkimage.h and fdt_host.h
+    unnecessary
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:41 2009 -0500
+
+    tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
+
+    Also conditionally add ncb.o to OBJ_FILES list
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:40 2009 -0500
+
+    tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:39 2009 -0500
+
+    tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:38 2009 -0500
+
+    tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:37 2009 -0500
+
+    tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit eeba8617908e33f7e7db3b1588c04ca65b856793
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:36 2009 -0500
+
+    tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:35 2009 -0500
+
+    tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit ee3584a5970230ee96aae19505ad3226734ee4ff
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:34 2009 -0500
+
+    tools/Makefile: Split variable declarations into multiple lines
+
+    Split variable declarations into multiple lines and use the standard
+    VAR-y convention.  Also move object and binary variable declarations to
+    after config.mk has been included to allow for these lists to utilize
+    the CONFIG_XXX variables.
+
+    These changes lay the groundwork for conditional compilation of files
+    in the tools directory.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:33 2009 -0500
+
+    tools/Makefile: Remove inappropriate double-tabs
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 652f4ba076689fd0acd447561a777b1c440a4b57
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:32 2009 -0500
+
+    tools/Makefile: Remove HOSTARCH HOSTOS defines
+
+    The values of HOSTARCH and HOSTOS which are exported from the top-level
+    Makefile should be used
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:31 2009 -0500
+
+    gen_eth_addr: Use POSIX rand() and srand()
+
+    Replace random()/srandom() use with rand()/srand() to support
+    compilation with the mingw toolchain.  The rand()/srand() functions are
+    generally more common and are functionally equivalent to the original
+    random()/srandom() calls.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 24d2ae5e9debe4b75151a55251031a14477fa875
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:28 2009 -0500
+
+    elf.h: Use stdint.h to provide standard typedefs for WIN32
+
+    The original code provided an incomplete set of typedefs for WIN32
+    compiles and replicated the standard typedefs that are already
+    provided by stdint.h
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:27 2009 -0500
+
+    common/Makefile: Conditionally compile env_embedded.o
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:26 2009 -0500
+
+    Makefile: Add removal of *.exe files to clean target
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Mar 13 18:54:25 2009 -0500
+
+    Makefile: Make autoconf.mk a dependency of the depend target
+
+    The original code did not generate autoconf.mk until after some targets
+    dependencies had already been calculated, for example the directories in
+    the SUBDIRS variable
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
+Author: unsik Kim <donari75@gmail.com>
+Date:  Wed Feb 25 11:31:24 2009 +0900
+
+    mflash: Initial mflash support
+
+    Mflash is fusion memory device mainly targeted consumer eletronic and
+    mobile phone.
+    Internally, it have nand flash and other hardware logics and supports
+    some different operation (ATA, IO, XIP) modes.
+
+    IO mode is custom mode for the host that doesn't have IDE interface.
+    (Many mobile targeted SoC doesn't have IDE bus)
+
+    This driver support mflash IO mode.
+
+    Followings are brief descriptions about IO mode.
+
+    1. IO mode based on ATA protocol and uses some custom command. (read
+       confirm, write confirm)
+    2. IO mode uses SRAM bus interface.
+
+    Signed-off-by: unsik Kim <donari75@gmail.com>
+
+commit 200779e3e2a9aeda7030b171a8c39d7797019917
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Fri Apr 3 11:53:01 2009 +0200
+
+    Rename common ns16550 constants with UART_ prefix to prevent conflicts
+
+    Fix problems introduced in commit
+    7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
+    diagnosis functions for inka4x0] which redefined MSR_RI which is
+    already used on PowerPC systems.
+
+    Also eliminate redundant definitions in ps2mult.h. More cleanup will
+    be needed for other redundant occurrences though.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 99067b08f4a0ce20ff337a35211239f334d8f451
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Wed Apr 1 15:33:24 2009 -0500
+
+    Noisily disable the legacy NAND subsystem.
+
+    Legacy NAND is marked for feature removal after April 2009 (i.e. this
+    upcoming release). There are still several boards that reference it
+    (though many do so only for disk-on-chip support which has been silently
+    disabled for a while now). These boards will now fail to build
+    with #error, though the code is still there if the user removes #error.
+
+    The plan is to remove the code outright in the next release, along with
+    any board code that refers to it (such as board/esd/common/auto_update.c).
+
+    Also, remove the legacy NAND API description from README.nand.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
+Author: apgmoorthy <moorthy.apg@samsung.com>
+Date:  Fri Mar 27 14:45:23 2009 +0530
+
+    Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
+
+    Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
+    However, u-boot image for apollon board is 195KB making the board
+    unbootable with OneNAND.
+
+    Fix ipl to read CONFIG_SYS_MONITOR_LEN.
+    CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
+
+    Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
+    Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 74de7aefd79690bae8cf5a5120f5962d444be089
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Apr 1 23:34:12 2009 +0200
+
+    Add "source" command; prepare removal of "autoscr" command
+
+    According to the doc/feature-removal-schedule.txt, the "autoscr"
+    command will be replaced by the "source" command in approximately 6
+    months from now.
+
+    This patch prepares this change and starts a 6 month transition
+    period as follows:
+
+    - The new "source" command has been added, which implements exactly
+      the same functionlaity as the old "autoscr" command before
+    - The old "autoscr" command name is kept as an alias for compatibility
+    - Command sequences, script files atc. have been adapted to use the
+      new "source" command
+    - Related environment variables ("autoscript", "autoscript_uname")
+      have *not* been adapted yet; these will be renamed resp. removed in
+      a separate patch when the support for the "autoscr" command get's
+      finally dropped.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Apr 2 17:31:09 2009 +0200
+
+    Add "GPL cleanup" task to feature-removal-schedule.txt
+
+    Announce removal of all non-GPL or GPL-incompatible files
+    after August 2009.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit d9596ffbdc79cea285010b67dd20a4618303f624
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Apr 2 12:51:28 2009 -0400
+
+    sf: stmicro: dont send 4 bytes when reading status register
+
+    I can't find anywhere in the datasheet that says the status register needs
+    3 dummy bytes sent to it before being able to read back the first real
+    result.  Tests on a Blackfin board show that after writing the opcode, the
+    status register starts coming back immediately.  So only write out the
+    read status register opcode before polling the result.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Jason McMullan <mcmullan@netapp.com>
+    CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Apr 2 08:11:31 2009 -0400
+
+    sf: set common timeouts in seconds, not milliseconds
+
+    Since timeouts are only hit when there is a problem in the system, we
+    don't want to prematurely timeout on a functioning setup.  Thus having
+    low timeouts (in milliseconds) doesn't gain us anything in the production
+    case, but rather increases likely hood of causing problems where none
+    otherwise exist.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Apr 2 06:51:49 2009 -0400
+
+    sf: stmicro: use common page timeout define
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Mar 28 06:41:09 2009 -0400
+
+    sf: always read 5 bytes for the idcode
+
+    Some SPI flash drivers like to have extended id information available
+    (like the spansion flash), so rather than making it re-issue the ID cmd
+    to get at the last 2 bytes, have the common code read 5 bytes rather than
+    just 3.  This also matches the Linux behavior where it always reads 5 id
+    bytes from all flashes.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+    CC: Mingkai Hu <Mingkai.hu@freescale.com>
+
+commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Mar 27 16:34:21 2009 -0400
+
+    sf: stmicro: drop redundant id read
+
+    The common SPI flash code reads the idcode and passes it down to the SPI
+    flash driver, so there is no need to read it again ourselves.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+    CC: Jason McMullan <mcmullan@netapp.com>
+    CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit 1c5874374e091b4bb62917c519861f7682fe066e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Mar 27 19:27:58 2009 -0400
+
+    sf: add driver for SST flashes
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Mar 23 23:03:58 2009 -0400
+
+    sf: drop DEBUG defines
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jan 4 07:44:07 2009 +0100
+
+    mtd: add some at45 spi flash support
+
+     - AT45DB321D
+     - AT45DB161D
+     - AT45DB081D
+     - AT45DB041D
+     - AT45DB021D
+     - AT45DB011D
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
+Author: Mingkai Hu <Mingkai.hu@freescale.com>
+Date:  Tue Mar 31 14:09:41 2009 +0800
+
+    mtd: SPI Flash: Support the Spansion Flash
+
+    Add MTD SPI Flash support for S25FL008A, S25FL016A,
+    S25FL032A, S25FL064A, S25FL128P.
+
+    Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 40587701924aa0afc86b3840421b4cc6de42c748
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Mar 30 20:56:45 2009 -0400
+
+    Blackfin: force all boards to HZ of 1000
+
+    Since the Blackfin timer code requires HZ to be 1000, barf on any board
+    that tries to use a different value.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f4032d2eec9d71a59c6c724671e577f67a76839b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Mar 27 21:07:45 2009 -0400
+
+    Blackfin: bf533-stamp: drop old spi flash driver
+
+    Now that the common SPI flash code supports all the flashes, we can stop
+    using the old driver.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Mar 26 15:42:12 2009 -0400
+
+    Blackfin: add BF538/BF539 SPI portmux handling
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Mar 23 22:36:10 2009 -0400
+
+    Blackfin: do not delay on output bytes
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Mar 23 22:17:27 2009 -0400
+
+    Blackfin: drop newline from OTP help
+
+    Looks like I accidentally added a newline to the OTP help when merging and
+    older change.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d3c38d96b991d641a33f7748130dae008563cdc9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Mar 22 23:43:31 2009 -0400
+
+    Blackfin: convert bfin_sdh to legacy mmc
+
+    The Blackfin SDH controller is still using the legacy framework, so update
+    the driver to use the renamed functions.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d248cfb2d940b742f6bfdba9b832a3df96da3101
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Feb 22 16:30:38 2009 -0500
+
+    Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ad9073211ca9e62162a39851e082b8d07a662fb6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Feb 13 17:10:58 2009 -0500
+
+    Blackfin: fix crash when booting from external memory
+
+    When testing a u-boot binary that hasn't been booted from the bootrom, we
+    have to make sure the bootstruct structure has sane storage space. If we
+    don't, the initcode will crash when it tries to dereference an invalid
+    pointer.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 84a9dda324c3faa56be14449d7519b993d9397a9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:32:52 2008 -0400
+
+    Blackfin: bf518f-ezbrd: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:30:48 2008 -0400
+
+    Blackfin: bf526-ezbrd: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 21:25:33 2008 -0400
+
+    Blackfin: bf538f-ezkit: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d9a5d113b93583c984711127ab8503e136ed1e4a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 20:59:12 2008 -0400
+
+    Blackfin: bf527-ezkit: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 05:05:42 2008 -0400
+
+    Blackfin: bf548-ezkit: new board port
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 67b89c79e72fe86b0ea0199425d880630beb95d8
+Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
+Date:  Tue Mar 3 14:23:59 2009 +0100
+
+    libfdt: Fix C++ compile-time cast error on gnu 4.2.1
+
+    Allow the inclusion of libfdt.h in C++ source.
+
+    Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
+    Acked-by: David Gibson <david@gibson.dropbear.id.au>
+
+commit 13d93f38e86818739317b0206d597265cf9e675e
+Author: Emil Medve <Emilian.Medve@Freescale.com>
+Date:  Mon Feb 23 10:43:36 2009 -0600
+
+    Fix a possible overflow case detected by gcc 4.3.2
+
+    .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
+    .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
+
+    Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
+
+commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
+Author: David Gibson <david@gibson.dropbear.id.au>
+Date:  Fri Feb 6 14:03:24 2009 +1100
+
+    libfdt: Rework/cleanup fdt_next_tag()
+
+    Currently, callers of fdt_next_tag() must usually follow the call with
+    some sort of call to fdt_offset_ptr() to verify that the blob isn't
+    truncated in the middle of the tag data they're going to process.
+    This is a bit silly, since fdt_next_tag() generally has to call
+    fdt_offset_ptr() on at least some of the data following the tag for
+    its own operation.
+
+    This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
+    verify the data between its starting offset and the offset it returns
+    in nextoffset.  This simplifies fdt_get_property() which no longer has
+    to verify itself that the property data is all present.
+
+    At the same time, I neaten and clarify the error handling for
+    fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
+    a tag value in some circumstances - which almost none of the callers
+    checked for.  Also, fdt_next_tag() could return FDT_END either because
+    it encountered an FDT_END tag, or because it reached the end of the
+    structure block - no way was provided to tell between these cases.
+
+    With this patch, fdt_next_tag() always returns FDT_END with a negative
+    value in nextoffset for an error.  This means the several places which
+    loop looking for FDT_END will still work correctly - they only need to
+    check for errors at the end.  The errors which fdt_next_tag() can
+    report are:
+       - -FDT_ERR_TRUNCATED if it reached the end of the structure
+          block instead of finding a tag.
+
+       - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
+              tag data couldn't be verified with fdt_offset_ptr().
+
+    This patch also updates the callers of fdt_next_tag(), where
+    appropriate, to make use of the new error reporting.
+
+    Finally, the prototype for the long gone _fdt_next_tag() is removed
+    from libfdt_internal.h.
+
+    Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
+
+commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
+Author: David Gibson <david@gibson.dropbear.id.au>
+Date:  Fri Feb 6 14:01:56 2009 +1100
+
+    libfdt: Rework fdt_next_node()
+
+    Currently fdt_next_node() will find the next node in the blob
+    regardless of whether it is above, below or at the same level in the
+    tree as the starting node - the depth parameter is updated to indicate
+    which is the case. When a depth parameter is supplied, this patch
+    makes it instead terminate immediately when it finds the END_NODE tag
+    for a node at depth 0.  In this case it returns the offset immediately
+    past the END_NODE tag.
+
+    This has a couple of advantages.  First, this slightly simplifies
+    fdt_subnode_offset(), which no longer needs to explicitly check that
+    fdt_next_node()'s iteration hasn't left the starting node. Second,
+    this allows fdt_next_node() to be used to implement
+    _fdt_node_end_offset() considerably simplifying the latter function.
+
+    The other users of fdt_next_node() either don't need to iterate out of
+    the starting node, or don't pass a depth parameter at all. Any
+    callers that really need to iterate out of the starting node, but keep
+    tracking depth can do so by biasing the initial depth value.
+
+    This is a semantic change, but I think it's very unlikely to break any
+    existing library users.
+
+    Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
+
+commit c123098035be8bae3859bbfbd06861f197c07631
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Tue Mar 31 17:49:36 2009 -0500
+
+    mpc83xx: Set guarded bit on BAT that covers the end of the address space
+
+    The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
+    address space; however, not all of this space is covered by a device.  In
+    particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
+    at the far end of the address space.
+
+    In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
+    some circumstances, this leads to the CPU speculatively loading from
+    0xfffffff8 if p is NULL.  This leads to a machine check.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+    continuation to the remaining mpc83xx boards that suffer from the same problem.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Mon Mar 30 14:28:05 2009 -0500
+
+    rtc: remove broken rtc_read and rtc_write declarations
+
+    commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
+    EPSON)" introduces the following build error on boards configuring e.g,
+    the ds1374 rtc:
+
+    Configuring for MPC837XEMDS board...
+    ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
+    /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
+    ds1374.c:104: error: conflicting types for 'rtc_write'
+    /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
+
+    this reverts the erroneous chunk.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+    Acked-by: Detlev Zundel <dzu@denx.de>
+    CC: Detlev Zundel <dzu@denx.de>
+    CC: Andreas Pfefferle <ap@denx.de>
+
+commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Mar 31 17:58:13 2009 -0500
+
+    85xx/86xx: Ensure MP boot page is not used
+
+    We had a bug on 86xx in which the boot page used to bring up secondary
+    cores was being overwritten and used for the malloc region in u-boot.
+
+    We need to reserve the region of memory that the boot page is going to
+    be put at so nothing uses it.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit c840d26c752141b94bbc24ac748ddd45752a955a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Mar 31 23:11:05 2009 -0500
+
+    85xx: Introduce determine_mp_bootpg() helper.
+
+    Match determine_mp_bootpg() that was added for 86xx.  We need this to
+    address a bug introduced in v2009.03 with 86xx MP booting. We have to
+    make sure to reserve the region of memory used for the MP bootpg() so
+    other u-boot code doesn't use it.
+
+    Also added a comment about how cpu_reset() is dealing w/an errata on
+    early 85xx MP HW.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 7649a590b53ee548f41428bf20780f74ce9fc099
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Mar 31 23:02:38 2009 -0500
+
+    86xx: Cleanup MP support
+
+    * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
+    * Introduce determine_mp_bootpg() helper.  We'll need this to address a
+      bug introduced in v2009.03 with 86xx MP booting. We have to make sure
+      to reserve the region of memory used for the MP bootpg() so other
+      u-boot code doesn't use it.
+    * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
+      allow cmd_mp.c to build and work. In the future we should look at
+      implementing all these functions. This could be common w/85xx if we
+      use spin tables on 86xx.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Mar 31 18:38:37 2009 -0500
+
+    mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
+
+    We're missing the board_lmb_reserve definitions that allow
+    cpu_mp_lmb_reserve to be called; this means that Linux
+    is free to reallocate reserved pages.  Linux currently boots
+    because we're getting lucky - the page we've reserved is
+    high enough in memory that it isn't allocated by Linux
+    while we still need it to be in existence.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Tue Mar 31 13:43:10 2009 +0200
+
+    NetStar: fix NAND
+
+    Fix NAND support broken during new NAND code merge. Move those few lines of
+    code to board/netstar/netstar.c
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
+Author: Jens Scharsig <esw@bus-elektronik.de>
+Date:  Tue Mar 31 08:18:29 2009 +0200
+
+    soft_i2c.c compiler/linker error
+
+    This patch fix the compiler/linker errors
+
+    common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
+    common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
+
+    if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
+    uesd/undef (wrong define order)
+
+    and
+
+    removes additional empty lines
+
+    Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
+
+commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Fri Mar 27 17:02:45 2009 -0400
+
+    MPC85xx: Add MPC8569MDS board support
+
+    This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
+    EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Fri Mar 27 17:02:44 2009 -0400
+
+    MPC85xx: Add MPC8569 CPU support
+
+    There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
+    LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
+    then invalidate it after LBCR bit 13 is set.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Mar 26 17:01:49 2009 -0400
+
+    MPC85xx: Load and enable QE microcode patch in IRAM
+
+    For the silicon which doesn't have ROM support in QE, it always needs to load
+    a pre-built ucode binary to IRAM so that QE can work.
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
+
+commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 19 09:16:10 2009 -0500
+
+    85xx: Add support for additional e500mc features
+
+    * Enable backside L2
+    * e500mc no longer has timebase enable in HID (moved to CCSR register)
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Sat Mar 14 12:48:30 2009 +0800
+
+    fsl-ddr: add the DDR3 SPD infrastructure
+
+    - support mirrored DIMMs, not support register DIMMs
+    - test passed on P2020DS board with MT9JSF12872AY-1G1D1
+    - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
+
+commit 6a8197836702991468cead5ead073f589e2623ad
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Sat Mar 14 12:48:19 2009 +0800
+
+    fsl-ddr: Fix two bugs in the ddr infrastructure
+
+    1. wr_lat
+       UM said the total write latency for DDR2 is equal to
+       WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
+       so, the WR_LAT = CL - 1;
+    2. rd_to_pre
+       we missed to add the ADD_LAT for DDR2 case.
+
+    Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit 540dcf1cb86961e11aa92c47671f27762c581d8c
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 26 01:34:39 2009 -0500
+
+    83xx: Use common LSDMR defines from asm/fsl_lbc.h
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b0fe93eda69721aef1fdef576164b668fad83bbd
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 26 01:34:38 2009 -0500
+
+    85xx: Use common LSDMR defines from asm/fsl_lbc.h
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 0088c298f0eeb90ec001f744e9959dea83dd563a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Mar 26 01:34:37 2009 -0500
+
+    Add LSDMR (SDRAM Mode Register) definition on localbus
+
+    The masks for various bit defines of LSDMR are common and thus we can
+    define them in one place rather than replicating them in each config.h
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 89c00fb15859213788f0ad089934c376fb356099
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 30 18:58:41 2009 +0200
+
+    OMAP: use {read,write}l to access timer registers
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 81472d893fa565c9d300928a40e504a689bde131
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 30 18:58:41 2009 +0200
+
+    OMAP: rename timer divisor
+
+    Divisor field is called PTV not PVT.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit fe672d60b2a8c9e803596ba4533fa1776015551d
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 30 18:58:40 2009 +0200
+
+    OMAP: reindent timer code
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:40 2009 +0200
+
+    s3c2410: move nand driver to drivers/mtd/nand
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit d3b635774194404bcd424f6b376419bce22076ad
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:40 2009 +0200
+
+    s3c24x0: move i2c driver to drivers/i2c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:39 2009 +0200
+
+    s3c24x0: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 942ba9969b9efa25f816c238861ecb339c54ed73
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:39 2009 +0200
+
+    davinci: move i2c driver to drivers/i2c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:39 2009 +0200
+
+    davinci: move nand driver to drivers/mtd/nand
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit d3e55d0774a180c1837bd7ddec464015e883bd86
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Mon Mar 30 18:58:38 2009 +0200
+
+    imx: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Mar 30 00:31:36 2009 +0200
+
+    inka4x0: Use proper accessor macros for memory mapped registers.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit e979e85fd39b06436922bb4d6bb5fafcbc775182
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Mar 30 00:31:35 2009 +0200
+
+    inka4x0: Add hardware diagnosis and RTC in configuration.
+
+    This patch adds the board specific communication routines needed by
+    the external 4543 RTC.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Signed-off-by: Andreas Pfefferle <ap@denx.de>
+
+commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Mar 30 00:31:34 2009 +0200
+
+    inka4x0: Add hardware diagnosis functions for inka4x0
+
+    This patch adds advanced diagnosis functions for the inka4x0 board.
+
+    Signed-off-by: Andreas Pfefferle <ap@denx.de>
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 04e11cf383ff6231535fd981023bb1306b2133d4
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Mar 30 00:31:33 2009 +0200
+
+    rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Signed-off-by: Andreas Pfefferle <ap@denx.de>
+
+commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Mon Mar 30 00:31:32 2009 +0200
+
+    drivers/twserial: Add protocol driver for "three wire serial" interface.
+
+    This pretty unintelligent interface is used on some RTC chips.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:42 2009 +0200
+
+    arm720t/clps7111: move serial driver to drivers/serial
+
+    add CONFIG_CLPS7111_SERIAL to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 6790c55704531eb98f76b51d50e0f73d19fa2988
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:42 2009 +0200
+
+    lpc2292: move serial driver to drivers/serial
+
+    add CONFIG_LPC2292_SERIAL to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 176a600d0ecdaccbac483d2ba992d0119f853119
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:42 2009 +0200
+
+    ks8695: move serial driver to drivers/serial
+
+    add CONFIG_KS8695_SERIAL to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:42 2009 +0200
+
+    s3c64xx: move usb driver to drivers/usb
+
+    add CONFIG_USB_S3C64XX to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:41 2009 +0200
+
+    imx31: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:41 2009 +0200
+
+    netarm: move serial driver to drivers/serial
+
+    add CONFIG_NETARM_SERIAL to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 412ab705888742add435dd6ffc2e8bda14962235
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:41 2009 +0200
+
+    sa1100: move serial driver to drivers/serial
+
+    add CONFIG_SA1100_SERIAL to activate the driver
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b2368754a9202225fd072e159fb78da7d2cdb623
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:41 2009 +0200
+
+    s3c44b0: extract cache from cpu.c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 40fd626223eae5363719bcb9a6896f08ceeee90a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:41 2009 +0200
+
+    s3c44b0: move serial driver to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:40 2009 +0200
+
+    s3c44b0: move rtc driver to drivers/rtc
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 50f601cca8985615f9e3de4c34887448ade8a64b
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:40 2009 +0200
+
+    s3c44b0: move i2c driver to drivers/i2c
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 29 23:01:36 2009 +0200
+
+    s3c4510b: move specific code to soc directory
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 04531f3c11c693dc54924f82c41979d960309c9d
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Wed Mar 25 23:43:58 2009 +0100
+
+    NetStar: add RTC support
+
+    Add RTC support.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Wed Mar 25 23:43:50 2009 +0100
+
+    NetStar: use generic flash driver
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 16 23:31:20 2009 +0100
+
+    NetStar: update crcit utility
+
+    Make crc32 function to match its prototype. Use more meaningful identifiers.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 23 17:46:27 2009 +0100
+
+    Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 88685b5f62274167ad2ba8a58e108d89ff71955b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Mar 29 00:58:16 2009 +0100
+
+    VCMA9: fix compile errors
+
+    Fix these:
+    cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
+    cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Mar 29 00:54:21 2009 +0100
+
+    ARM: fix warning: 'print_eth' defined but not used
+
+    This warning got issued for all ARM systems that don't have
+    CONFIG_CMD_NET enabled.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit fd88d91a639ce41b825c8d50dc2182050e98fe53
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 23 18:16:34 2009 +0100
+
+    cs8900 compile fix
+
+    cs8900.c: In function 'eth_init':
+    cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
+    cs8900.c:165: error: invalid operands to binary <<
+    cs8900.c:166: error: invalid operands to binary <<
+    cs8900.c:167: error: invalid operands to binary <<
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit d2567be915036720693f3ddd00c39b5b4d86fb8d
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Mar 28 20:16:16 2009 +0100
+
+    Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
+
+    ...and some other compile warnings.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Mar 28 16:17:29 2009 +0100
+
+    mpc8xx/ether.c: fix warning: unused variable 'bd'
+
+    Also minor coding style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Wed Mar 25 17:27:52 2009 +0100
+
+    command.c: Expose the core of do_help as _do_help to the rest of u-boot.
+
+    Other commands implementing subcommands can reuse this code nicely.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+    Signed-off-by: Andreas Pfefferle <ap@denx.de>
+
+commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Tue Mar 24 18:02:33 2009 +0100
+
+    mpc5xxx: Add structure definition for several more register blocks.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 739b0e594677a0676577bc95db4495a5563fc7f8
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Fri Mar 27 15:03:55 2009 +0100
+
+    MAINTAINERS: Add entry for 'inka4x0' board.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit e55ecec45340755ef47cbbb13fb35ceed60eb115
+Author: Detlev Zundel <dzu@denx.de>
+Date:  Fri Mar 27 15:03:54 2009 +0100
+
+    MAINTAINERS: Keep list sorted.
+
+    Signed-off-by: Detlev Zundel <dzu@denx.de>
+
+commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Mar 26 11:17:41 2009 -0400
+
+    karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
+
+    The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 76756e41cde0a617e781a604cc47dfaef63697cd
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 26 07:33:59 2009 +0100
+
+    ppc: cleanup compiler errors/warnings
+
+    Current u-boot top of tree builds with warnings/errors for
+    the following boards:
+
+    ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
+    RPXClassic debris PN62
+
+    following patch solves this.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 26 16:14:13 2009 +0100
+
+    ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
+
+    This patch fixes a bug in the Sequoia TLB init code to reconfigure
+    the correct TLB (boot space) after running from RAM. This bug was
+    introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
+    [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
+    TLB in the Sequoia init.S file.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit e2b66fe453a3679f807b37fc5923d89214302764
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Mar 26 10:00:57 2009 +0100
+
+    ads5121: enable instruction cache
+
+    Enabling the instruction cache significantly accelerates U-Boot
+    operations like CRC checking, image uncompression, etc.
+
+    Kudos to Andrea Scian for pointing out.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 33e88c557b29c84c52039ba05993fa70fe62afe3
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Sun Mar 22 22:55:45 2009 -0400
+
+    mpc5200: suppress printf until console initialized
+
+    On boards which have the environment in eeprom, i2c_init() is called
+    before the console and RAM are initialized.
+    Suppress printfs until the console is initialized.
+
+    Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
+    Acked-by: Heiko Schocher <hs@denx.de>
+
+commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Wed Mar 25 11:36:50 2009 +0100
+
+    ARM: Add the imx31_phycore_eet board to MAKEALL
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+
+commit 917cfc70c18b74fa8a80189bdce8395199fa8360
+Author: Nishanth Menon <nm@ti.com>
+Date:  Wed Mar 25 22:13:56 2009 +0100
+
+    OMAP3:Beagle: Enable mtdparts
+
+    http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
+    provides a flexible way to create and maintain u-boot mtd
+    partitions. This allows commands such as "nand erase fs"
+    to work and the user no longer needs to decode the absolute
+    nand offsets. This patch enables this function for beagleboard
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 4de1a5daab079ddc8ce1274144700203d692105c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Feb 22 16:26:35 2009 -0500
+
+    Blackfin: bf537-stamp: split post code out into dedicated post.c
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 5e8f245743ed14c89e495ba2c027703db9813160
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:51:56 2008 -0400
+
+    Blackfin: add support for S25FL128 parts
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bf1e028bf3eab1d702fa0627cade4460688f3913
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:51:23 2008 -0400
+
+    Blackfin: overhaul SPI flash handling to speed things up
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit efcc08cededa2168b96f12a22a5872340880d334
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:51:05 2008 -0400
+
+    Blackfin: add support for SST SPI flashes
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:50:10 2008 -0400
+
+    Blackfin: add hack for crappy m25p80
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Jan 21 20:47:12 2009 -0500
+
+    Blackfin: bf537-stamp: increase monitor size
+
+    The new jffs2 code pushed the code size just over the limit, so increase
+    the limit a bit more.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f82caaccc87e1f76448ff42a6b930e59797e4f65
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Dec 8 16:16:11 2008 -0500
+
+    Blackfin: bf537-stamp: bump default SCLK up to 125MHz
+
+    Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
+    increase the speed of SCLK to 125MHz rather than 100MHz.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 751e54c3b77311b720b794813cce20546f288ada
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:44:14 2008 -0400
+
+    Blackfin: bf537-stamp: rewrite MAC-in-flash handling
+
+    Use the common net eth functions to setup the env/global data with the MAC
+    address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Dec 9 13:47:39 2008 -0500
+
+    Blackfin: add clkin_hz= to default kernel command line for ADI boards
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 23:49:13 2008 -0400
+
+    Blackfin: bf533-stamp: bump up default clocks
+
+    Since the hardware can handle it, bump the default clocks from 80mhz SCLK
+    and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:40:22 2008 -0400
+
+    Blackfin: bf533-stamp: rewrite startup LED notifications
+
+    Again, don't clobber pins that we aren't actually using, and use the common
+    LED framework rather than our own hob-job-but-not-really-working.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cf6f469e2730fc8ab3523808b828be000d6eee77
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 1 09:09:48 2008 -0400
+
+    Blackfin: unify common ADI board settings
+
+    Rather than duplicate the same ADI settings in every ADI board, create a
+    common ADI config header and have all ADI boards start using that. This
+    will also make merging the ~10 boards I have to forward port a lot easier.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 196c74311f394c6eb08bd9ab07a35671299b9851
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Tue Mar 3 09:05:53 2009 +0900
+
+    Reduce OneNAND IPL common code
+
+    OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
+    bootloader, but it's common code used about 300~400 bytes. So board
+    specific codes, such as lowlevel_init, can't has enough code. It make
+    a difficult to implement OneNAND IPL.
+
+    his patch make this common code as small as possible. and give
+    lowlevel_init can have more codes.
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 16f2f5a351004129e79e79816697a367fd9e5446
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:24 2009 +0100
+
+    Add multi-chip NAND support for the TQM8548 modules
+
+    This patches configures the NAND UPM-FSL driver with multi-chip
+    support for the Micron MT29F8G08FAB NAND flash memory on the
+    TQM8548 modules.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 33846df28fa1f4cf96a96c18142d48d813caa892
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:23 2009 +0100
+
+    Add wait flags to support board/chip specific delays
+
+    The NAND flash on the TQM8548_BE modules requires a short delay after
+    running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
+    requires a further short delay after writing out a buffer. Normally the
+    R/B pin should be checked, but it's not connected on the TQM8548_BE.
+    The corresponding Linux FSL UPM driver uses similar delay points at the
+    same locations. To manage these extra delays in a more general way, I
+    introduced the "wait_flags" field allowing the board-specific driver to
+    specify various types of extra delay.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:22 2009 +0100
+
+    Add support for TQM-specific chip select logic to FSL-UPM
+
+    For the NAND chips on the TQM8548 modules, a special chip-select logic is
+    used. It uses dedicated address lines to be set via UPM machine address
+    register (mar). This patch adds such support to the FSL-UPM driver.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:21 2009 +0100
+
+    Add multi chip support to the FSL-UPM driver
+
+    This patch adds support for multi-chip NAND devices to the FSL-UPM
+    driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
+    called with the argument "chip_nr" to allow testing the proper chip
+    select line. The NAND support of the MPC8360ERDK is updated as well.
+    No other boards are currently using the FSL UPM driver.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:20 2009 +0100
+
+    Enable multi chip support in the NAND layer
+
+    This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
+    Multi-chips devices are displayed as shown:
+
+      Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:58:33 2008 -0400
+
+    Blackfin: put memory into self-refresh before/after programming clocks
+
+    When initializing the core clocks, stick external memory into self-refresh.
+    This gains us a few cool things:
+     - support suspend-to-RAM with Linux
+     - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
+     - make sure settings are stable before flashing new version
+     - finally fully unify initialize startup code path between LDR/non-LDR
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:56:08 2008 -0400
+
+    Blackfin: do not program voltage regulator on parts that do not have one
+
+    Some newer Blackfins (like the BF51x) do not have an on-chip voltage
+    regulator, so do not attempt to program the memory as if it does.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0d4f24b70f7a979f58174f3eb271874950b551b6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 1 01:28:24 2008 -0400
+
+    Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
+
+    If the board config does not specify an explicit EBIU_SDBCTL value, set it
+    up with sane values based on other configuration options.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 3986e981f565c08f10c7e526af8cb518d741c349
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Dec 6 18:06:58 2008 -0500
+
+    Blackfin: handle reboot anomaly 432
+
+    Workaround anomaly 432:
+    The bfrom_SysControl() firmware function does not clear the SIC_IWR1
+    register before executing the PLL programming sequence.  Therefore, any
+    interrupt enabled in the SIC_IWR1 register prior to the call to
+    bfrom_SysControl() can prematurely terminate the idle sequence required
+    for the PLL to relock properly. SIC_IWR0 is properly handled.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7e1d212b6da492c6ea32c62af92e185284f41291
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 18 04:04:49 2008 -0400
+
+    Blackfin: kill off LDR jump block
+
+    The Boot ROM uses EVT1 as the entry point so set that rather than having
+    to use a tiny jump block in the default EVT1 location.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a75fa148d60b1975403441e45565621bba50d2d9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jan 6 10:00:48 2009 -0500
+
+    Blackfin: simplify symbol_lookup() a bit
+
+    No need to skip a byte as the symbol table handles this.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Feb 7 05:43:21 2009 -0500
+
+    Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 58130f8920151d9e8942bbdf3388f2defb47e415
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Feb 7 05:41:17 2009 -0500
+
+    Blackfin: drop SPORT_TX read helper macros
+
+    The SPORT_TX registers cannot be read (the hardware will trigger an error),
+    so drop the read helper macros.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Feb 7 05:25:35 2009 -0500
+
+    Blackfin: unify duplicate CPU port definitions
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 744fd240d181b0b05b1436e1b655c9a62526c752
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Feb 6 00:59:50 2009 -0500
+
+    Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
+
+    With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
+    are no longer used/needed.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 45c48953e8a4038bd49c46813fcff5a207867ae4
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 04:01:26 2008 -0400
+
+    Blackfin: print out Flash: before checking it
+
+    If there is some problem in the flash init/checking code, it's nicer to see
+    the message "Flash:" before crashing.  This way the source of the problem
+    is a bit more straightforward.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1c7a79a04eb916f685f7275520b5eea6968a1559
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 15:33:09 2008 -0400
+
+    Blackfin: safely flush data caches when in writeback mode
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c06f2b13022703611bc3e512bd34f9014a46f448
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 13:21:48 2008 -0400
+
+    Blackfin: update lockbox api according to latest documentation
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:49:06 2008 -0400
+
+    Blackfin: mark bfin_reset static
+
+    The function is only used locally, so mark it static.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 974473caa732f63312687ef2bd2d22dad8e99b9a
+Author: Sonic Zhang <Sonic.Zhang@analog.com>
+Date:  Fri Mar 20 19:28:20 2009 -0400
+
+    Blackfin: spi: there is no PORTJ_FER MMR on BF537
+
+    Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
+    then there is no PORTJ_FER register for us to worry about.
+
+    Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e82b762f293debc53c5afa90f37264f6b07520f9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Mar 17 13:58:23 2009 -0400
+
+    Blackfin: fix jtag console tstc
+
+    The jtag tstc operation was checking the hardware to see if data is
+    available from it (which is fine for the jtag getc operation), but the
+    higher layers need to know whether any data is available.  Since we have
+    to read up to 4 bytes at a time from the hardware, the higher layers need
+    to know they can consume the cached bytes as well.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bc683f58b1f1d8d20546fe019483967a51a49df1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Feb 22 16:23:41 2009 -0500
+
+    Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Feb 22 16:02:27 2009 -0500
+
+    Blackfin: unify net-related init code
+
+    Unify all of the net-related init code in the common Blackfin board init
+    code to clean up the ifdef mess a bit.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 18 12:51:48 2009 -0500
+
+    Blackfin: fix SWRST/SYSCR register sizes
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a9d6777d39154978b9ef9c682b2627a3480b194c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 18 12:51:31 2009 -0500
+
+    Blackfin: update anomaly lists
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Mar 19 18:31:38 2009 +0100
+
+    avr32: fix cacheflush.h location introducted by d8f2aa3298610b
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
+Author: Eric Schumann <E.Schumann@phytec.de>
+Date:  Sat Mar 21 09:59:34 2009 -0400
+
+    Make flash protection work, when the environment is in EEPROM
+
+    On the pcm030 the environment is located in the onboard EEPROM. But we want
+    to handle flash sector protection in a safe manner. So we must read the
+    unlock environment variable from EEPROM instead from flash.
+
+    This patch is required as long the evironment is saved into the EEPROM.
+
+    Stefan: Additional change as suggested by Wolfgang, use bigger char array
+    (instead of 4).
+
+    Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
+    Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
+    Acked-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Sat Mar 21 11:17:56 2009 -0400
+
+    Add define for mpc5200 CDM_CLK_ENA
+
+    Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
+
+commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
+Author: Nicolas Ferre <nicolas.ferre@atmel.com>
+Date:  Sun Mar 22 14:48:16 2009 +0100
+
+    at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
+
+    AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
+
+    The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
+    It is essentially the same, with a few minor differences.
+
+    Here is the chip page on Atmel website:
+    http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
+
+    Signed-off-by: Justin Waters <justin.waters@timesys.com>
+    Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 118d168035cc93f586da4812c89cb153eb9f4243
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 22 14:28:14 2009 +0100
+
+    cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 22 14:28:13 2009 +0100
+
+    cmc_pu2: fix misc_init_r prototype
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 53158aea995221706b42c7bad9f717b31ae20414
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jan 11 03:32:01 2009 +0100
+
+    at91sam9xeek: fix soc name
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 74c076d6c33d6d42ab065541a38383587879e7b7
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Mar 22 10:22:34 2009 +0100
+
+    at91sam9/at91cap: move nand drivers to drivers/mtd/nand
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 163966087d62680547f188a93c61d01c8155254e
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:08:01 2009 +0100
+
+    atmel/at91/boards: compile dataflash partition only when dataflash is
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:08:00 2009 +0100
+
+    at91sam9/at91cap: move common macb initialisation to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f3f91f886bc8927fd692ac411b7423a87ffec532
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:08:00 2009 +0100
+
+    at91sam9/at91cap: move common usb host initialisation to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:08:00 2009 +0100
+
+    at91sam9/at91cap: move common led management to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7ebafb7ec1a0285af8380623c009576f92583b98
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:07:59 2009 +0100
+
+    at91sam9/at91cap: move common spi initialisation to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Mar 21 21:07:59 2009 +0100
+
+    at91sam9/at91cap: move common serial initialisation to cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit e60beb13cf0135dc71c541021487b5ccc4d269cb
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Mar 21 22:04:41 2009 +0100
+
+    Prepare 2009.03
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
+Author: Vivek Kutal <vivek.kutal@azingo.com>
+Date:  Mon Feb 23 21:35:11 2009 +0530
+
+    Replaced endpoint numbers with appropriate macros in usbtty.c.
+
+    Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit faac4fd852e39cb1d7a740801b060e41aeacef1f
+Author: Michael Lawnick <ml.lawnick@gmx.de>
+Date:  Thu Mar 19 10:06:41 2009 +0100
+
+    UBIFS: Missing offset relocation for compressor 'none'
+
+    On systems where U-Boot is linked to another address than it really lays
+    (e.g. backup image), calls via function pointers must be fixed with a
+    '+= gd->reloc_off'.
+    This was not done for none_compr in ubifs_compressors_init() what leads
+    to system crash on ubifsmount command.
+
+    Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit ce6d0c8de031f345bde745f3b855082adf1c4e45
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 19 15:35:50 2009 +0100
+
+    UBIFS: Add UBIFS commands
+
+    This patchset adds these UBIFS related commands:
+
+    - ubifsmount
+      Mount an UBIFS volume
+
+    - ubifsls
+      List a directory of the mounted UBIFS volume
+
+    - ubifsload
+      Load a file from the mounted UBIFS volume to memory
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 19 15:35:05 2009 +0100
+
+    UBIFS: Implement read-only UBIFS support in U-Boot
+
+    The U-Boot UBIFS implementation is largely a direct copy from the current
+    Linux version (2.6.29-rc6). As already done in the UBI version we have an
+    "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
+    ...). This makes it possible to use the original Linux code with very
+    little changes. And by this we can better update to later Linux versions.
+
+    I removed some of the Linux features that are not used in the U-Boot
+    version (e.g. garbage-collection, write support).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    CC: Artem Bityutskiy <dedekind@infradead.org>
+    CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
+
+commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 19 15:34:56 2009 +0100
+
+    Add LZO decompressor support
+
+    This patch adds LZO decompression support to U-Boot. It is needed for
+    the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
+    decompressor. Since we only support read-only in UBIFS, only the
+    decompressor is needed.
+
+    All this is copied with minor changes from the current Linux kernel
+    version (2.6.28-rc8).
+
+    This patch only implements this LZO decompressor support for PPC.
+    Other platforms using UBIFS will have to add the required
+    "include/asm/unaligned.h" as well. It should be fairly easy to copy this
+    from the Linux source tree as I have done it for PPC in this patch.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 68d7d65100e84df00bca971c114092731b441090
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 19 13:30:36 2009 +0100
+
+    Separate mtdparts command from jffs2
+
+    Currently the mtdparts commands are included in the jffs2 command support.
+    This doesn't make sense anymore since other commands (e.g. UBI) use this
+    infrastructure as well now. This patch separates the mtdparts commands from
+    the jffs2 commands making it possible to only select mtdparts when no JFFS2
+    support is needed.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Feb 25 12:11:15 2009 +0100
+
+    powerpc: Only use eth_getenv_enetaddr() if networking is enabled
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Tue Mar 17 10:06:40 2009 +0100
+
+    Add support for the digsy MTC board.
+
+    This is the InterControl custom device based on the MPC5200B chip.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit ff7dc067369e30066744f096995aef7d97574d15
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Feb 23 16:52:36 2009 +0100
+
+    powerpc: Fix compilation warning in board.c
+
+    Fix this warning:
+
+    board.c: In function 'board_init_r':
+    board.c:653: warning: unused variable 'i'
+    board.c:651: warning: unused variable 'e'
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Feb 23 16:42:51 2009 +0100
+
+    ppc4xx: Don't write the MAC address into the internal SoC registers
+
+    Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
+    addresses into the SoC registers instead.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:19 2009 +0100
+
+    ppc4xx: Use correct io accessors for esd 405/440 boards
+
+    This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
+    macros. Also volatile pointer references are replaced by the
+    new accessors.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:18 2009 +0100
+
+    ppc4xx: Use correct io accessors for esd 405 boards
+
+    This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
+    macros. Also volatile pointer references are replaced by the
+    new accessors.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit a59205d1519375d027f97a545ad642ab20fce6f8
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:17 2009 +0100
+
+    ppc4xx: Cleanup linker scripts of esd 4xx boards
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:16 2009 +0100
+
+    ppc4xx: Update TEXT_BASE for DASA_SIM boards
+
+    Fix building DASA_SIM boards by increasing U-Boot's size in flash.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 09db8f4de6805f1dde510c167f20e56a5405d29e
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:15 2009 +0100
+
+    ppc4xx: DU405 maintenance fix
+
+    -strip unused features
+    -fix resetting phy
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 75511b47ac2647be48218dbb93af05b21f404f67
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Feb 20 10:19:14 2009 +0100
+
+    ppc4xx: Abort autoboot only by space key on CPCI405 boards
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:14:56 2009 +1100
+
+    Add basic relocation to i386 port
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 8c63d47651f77d9fb887cad433370b866eb0a193
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:14:45 2009 +1100
+
+    Implement SC520 timers
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:14:32 2009 +1100
+
+    Factor out SC520 sub-features
+
+    Moved sub-features of the SC520 code which is currently selectively compiled
+    using #ifdef out of sc520.c into individual files selectively compiled via
+    the makefile
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:13:40 2009 +1100
+
+    Rewrite i386 interrupt handling
+
+    Rewrite interrupt handling functionality for the i386 port. Separated
+    functionality into separate CPU and Architecture components.
+
+    It appears as if the i386 interrupt handler functionality was intended
+    to allow multiple handlers to be installed for a given interrupt.
+    Unfortunately, this functionality was not fully implemented and also
+    had the problem that irq_free_handler() does not allow the passing
+    of the handler function pointer and therefore could never be used to
+    free specific handlers that had been installed for a given IRQ.
+
+    There were also various issues with array bounds not being fully
+    tested.
+
+    I had two objectives in mind for the new implementation:
+
+    1) Keep the implementation as similar as possible to existing
+       implementations. To that end, I have used the leon2/3
+       implementations as the reference
+
+    2) Seperate CPU and Architecture specific elements. All specific i386
+       interrupt functionality is now in cpu/i386/ with the high level
+       API and architecture specific code in lib_i386. Functionality
+       specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
+       been further split out into an individual file to allow for the
+       implementation of the PIC architecture of the SC520 CPU (supports
+       more IRQs)
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:12:35 2009 +1100
+
+    Move ali512x.h
+
+    Moved ali512x.h from include/asm-i386/ic/ to /include
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:12:20 2009 +1100
+
+    Rename SC520 Configuration Options
+
+    Options are now all uniformly CONFIG_SYS_SC520_<option>
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit f62fb99941c625605aa16a0097b396a5c16d2c88
+Author: Trent Piepho <xyzzy@speakeasy.org>
+Date:  Wed Feb 18 15:22:05 2009 -0800
+
+    Fix all linker script to handle all rodata sections
+
+    A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
+    which needs to be added the the linker script.  Instead of just adding this
+    one section, we use a wildcard ".rodata*" to get all rodata linker section
+    gcc has now and might add in the future.
+
+    However, '*(.rodata*)' by itself will result in sub-optimal section
+    ordering.  The sections will be sorted by object file, which causes extra
+    padding between the unaligned rodata.str.1.1 of one object file and the
+    aligned rodata of the next object file.  This is easy to fix by using the
+    SORT_BY_ALIGNMENT command.
+
+    This patch has not be tested one most of the boards modified.  Some boards
+    have a linker script that looks something like this:
+
+    *(.text)
+    . = ALIGN(16);
+    *(.rodata)
+    *(.rodata.str1.4)
+    *(.eh_frame)
+
+    I change this to:
+
+    *(.text)
+    . = ALIGN(16);
+    *(.eh_frame)
+    *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
+
+    This means the start of rodata will no longer be 16 bytes aligned.
+    However, the boundary between text and rodata/eh_frame is still aligned to
+    16 bytes, which is what I think the real purpose of the ALIGN call is.
+
+    Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
+
+commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:26:08 2009 -0500
+
+    remove bi_enet*addr from global data for all arches
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Daniel Hellstrom <daniel@gaisler.com>
+    CC: Michal Simek <monstr@seznam.cz>
+    CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+    CC: Scott McNutt <smcnutt@psyent.com>
+    CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit eb85aa594c1b57a1e3be9689b65171a137a36432
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 20:07:19 2009 -0500
+
+    ppc: mark global bi_enet*addr as legacy
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    In the ppc case, these things are part of the legacy ABI, so keep them
+    around but mark them as legacy so no new code will touch them.
+
+    Also stop calling load_sernum_ethaddr() since all boards now implement
+    this as a stub.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 20:09:52 2009 -0500
+
+    boards: get mac address from env and move load_sernum_ethaddr() to board init
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Rather than have common ppc code call a board-specific function like
+    load_sernum_ethaddr(), have each board call it in its own board-specific
+    misc_init_r() function.
+
+    The boards that get converted here are:
+       - kup4k/kup4x
+       - pcs440ep
+       - tqm8xx
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Stefan Roese <sr@denx.de>
+
+commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:55:01 2009 -0500
+
+    cmc_pu2: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
+    handle this board specially in common ARM code.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Feb 16 18:03:14 2009 -0500
+
+    boards: move board_get_enetaddr() into board-specific init
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Rather than have the common ppc code have board-specific hooks, move the
+    board_get_enetaddr() function into the board-specific init functions.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit f11e6ff5b1859d9213f0d501b3309e065f487543
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:39:55 2009 -0500
+
+    arm: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Some warts are remaining and should be killed off (by moving the func to
+    the appropriate board init code):
+       - davinci_eth_set_mac_addr
+       - cs8900_get_enetaddr
+       - smc_set_mac_addr
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:36:20 2009 -0500
+
+    nx823: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    For the nx823, the serial number is moved out of load_sernum_ethaddr() and
+    into misc_init_r() as is the env setup.  This lets us kill off the former
+    function in the process.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 19b5b533ccd522abeb501d510750693c35e20456
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:27:18 2009 -0500
+
+    lib_*/board.c: do not initialize bi_enet*addr in global data
+
+    Since everyone is using the environment for mac address storage, there is
+    no point in seeding the global data.
+
+    The arches that are converted here:
+       i386
+       m68k
+       microblaze
+       mips
+       nios
+       nios2
+       sh
+       sparc
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Daniel Hellstrom <daniel@gaisler.com>
+    CC: Michal Simek <monstr@seznam.cz>
+    CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+    CC: Scott McNutt <smcnutt@psyent.com>
+    CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:19:54 2009 -0500
+
+    npe: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    The resulting code can also be simplified even further.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Stefan Roese <sr@denx.de>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:18:41 2009 -0500
+
+    cpu/: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    The cpus that get converted here:
+       at91rm9200
+       mpc512x
+       mpc5xxx
+       mpc8260
+       mpc8xx
+       ppc4xx
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: John Rigby <jrigby@freescale.com>
+    CC: Stefan Roese <sr@denx.de>
+
+commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:09:54 2009 -0500
+
+    lan91c96/smc91111/smc911x: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Also, do not bother checking the EEPROM if the env is setup.  This
+    simplifies the code greatly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Wolfgang Dnek <wd@denx.de>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Rolf Offermanns <rof@sysgo.de>
+    CC: Erik Stahlman <erik@vt.edu>
+    CC: Daris A Nevil <dnevil@snmc.com>
+    CC: Sascha Hauer <s.hauer@pengutronix.de>
+
+commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:14:09 2009 -0500
+
+    sh_eth: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    The sh_eth driver can also be simplified a bit by using enetaddr member of
+    the eth_device structure.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    CC: Carlos Munoz <carlos@kenati.com>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:06:09 2009 -0500
+
+    cs8900: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    The cs8900 driver also changes slightly in that the hardware is not
+    consulted if the mac address in the env is sane.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Marius Groeger <mgroeger@sysgo.de>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit c4b8762f11d337e6a9d90c227b2871d65d372469
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:04:25 2009 -0500
+
+    bcm570x: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    Since the address is in the PLM_DEVICE_BLOCK structure already, there is
+    no need to pass the NodeAddress as a second parameter.  So drop the second
+    argument to the LM_SetMacAddress() function (and update the tigon3 driver
+    accordingly).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 19:01:26 2009 -0500
+
+    drivers/net/: get mac address from environment
+
+    The environment is the canonical storage location of the mac address, so
+    we're killing off the global data location and moving everything to
+    querying the env directly.
+
+    The drivers that get converted here:
+       3c589
+       4xx_enet
+       dc2114x
+       dm9000x
+       enc28j60
+       fsl_mcdmafec
+       ks8695eth
+       mcffec
+       rtl8019
+       rtl8169
+       s3c4510b_eth
+       xilinx_emac
+       xilinx_emaclite
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Rolf Offermanns <rof@sysgo.de>
+    CC: Stefan Roese <sr@denx.de>
+    CC: Sascha Hauer <saschahauer@web.de>
+    CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+    CC: Greg Ungerer <greg.ungerer@opengear.com>
+    CC: Xue Ligong <lgxue@hotmail.com>
+    CC: Masami Komiya <mkomiya@sonare.it>
+    CC: Curt Brune <curt@cucy.com>
+    CC: Michal SIMEK <monstr@monstr.eu>
+
+commit b6b4625d175019e387e5b0f65a17322a78f6bb90
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:38:38 2009 -0500
+
+    boards: get mac address from environment
+
+    The boards that get converted here to use the environment for the mac
+    address rather than global data:
+       debris
+       mgcoge
+       mgsuvd
+       muas3001
+       netstal
+       pn62
+       sixnet
+       vcma9
+       xilinx (the ones that use xilinx_enet)
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+    CC: Sangmoon Kim <dogoil@etinsys.com>
+    CC: Heiko Schocher <hs@denx.de>
+    CC: David Mueller <d.mueller@elsoft.ch>
+    CC: Niklaus Giger <niklaus.giger@netstal.com>
+    CC: Wolfgang Grandegger <wg@denx.de>
+    CC: Dave Ellis <DGE@sixnetio.com>
+    CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
+
+commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:36:45 2009 -0500
+
+    AmigaOneG3SE/enet: get mac address from environment
+
+    Always use the MAC address that is stored in the environment first before
+    falling back to the ROM.  This also cuts out any comparison steps: if the
+    mac in the env is sane, the ROM is never consulted.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:52:38 2009 -0500
+
+    nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
+
+    Since the ethernet layer handles updating of device addresses itself from
+    the environment, there is no point in calling eth_set_enetaddr().
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:54:07 2009 -0500
+
+    lynxkdi: get mac address from environment
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:51:43 2009 -0500
+
+    bootvx: get mac address from environment
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Niklaus Giger <niklaus.giger@member.fsf.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:50:10 2009 -0500
+
+    bdinfo: get mac address from environment
+
+    Add a new print_eth() function to automate the eth*addr env var acquisition
+    and display.  Affects all arches.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+    CC: Scott McNutt <smcnutt@psyent.com>
+    CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+    CC: Michal Simek <monstr@seznam.cz>
+    CC: Daniel Hellstrom <daniel@gaisler.com>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 95823ca0773356860e622ee3304a4b7cafcbf19a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 18:23:48 2009 -0500
+
+    net: get mac address from environment and use eth util funcs
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 500b6c51e4c41f4562cb48344af98deb7e342731
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 13 15:06:25 2008 -0400
+
+    Blackfin: bfin_mac: force boards to setup the MAC themselves
+
+    Since the on-chip MAC does not have an eeprom or similar interface, force
+    all Blackfin boards that use this driver to setup the board data with a
+    proper MAC.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 14:12:34 2009 -0500
+
+    doc/README.enetaddr: document proper MAC usage
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 3f6e6993e92fd0658da1746d1c84644612ee520b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jan 29 19:43:44 2009 -0500
+
+    net: new utility functions for working with enetaddr's
+
+    Declare new utility functions for converting between the environment
+    variables (eth*addr) and the binary MAC address representation.  This way
+    we can unify all the random places that already do this kind of thing.
+
+    The functions in question:
+       eth_parse_enetaddr - "..." -> {...}
+       eth_getenv_enetaddr - env -> {...}
+       eth_setenv_enetaddr - {...} -> env
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit b6446b67758ea1e41223f0782924bb73fd0a89d0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Feb 17 00:00:53 2009 -0500
+
+    convert print_IPaddr() to %pI4
+
+    Now that our printf functions support the %pI4 modifier like the kernel,
+    let's drop the inflexible print_IPaddr() function and covert over to the
+    %pI4 modifier.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6c6166f52983dac775e3852f9d0f49d033f27108
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Feb 16 23:21:36 2009 -0500
+
+    vsprintf: pull updates from Linux kernel
+
+    This brings in support for the %p modifier which allows us to easily print
+    out things like ip addresses, mac addresses, and pointers.
+
+    It also converts the rarely used 'q' length modifier to the common 'L'
+    modifier when dealing with quad types.
+
+    While this new code is a bit larger (~1k .text), most of it should be made
+    up by converting the existing ip/mac address code to use format modifiers.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Thu Mar 19 23:04:18 2009 -0400
+
+    .gitignore for generated files in api_examples directory
+
+    Add .gitignore for generated files in api_examples directory
+
+    Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Wed Mar 18 12:27:04 2009 +0900
+
+    net: sh_eth: Remove sh_eth_reset() from halt function
+
+    sh_eth_reset is function to reset Ether IP.
+    The MAC address is stored in IP, but it is initialized by this function.
+    OS (e.g. Linux Kernel) can not use this device when initialized.
+    This revises this problem.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+
+commit f8853d105da7d69bc92a5b4578f9b85234e558ec
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Fri Mar 20 12:45:50 2009 +0100
+
+    ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
+
+    PCI outbound address map configuration doesn't match the
+    PCI memory address range covered by appropriate TLB entry
+    configuration for canyonlands causing machine check
+    exceptions while accessing PCI memory regions. This patch
+    provides a fix for this issue.
+
+    Kazuaki Ichinohe observed and reported this issue while
+    testing display output with PCI ATI video card on canyonlands.
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 7a88601a34132548c3c591ea87ab3468b51121b0
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Mar 6 10:09:37 2009 -0500
+
+    CFI: geometry reversal for STMicro M29W320DT
+
+    Follow up to the flash_fixup_stm to fix geometry reversal
+    on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 25 17:29:40 2009 -0500
+
+    smc911x_eeprom: update register API
+
+    The smc911x driver changed the naming convention for its register funcs,
+    so update the eeprom code accordingly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
+Author: Grzegorz Bernacki <gjb@semihalf.com>
+Date:  Tue Mar 17 10:06:39 2009 +0100
+
+    mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
+
+    Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
+    To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
+    define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
+    Total5200 and will be used by digsy MTC and other boards with
+    ATA CS on I2C pins.
+
+    Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
+
+commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:34 2009 +0100
+
+    8xx: add support for new keymile kmsupx4 board.
+
+    This patch adds support for the kmsupx4 board from Keymile,
+    based on a Freescale MPC852T CPU
+
+    - serial console on SMC1
+    - 32 MB SDRAM
+    - 32 MB NOR Flash
+    - Ethernet over SCC3
+    - I2C Bitbang
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:28 2009 +0100
+
+    8xx, mgsuvd: rename board to a more generic name
+
+    renaming the "mgsuvd" board port into "km8xx", because
+    there come more similar boards from keymile.
+    Compiling the mgsuvd board with "make mgsuvd_config"
+    remains.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 18b2f35bde1672e074a3d5048383cb56fda745cb
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:23 2009 +0100
+
+    8xx, mgsuvd: Coding Style cleanup config file
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 364123db6730d32330f818b65360d2cd27396667
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:18 2009 +0100
+
+    powerpc: common updates for keymile boards
+
+    - added to keymile-common.h:
+      - bootcount support
+      - COMMAND HISTORY
+      - CONFIG_AUTO_COMPLETE
+      - CONFIG_SYS_FLASH_PROTECTION
+      - JFFS2 support
+      - CONFIG_VERSION_VARIABLE
+    - extracted common I2C settings for all boards
+    - common default environment settings summarized
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:15 2009 +0100
+
+    8xx, icache: enabling ICache not before running from RAM
+
+    with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
+    is not enabled before code runs from RAM.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Mar 12 07:37:11 2009 +0100
+
+    82xx, mgcoge: fix environment sector size
+
+    Size of one environment sector is 0x20000.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 27057d416c7cc9eb1860953da8836352c07f13e9
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Mon Mar 16 23:27:31 2009 +0100
+
+    NetStar: config reindentation
+
+    Fix indentation broken by symbol renames. "Sort" driver related definitons.
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+
+commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
+Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+Date:  Tue Mar 17 11:21:43 2009 +0000
+
+    ColdFire: Fix incorrect definition
+
+    Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
+Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+Date:  Mon Mar 2 19:16:45 2009 +0000
+
+    ColdFire: Fix M5329EVB and M5373EVB nand issue
+
+    The Nand flash was unable to read and write properly
+    due to Nand Chip Select (nCE) setup was in reverse
+    order. Also, increase the Nand time out value to 60.
+
+    Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
+Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+Date:  Tue Jan 27 15:19:35 2009 +0000
+
+    ColdFire: PLATFORM_CPPFLAGS updates for new compiler
+
+    Update PLATFORM_CPPFLAGS to accept 4.3.x version of
+    ColdFire compiler.
+
+    Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit d6e4baf49987fc6f75e8574c0c27301a828b3132
+Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+Date:  Tue Jan 27 12:57:47 2009 +0000
+
+    ColdFire: Provide gzip image size V2 & V3 platforms
+
+    Default gzip bootm size is 8MB. Some platforms require
+    more than 8MB
+
+    Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit c3a9e6374210679a81f611c1bcf968988bc20e41
+Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+Date:  Wed Feb 18 11:49:31 2009 +0000
+
+    ColdFire: Fix M54451 serial boot dram setup
+
+    The serial boot dram extended/standard mode register was not
+    setup and was using default DRAM setup causing the U-boot was
+    unstable to boot up in serial mode.
+
+    Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
+
+commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
+Author: arun c <arun.edarath@gmail.com>
+Date:  Thu Dec 4 15:57:15 2008 +0530
+
+    Coldfire: XL Bus minor fixes
+
+    According to coldfire manual data timeout > address time out
+    also use correct macro to program XARB_CFG
+
+    Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
+
+commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Tue Mar 17 12:06:04 2009 -0500
+
+    NAND: Have nboot accept .e and .i as legacy no-ops.
+
+    This was intended to happen before, but a trivial bug prevented it.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 0987505540918b2464b73069af3a5b766dbd3ceb
+Author: Ladislav Michl <ladis@linux-mips.org>
+Date:  Fri Mar 13 14:38:19 2009 +0100
+
+    NAND: Make nboot skip bad blocks
+
+    nboot command currently does not skip bad blocks and gives read error when
+    loading image stored over bad block. With patch applied, nboot works as
+    expected:
+
+    Device 0 bad blocks:
+      00780000
+      014a0000
+      02000000
+      02cc0000
+      04aa0000
+
+    Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
+       Image Name:   Linux-2.6.22-omap1
+       Created:      2008-11-20  23:44:32 UTC
+       Image Type:   ARM Linux Kernel Image (uncompressed)
+       Data Size:    1052520 Bytes =  1 MB
+       Load Address: 10008000
+       Entry Point:  10008000
+    Skipping bad block 0x02cc0000
+    Automatic boot of image at addr 0x10400000 ...
+    ...
+
+    Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 12 07:27:25 2009 +0100
+
+    ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
+
+    This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
+    the DDR2 configuration to only use one CS (rank). As this code is most
+    likely copied from the original Sequoia version, this error was copied
+    as well.
+
+    This patch also removes some dead code.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 9199b9cc8f56aca26504b48cf702176208f46e54
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Mar 12 07:24:40 2009 +0100
+
+    ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
+
+    This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
+    the DDR2 configuration to only use one CS (rank). As this code is most
+    likely copied from the original Sequoia version, this error was copied
+    as well.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
+Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
+Date:  Wed Mar 11 10:54:46 2009 +0200
+
+    Fix AMCC Sequoia board DDR memory configuration
+
+    Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
+    specifies that BankSel#1 is not connected, while bootloader memory
+    configuration is (board/amcc/sequoia/sdram.c):
+          mtsdram(DDR0_10, 0x00000300);
+    i.e. both Chip Selects used - not correct.
+
+    If we change to correct value here:
+          mtsdram(DDR0_10, 0x00000100);
+    memory is accessible OK also.
+
+    Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b3dd629e78870ba2dc9f8032978721c0fa02a856
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Mar 15 22:40:09 2009 +0100
+
+    Prepare 2009.03-rc2
+
+    Update CHANEGLOG, fix minor coding style issue.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
+Author: Jerry Van Baren <gvb.uboot@gmail.com>
+Date:  Fri Mar 13 11:40:10 2009 -0400
+
+    mpc83xx: Add bank configuration to FSL spd_sdram.c
+
+    The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
+    bank SDRAMs.
+
+    Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
+    Acked-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
+Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
+Date:  Fri Mar 13 08:58:14 2009 +0100
+
+    mpc83xx: correctly set encryption and I2C bus 0 clock
+
+    This patch makes sure the correct mask is applied when setting
+    the encryption and I2C bus 0 clock in SCCR.
+    Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
+    won't function.
+
+    Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Thu Mar 12 19:30:50 2009 +0100
+
+    OMAP3: Add support for OMAP3 die ID
+
+    Read and store OMAP3 die ID in U-Boot environment.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
+Author: Jon Smirl <jonsmirl@gmail.com>
+Date:  Wed Mar 11 15:08:56 2009 -0400
+
+    MPC5200 FEC MII speed register
+
+    Set a non-zero speed in the MII register so that MII commands will work.
+
+    Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
+
+commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
+Author: Yusuke.Goda <goda.yusuke@renesas.com>
+Date:  Fri Mar 13 16:08:18 2009 +0900
+
+    sh: ap325rxa: Change the wait cycle in the area 5
+
+    Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 16:04:26 2009 +0900
+
+    sh: Fix cannot work rtl8139 on r2dplus
+
+    The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
+    registration.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Fri Feb 27 18:35:41 2009 +0900
+
+    sh: Add netdev header fixing of warning/build
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit ada9318252f51c2626e9837c623f9812b0308dea
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Tue Mar 3 15:11:17 2009 +0900
+
+    sh: Add support 32-Bit Extended Address Mode to sh7785lcr
+
+    We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
+    for this mode. This command changes PMB for using 512MB system memory.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 14:26:42 2009 +0900
+
+    sh: Add some register value configurable to PCI of SH7780
+
+    Some register value was hardcoded for System memory size 128MB and
+    memory offset 0x08000000. This patch fixed the problem.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 14:26:52 2009 +0900
+
+    sh: Add system memory registration to PCI for SH4
+
+    It is necessary for some pci device driver.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit b3061b40db691245a7bb9a55354b4edacbf3902d
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Feb 25 14:26:55 2009 +0900
+
+    sh: Add value for PCI system memory registration of sh7785lcr
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 6d84ae3956a6cd7aebd86f661130752594e60124
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Tue Mar 3 15:11:08 2009 +0900
+
+    sh: Add macros for SH-4A 32-Bit Address Extended Mode
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Tue Feb 3 13:35:05 2009 +0900
+
+    sh: use write{8,16,32} in ms7720se lowlevel_init
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
+Author: Paul Gortmaker <paul.gortmaker@windriver.com>
+Date:  Mon Mar 9 18:07:53 2009 -0500
+
+    tsec: report when there is no vendor specific PHY support
+
+    Commit af1c2b84 added a generic phy support, with an ID of zero
+    and a 32 bit mask; meaning that it will match on any PHY ID.
+
+    The problem is that there is a test that checked if a matching
+    PHY was found, and if not, it printed the non-matching ID.
+    But since there will always be a match (on the generic PHY,
+    worst case), this test will never trip.
+
+    In the case of a misconfigured PHY address, or of a PHY that
+    isn't explicitly supported outside of the generic support,
+    you will never see the ID of 0xffffffff, or the ID of the
+    real (but unsupported) chip.  It will silently fall through
+    onto the generic support.
+
+    This change makes that test useful again, and ensures that
+    the selection of generic PHY support doesn't happen without
+    some sort of notice.  It also makes it explicitly clear that
+    the generic PHY must be last in the PHY table.
+
+    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit c279dfc10186ceba78d3862036f158750e86599a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Mar 9 10:53:05 2009 +0100
+
+    SIMPC8313 board: fix out of tree building.
+
+    Fix typo in makefile which broke out of tree builds.
+
+    Also use expolicit "rm" instead of "ln -sf" which is known to be
+    unreliable.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 49b5aff491bd574935ecaf8545152066a25eff3d
+Author: ksi@koi8.net <ksi@koi8.net>
+Date:  Mon Feb 23 10:53:13 2009 -0800
+
+    Add eTSEC 1/2 IO override control (corrected)
+
+    This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
+
+    Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
+
+commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Fri Mar 6 19:05:52 2009 -0600
+
+    fsl: Remove unnecessary debug printfs
+
+    These were left in accidentally, and are not really useful unless the
+    code is as broken as it was when it was being developed.
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
+Author: Ed Swarthout <Ed.Swarthout@freescale.com>
+Date:  Tue Feb 24 02:37:59 2009 -0600
+
+    Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
+
+    Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
+    sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
+
+    Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
+
+commit a922fdb87af25c25c032424908dcf60fbf3250ea
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Tue Feb 24 06:13:10 2009 +0100
+
+    PXA: timer use do_div and simplify it
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Mar 9 10:51:39 2009 +0100
+
+    SIMPC8313 board: fix out of tree building.
+
+    Fix typo in makefile which broke out of tree builds.
+
+    Also use expolicit "rm" instead of "ln -sf" which is known to be
+    unreliable.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:51 2009 +0100
+
+    8360, kmeter1: added bootcount feature.
+
+    add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
+
+    The bootcounter uses 8 bytes from the muram,
+    because no other memory was found on this
+    CPU for the bootcount feature. So we must
+    correct the muram size in DTS before booting
+    Linux.
+
+    This feature is actual only implemented for
+    MPC8360, because not all 83xx CPU have qe,
+    and therefore no muram, which this feature
+    uses.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 1e7ed2565031e01abc18c713030a0a9829c07684
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:48 2009 +0100
+
+    83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
+
+    old code implemented the QE_ENET10 errata only for Silicon
+    Revision 2.0. New code reads now the Silicon Revision
+    register and sets dependend on the Silicon Revision the
+    values as advised in the QE_ENET10 errata.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 605f78e34a3f0103693b891f2573edd352e7d495
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:44 2009 +0100
+
+    83xx, kmeter1: updates for 2009.03
+
+    - HRCW update
+      HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
+      HRCWH_LALE_EARLY added
+    - DDR-SDRAM settings modified. This solves sporadically
+      problems with this memory.
+    - CS1 now 128 MB window size
+    - CS3 now 512 MB window size
+    - PRAM activated
+    - MTDPARTS_DEFAULT defined
+    - CONFIG_HOSTNAME added
+    - MONITOR_LEN now 384 KB
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 118cbe3c35c898f8d020b29d6dc180307cacf147
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:40 2009 +0100
+
+    83xx, kmeter1: autodetect size of DDR II RAM
+
+    it is possible that some board variants have different DDR II
+    RAM sizes. So we autodetect the size of the assembled RAM.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:37 2009 +0100
+
+    83xx, i2c: add mux support for fsl_i2c
+
+    This patch adds I2C mux support for the fsl_i2c driver. This
+    allows you to add "new" i2c busses, which are reached over
+    i2c muxes. For more infos, please look in the README and
+    search for CONFIG_I2C_MUX.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:34 2009 +0100
+
+    83xx, kmeter1: add I2C, dtt, eeprom support
+
+    This patch adds I2C support for the Keymile kmeter1 board.
+    It uses the First I2C Controller from the CPU, for
+    accessing 4 temperature sensors, an eeprom with IVM data
+    and the booteeprom over a pca9547 mux.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit db1d72afd77287bc8577210f3f71ab249dcf146f
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 24 11:30:30 2009 +0100
+
+    i2c, dtt: move dtt_init () to board_init_r ()
+
+    In case where a board not uses CONFIG_POST, it is not
+    necessary to init the DTTs when running from flash.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 5b0055547f0246908b79cc300170d87380b69e18
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Wed Feb 25 12:31:32 2009 +0800
+
+    83xx: Fix some bugs in spd sdram code
+
+    1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
+      tRTP according to DDR2 JEDEC spec.
+    2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
+    3. add the support of DDR2-533,667,800 DIMMs
+    4. cpo
+    5. make the AL to min to gain better performance.
+
+    The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
+    MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
+
+    items 1, 2 and 5:
+    Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+
+    Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b7be63abec45858c044f0fbd6aeef524c4663f9b
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Wed Feb 4 18:27:49 2009 +0200
+
+    MPC8349ITX: several config issues fixed
+
+    The previous version rebooted forever with DDR bigger than 256MB.
+    Access the DS1339 RTC chip is on I2C1 bus.
+    Allow DHCP.
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:39 2009 +0300
+
+    mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
+
+    The SerDes initialization should be finished before negating the reset
+    signal according to the reference manual. This isn't an issue on real
+    hardware, but we'd better stick to the specifications anyway.
+
+    Suggested-by: Liu Dave <DaveLiu@freescale.com>
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
+Author: Heiko Schocher <hs@denx.de>
+Date:  Wed Feb 25 12:28:32 2009 +0100
+
+    i2c, dtt: move dtt_init () to board_init_r ()
+
+    it is not necessary to init the DTTs so early,
+    so move this init to board_init_r ().
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 00cc5595a7caac8066b408774383a956c2e26797
+Author: Anatolij Gustschin <agust@denx.de>
+Date:  Wed Feb 25 20:28:13 2009 +0100
+
+    lcd: Fix compilation warning in common/lcd.c
+
+    Fix following warning while compilation for mcc200 board:
+
+    lcd.c: In function 'lcd_display_bitmap':
+    lcd.c:625: warning: unused variable 'cmap'
+
+    Signed-off-by: Anatolij Gustschin <agust@denx.de>
+
+commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Tue Feb 24 21:11:24 2009 +1100
+
+    Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
+
+    Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
+
+    Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
+
+commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Feb 23 10:29:47 2009 -0500
+
+    smc911x: split out useful defines/functions into local header
+
+    The smc911x driver has a lot of useful defines/functions which can be used
+    by pieces of code (such as example eeprom programmers).  Rather than
+    forcing each place to duplicate these defines/functions, split them out
+    of the smdc911x driver into a local header.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+    CC: Sascha Hauer <s.hauer@pengutronix.de>
+    CC: Guennadi Liakhovetski <lg@denx.de>
+    CC: Magnus Lilja <lilja.magnus@gmail.com>
+    CC: Ben Warren <biggerbadderben@gmail.com>
+
+commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Tue Feb 24 10:44:02 2009 +0100
+
+    ARM: add an "eet" variant of the imx31_phycore board
+
+    The "eet" variant of the imx31_phycore board has an OLED display, using a
+    s6e63d6 display controller on the first SPI interface, using GPIO57 as a
+    chip-select for it. With this configuration you can display 256 colour BMP
+    images in 16-bit RGB (RGB565) LCD mode.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 6 10:37:57 2009 +0100
+
+    video: add an i.MX31 framebuffer driver
+
+    Add a driver for the Synchronous Display Controller and the Display
+    Interface on i.MX31, using IPU for DMA channel setup. So far only
+    displaying of bitmaps is supported, no text output.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Anatolij Gustschin <agust@denx.de>
+
+commit b245e65ee3c4cce3ccf008a21f4528239655876c
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 6 10:37:53 2009 +0100
+
+    LCD: support 8bpp BMPs on 16bpp displays
+
+    This patch also simplifies some ifdefs in lcd.c, introduces a generic
+    vidinfo_t, which new drivers are encouraged to use and old drivers to switch
+    over to.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Anatolij Gustschin <agust@denx.de>
+
+commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
+Author: Mark Jackson <mpfj@mimc.co.uk>
+Date:  Fri Feb 6 10:37:49 2009 +0100
+
+    Add 16bpp BMP support
+
+    This patch adds 16bpp BMP support to the common lcd code.
+
+    Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
+
+    At the moment it's only been tested on the MIMC200 AVR32 board, but extending
+    this to other platforms should be a simple task !!
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Anatolij Gustschin <agust@denx.de>
+
+commit 689551c5ff1b394b88412f3df22144e79468d3a9
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 6 10:37:41 2009 +0100
+
+    A driver for the S6E63D6 SPI display controller from Samsung
+
+    This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
+    It only provides access to controller's registers so the client can freely
+    configure it.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Anatolij Gustschin <agust@denx.de>
+
+commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 13 09:26:40 2009 +0100
+
+    i.MX31: support GPIO as a chip-select in the mxc_spi driver
+
+    Some SPI devices have special requirements on chip-select handling.
+    With this patch we can use a GPIO as a chip-select and strictly follow
+    the SPI_XFER_BEGIN and SPI_XFER_END flags.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b30de3cccf8867566cd314e7c7033904afa5dc9d
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Sat Feb 7 01:18:07 2009 +0100
+
+    i.MX31: add a simple gpio driver
+
+    This is a minimal driver, so far only managing output. It will
+    be used by the mxc_spi.c driver.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Sat Feb 7 00:09:12 2009 +0100
+
+    i.MX31: fix SPI driver for shorter than 32 bit
+
+    Fix setting the SPI Control register, 8 and 16-bit transfers
+    and a wrong pointer in the free routine in the mxc_spi driver.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:52 2009 +0300
+
+    mpc83xx: MPC837XERDB: Add PCIe support
+
+    On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
+    slots. Let's support them.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:50 2009 +0300
+
+    mpc83xx: PCI: Fix hard-coded first_busno value
+
+    We should use pci_last_busno() in pci_init_bus(), otherwise we'll
+    erroneously re-use PCI0's first_busno for PCI1 hoses.
+
+    NOTE: The patch is untested. All MPC83xx FSL boards I have have
+    PCI1 in miniPCI form, for which I don't have any cards handy.
+
+    But looking in cpu/mpc85xx/pci.c:
+    ...
+    #ifdef CONFIG_MPC85XX_PCI2
+           hose = &pci_hose[1];
+
+           hose->first_busno = pci_hose[0].last_busno + 1;
+
+    And considering that we do the same for MPC83xx PCI-E support,
+    I think this patch is correct.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:46 2009 +0300
+
+    mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
+
+    This patch fixes copy-paste issue: pci_hose[0]'s first and last
+    busnos were used to fixup pci1's nodes.
+
+    We don't see this bug triggering only because Linux reenumerate
+    buses anyway.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b24a99f6666ac278ec9f9c1334518af828833d19
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:44 2009 +0300
+
+    mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
+
+    This patch fixes an issue in config space read accessors: we should
+    fill-in the value even if we fail (e.g. skipping devices), otherwise
+    CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:42 2009 +0300
+
+    mpc83xx: PCIe: Don't start bus enumeration at 0
+
+    Currently we assign first_busno = 0 for the first PCIe hose, but this
+    scheme won't work if we have ordinary PCI hose already registered (its
+    first_busno value is 0 too).
+
+    The old code worked fine only because we have PCI disabled on
+    MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
+    "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
+    But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
+    triggers.
+
+    So, to fix the issue, we should use pci_last_busno() + 1 for the
+    first_busno (i.e. last available busno).
+
+    Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit cc2a8c7751ddbae3116660064f446888538b93e9
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Feb 19 18:20:41 2009 +0300
+
+    PCI: Add pci_last_busno() helper
+
+    This is just a handy routine that reports last PCI busno: we walk
+    down all the hoses and return last hose's last_busno.
+
+    Will be used by PCI/PCIe initialization code.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Mon Feb 23 13:56:51 2009 -0600
+
+    MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
+
+    Currently, we get 256MB as the default, but since all the 86xx
+    board configs define a 2G BAT mapping for RAM, raise default
+    to 2G.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+    Acked-by: Jon Loeliger <jdl@freescale.com>
+
+commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Thu Feb 12 10:43:32 2009 -0600
+
+    mpc8641hpcn: Indicate 36-bit addr map in boot messages
+
+    If 36-bit addressing is enabled, print a message on the console
+    when we boot.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
+Author: Mark Jackson <mpfj-list@mimc.co.uk>
+Date:  Fri Feb 13 15:48:18 2009 +0000
+
+    Setup extra MIMC200 chip selects
+
+    Added code to setup the extra Flash and FRAM chip selects as used on the
+    MIMC200 board.
+
+    V2 moves the init code from the common "cpu.c" file into the board specific
+    setup file.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
+Author: Mark Jackson <mpfj@mimc.co.uk>
+Date:  Mon Nov 24 12:10:56 2008 +0000
+
+    MIMC200: tidy GCLK init code
+
+    Change the MIMC200 startup code to use the built-in (rather than
+    hard-coded) funtions for setting up gclk outputs.
+
+    We'll also move the code to the new, more-appropriate
+    board_postclk_init() routine.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit b423f94063bf04e92047ff85c7e53441eb3b712b
+Author: Olav Morken <olavmrk@gmail.com>
+Date:  Fri Jan 23 12:56:32 2009 +0100
+
+    AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
+
+    The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
+    workaround, two NOPs can be inserted.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
+Author: Gunnar Rangoy <gunnar@rangoy.com>
+Date:  Fri Jan 23 12:56:29 2009 +0100
+
+    AVR32: Make GPIO implmentation cpu dependent
+
+    There are some differences in the implementation of GPIO in the
+    at32uc chip compared to the ap700x series.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit a38de083d2979db3680f0d0978c509a172c8fa00
+Author: Olav Morken <olavmrk@gmail.com>
+Date:  Fri Jan 23 12:56:28 2009 +0100
+
+    AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
+
+    The AVR32A architecture (which AT32UC3A-series is based on) has a
+    different memory layout than the AVR32B-architecture. This patch moves
+    addrspace.h to an arch-dependent directory in preparation for
+    AT32UC3A-support. It also moves some address-space manipulation
+    functions from io.h to addrspace.h.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
+Author: Olav Morken <olavmrk@gmail.com>
+Date:  Fri Jan 23 12:56:27 2009 +0100
+
+    AVR32: Make cacheflush cpu-dependent
+
+    The AT32UC3A series of processors doesn't contain any cache, and issuing
+    cache control instructions on those will cause an exception. This commit
+    makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 10 09:38:52 2009 +0100
+
+    netloop: speed up NetLoop
+
+    NetLoop polls every cycle with getenv some environment variables.
+    This is horribly slow, especially when the environment is big.
+
+    This patch reads only the environment variables in NetLoop,
+    when they were changed.
+
+    Also moved the init part of the NetLoop function in a seperate
+    function.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Dec 22 02:56:07 2008 -0500
+
+    smc911x_eeprom: new example app for managing newer SMC parts
+
+    A forward port of the last version to work with the newer smc911x driver.
+    I only have a board with a LAN9218 part on it, so that is the only one
+    I've tested.  But there isn't anything in this that would make it terribly
+    chip specific afaik.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    CC: Sascha Hauer <s.hauer@pengutronix.de>
+    CC: Guennadi Liakhovetski <lg@denx.de>
+    CC: Magnus Lilja <lilja.magnus@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
+Author: Pieter Henning <phenning@vastech.co.za>
+Date:  Sun Feb 22 23:17:15 2009 -0800
+
+    Added Vitesse VSC8211 definitions to TSEC driver
+
+    Added the struct containing PHY settings for the Vitesse VSC8211 phy to
+    the phy_info list in tsec.c
+
+    Signed-off-by: Pieter Henning <phenning@vastech.co.za>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 32688e572ff96715b41420e9a7f280db6c399b65
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Mon Feb 23 00:22:21 2009 +0100
+
+    Update CHANGELOG;  Prepare 2009.03-rc1
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 80b827c2b78329c6503b271e43d9eb693d644710
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Feb 22 23:45:40 2009 +0100
+
+    ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
+
+    The file was generated from building versatile_defconfig.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
+Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+Date:  Sun Feb 22 14:24:11 2009 +0900
+
+    MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
+
+    Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
+    like this:
+
+    skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
+    Configuring for dbau1x00 board...
+    au1x00_eth.c: In function 'au1x00_send':
+    au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+    au1x00_eth.c: In function 'au1x00_recv':
+    au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+    au1x00_eth.c: In function 'au1x00_init':
+    au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+    au1x00_eth.c: In function 'au1x00_recv':
+    au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+    au1x00_eth.c: In function 'au1x00_init':
+    au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+    au1x00_eth.c: In function 'au1x00_send':
+    au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
+
+    We're passing a volatile pointer to a function which is expecting a non-
+    volatile pointer.  That's potentially dangerous, so gcc warns about it.
+    Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
+
+    To fix this, we add a volatile attribute to the argument in question.
+    The virt_to_phys function in Linux kernel also does the same thing.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+
+commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Fri Feb 20 17:51:28 2009 +0100
+
+    OMAP3: Clean up MMC code
+
+    Clean up OMAP3 MMC code:
+
+    * Convert register access to struct & readx/writex style
+    * Replace hardcode values by macros
+    * Remove macro defined twice
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Thu Feb 12 18:55:43 2009 +0100
+
+    OMAP3: Pandora: Update pin mux
+
+    Clock pin must have input enabled for MMC3 to work.
+    Also enable pull-ups for cmd/data lines to be consistent
+    with remaining MMC host pin setup.
+
+    Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
+
+commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Thu Feb 12 18:55:42 2009 +0100
+
+    OMAP3: Add OMAP3 auto detection
+
+    This patch adds OMAP3 cpu type auto detection based on OMAP3 register
+    and removes hardcoded values.
+
+    Signed-off-by: Steve Sakoman <sakoman@gmail.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit f956fd0338f4990793a10f767929ba4963665261
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Thu Feb 12 18:55:41 2009 +0100
+
+    OMAP3: Beagle: Add board revision detection
+
+    With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
+    which might need different software handling. For this, GPIO pin 171 (GPIO
+    module 6, offset 11) can be used to check for board revision. If this pin
+    is low, we have a rev C board. Else it must be a revision Ax or Bx board.
+
+    To handle board differences you can call function beagle_get_revision().
+    E.g.:
+
+    if (beagle_get_revision()) {
+
+    /* do special revision C stuff here */
+
+    }
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Thu Feb 12 18:55:40 2009 +0100
+
+    OMAP3: Overo: Clean up pin mux and GPIO configuration
+
+    * Make Overo GPIO114 an input for touchscreen PENDOWN
+    * Make Overo GPIO144-147 readable
+    * Make Overo EHCI pinmux match beagle rev c setup
+    * Adjust pinmux for SMSC911X network chip support
+    * Remove unnecessary GPIO setup
+    * Fix merge error in Makefile
+
+    Signed-off-by: Steve Sakoman <sakoman@gmail.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 2579019b8248e5f166e60e37065766efc8a49dbc
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 22 17:08:41 2009 +0100
+
+    nmdk8815: fix onenand support
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 22 17:56:50 2009 +0100
+
+    nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 22 17:49:43 2009 +0100
+
+    davinci: fix implicit declaration of function 'davinci_errata_workarounds'
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 4f5728987f4f9f7845688482aa2b7f2127768165
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 22 15:49:28 2009 +0100
+
+    arm: add uart dcc support
+
+    Serial driver via the EmbeddedICE macrocell's DCC channel using
+    co-processor 14.
+
+    It does include a timeout to ensure that the system does not
+    totally freeze when there is nothing connected to read.
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
+Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
+Date:  Fri Nov 21 14:35:56 2008 -0500
+
+    ARM DaVinci: Add common peripherals and modules enable functions.
+
+    Taken all the duplicated code for enabling common modules and apply
+    software workarounds from the board specific code into common
+    functions. Also added comments explaining the workarounds
+    (from TI errata documents) and replaced some numerical bit numbers
+    with more meaningful defines.
+
+    Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
+
+commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Feb 9 15:53:33 2009 +0100
+
+    Enable Ethernet for Nomadik 8815 Evaluation Kit
+
+    This trivially enables Ethernet support in the debug board
+    by setting up the proper chip select.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
+
+commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Feb 9 15:53:31 2009 +0100
+
+    Nand driver for Nomadik SoC
+
+    This driver implements the ECC algorithm described in
+    the CPU data sheet and uses the OOB layout chosen in
+    already-released development systems (shipped with a custom-made
+    u-boot 1.3.1).
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
+
+commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Mon Feb 9 15:53:31 2009 +0100
+
+    Added nomadik.h header
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
+
+commit 60ece6d8043d1dd80f5dd32c541213716d624b19
+Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+Date:  Wed Oct 29 20:05:18 2008 +0900
+
+    r8a66597-hcd: fix cannot use external hub
+
+    Fix the problem that cannot use external hub, because this driver
+    did not control correctly a DEVADDx register.
+
+    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit e1ffaee728190e76a4596a3579d94e730143585f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Feb 19 01:20:27 2009 -0500
+
+    Blackfin: disable syscontrol code for now
+
+    Looks like the initcode updates fell out of order during my merges.  The
+    patch that really fixes up this code is part of power-on overhaul and so
+    is too large for merging at this point.  Instead, we can disable the code
+    as no currently in-tree board depends on it.  The next merge window will
+    fix things up properly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1b228d68f54832edd867ef98520f760f68192ab7
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Feb 19 01:19:49 2009 -0500
+
+    Blackfin: bf537-stamp: fix I2C board defines
+
+    The previous merge for cleaning up the I2C driver incorrectly reverted the
+    CFG_xxx rename for some of the I2C defines.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 09fee8e8677a6265e89144ccc163bf00e321769e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Feb 22 01:19:52 2009 +0100
+
+    Coding Style cleanup; update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 1dcb50afbb63a439320a985380a0af2dca079d1e
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Feb 22 01:17:47 2009 +0100
+
+    Makefile: fix cleanup
+
+    Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
+    to adapt the cleanup rules in the Makefile
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit edff7bcc4d5540df8b416274652ff02e94c38b9e
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Feb 20 13:01:56 2009 -0500
+
+    Cleanup the comment for m68k linux boot argument passing.
+
+    This patch clarifies the way m68k passes linux boot argument.
+    The one gotcha here is that the assembly instruction that
+    the compiler uses to jump to the kernel is 'jsr' which pushes the
+    program counter for the instruction after the jsr into the stack pointer.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4d41650eec959668280a612467bd95c7b8398513
+Author: Peter Griffin <pgriffin@mpc-data.co.uk>
+Date:  Tue Feb 10 16:44:45 2009 +0000
+
+    sh: Fix rsk7203 in tree build
+
+    Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
+
+commit fca0cecff73db99d99ad094cca7980472b8a11b5
+Author: Minkyu Kang <mk7.kang@samsung.com>
+Date:  Wed Feb 18 09:05:52 2009 +0900
+
+    bootm: Reduce the unnecessary memmove
+
+    Although load address and image start address are same address,
+    bootm command always does memmove.
+    That is unnecessary memmove and can be taken few milliseconds
+    (about 500 msec to 1000 msec).
+    If skip this memmove, we can reduce the boot time.
+
+    Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
+
+commit 670cbde8da83690fed1064c3358f54ae1d693ed2
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Sun Feb 15 22:29:15 2009 +0100
+
+    fpga: Fix Spartan III FPGA booting
+
+    This patch does some minor fixing of the Xilinx Spartan III
+    FPGA boot code:
+
+    - Fixed call order of post configuration callback and
+      success message printing (result of copy-paste?)
+    - remove obsolete comment
+    - minor coding style cleanup
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+
+commit 3818b677641038d27b2663fbd6771ad38c932f86
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Sun Feb 15 22:28:36 2009 +0100
+
+    fpga: Fix Spartan II FPGA booting
+
+    This patch does some minor fixing of the Xilinx Spartan II
+    FPGA boot code:
+
+    - Fixed call order of post configuration callback and
+      success message printing (result of copy-paste?)
+    - relocate post configuration callback only when it
+      is implemented
+    - remove obsolete comment
+    - minor coding style cleanup
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+
+commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 20:26:52 2009 -0500
+
+    drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
+Author: Derek Ou <dou@siconix.com>
+Date:  Tue Feb 3 16:00:07 2009 -0700
+
+    lcd_putc bug fix for tab.
+
+    Signed-off-by: Derek Ou <dou@siconix.com>
+
+commit 35c9e14d8096e519fe76c953a43d52a09617345c
+Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+Date:  Mon Feb 2 09:46:21 2009 +0900
+
+    MIPS: cpu/mips/Makefile: Add a missing START line
+
+    In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
+    Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
+    line.  This patch puts it back.
+
+    Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
+
+commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Feb 21 21:51:21 2009 +0100
+
+    Enable ext2 support for TQM8xxL/M based boards
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Fri Feb 20 03:47:50 2009 +0100
+
+    ARM:PXA Use new definitions in mmc.h
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 682beeac34dc9ab18fab58b26973d2e29d113717
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Fri Feb 20 03:47:50 2009 +0100
+
+    Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
+
+    These names are being taken over by the new MMC framework. Hopefuly
+    the PXA can be easily ported, and these functions will go away entirely.
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b03d92e5584935886ff91d5aa0755dc8888b7187
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Feb 20 03:47:50 2009 +0100
+
+    pxa: move mmc drivers to drivers/mmc
+
+    introduce new macro CONFIG_PXA_MMC to activate it
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 9490f465642c80c054854689a2ef1a77d65cf1f3
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Thu Feb 19 19:27:22 2009 -0600
+
+    ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
+
+    These structures are defined in the common mmc.h
+
+    This was compile checked on cerf250.
+
+commit 94a3312920b6f9b5da27309549fb73650718c10a
+Author: Micha Kalfon <smichak.uv@gmail.com>
+Date:  Wed Feb 11 19:50:11 2009 +0200
+
+    pxa: fixing get_timer to return time in miliseconds.
+
+    Fixing the get_timer function to return time in miliseconds instead of
+    ticks. Also fixed PXA boards to use the conventional value of 1000 for
+    CONFIG_SYS_HZ.
+
+    Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
+
+commit e5e88c3614b79b54719905f66aefb51f9494bc1f
+Author: Tom Rix <Tom.Rix@windriver.com>
+Date:  Thu Feb 19 16:45:43 2009 -0600
+
+    ARM:OMAP3 Change mmc_init to mmc_legacy_init
+
+    omap3_mmc.c was changed to define mmc_legacy_init.
+    Remove unused functions.
+
+    Compile tested on all arm
+    Runtime tested on Zoom1.
+
+    Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
+
+commit 9e80bb21629988063574f88ca0d28baadff4d963
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Feb 19 17:23:58 2009 +0100
+
+    82xx, mgcoge: updates for 2009.03
+
+    - activate CS4 for accessing the FPGA
+    - activate Rx buf len > 1 on SMC
+    - pram activated
+    - MTDPARTS_DEFAULT defined
+    - update the size of the flashes in the DTS
+      before booting Linux
+    - MONITOR_LEN updated to 384k
+    - added CONFIG_HOSTNAME
+    - added CONFIG_ENV_BUFFER_PRINT
+    - Environment size reduced to 16k
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit df909554e2401f307925e1bd45d576e4176d9de9
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Feb 19 17:24:01 2009 +0100
+
+    8xx, mgsuvd: updates for 2009.03
+
+    - activate Rx buf len > 1 on SMC
+    - pram activated
+    - MTDPARTS_DEFAULT defined
+    - update the size of the flash in the DTS
+      before booting Linux
+    - MONITOR_LEN updated to 384k
+    - added CONFIG_HOSTNAME
+    - added CONFIG_ENV_BUFFER_PRINT
+    - Environment size reduced to 16k
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 3511b4e208e12be85b532866f1c660aa2e021557
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Feb 18 19:59:39 2009 +0100
+
+    MMC: Don't use new framework code if not enabled
+
+    Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
+    isn't enabled.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 32482be67775e00b4cbc49fba62347c1ecc6229c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Feb 19 13:53:29 2009 +0100
+
+    TQM8xxL: make some room in low memory for future needs
+
+    THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
+    small boot sectors in the flash. This patch makes some room in the
+    first sector to prepare for a size increase of lib_generic/vsprintf.o
+    by a future patch.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Wed Feb 18 18:06:18 2009 -0600
+
+    README: remove duplicate entry
+
+    it's been around since the original commit (2ad6b513) that added two
+    identical entries.
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 1bba30efe1717bea13026e15c7c7d906419fac69
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Feb 19 00:41:08 2009 +0100
+
+    Coding style cleanup, update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Wed Feb 18 17:43:59 2009 -0600
+
+    sata_sil3114: fix compiler warning
+
+    judging from other printfs in the same file, it seems ata should be
+    postpended with the interface number, not the address of the global
+    port variable.  Fixes this for current u-boot-mpc83xx tree:
+
+    Configuring for MPC8349ITX board...
+    sata_sil3114.c: In function 'sata_bus_softreset':
+    sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
+    sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
+Author: Ron Madrid <ron_madrid@sbcglobal.net>
+Date:  Wed Feb 18 14:30:44 2009 -0800
+
+    Create configuration option for restricted ns16550 functions
+
+    This patch will create a configuration option for a minimum configuration for
+    the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
+    configuration option to the SIMPC8313.h config file in order to fix the NAND
+    bootstrap build error.  This option will exclude all functions with exception of
+    NS16550_putc and NS16550_init.  This will be used primarily to save space and
+    remove unused code from builds in which space is limited.
+
+    Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
+
+commit 7b0bc0219db8981613259473cf19699ac259b4fb
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Wed Feb 18 16:14:29 2009 -0600
+
+    mkconfig: include board config.h before asm/config.h
+
+    swapping the include order suppresses warnings for board configs
+    that define their own CONFIG_MAX_MEM_MAPPED:
+
+    In file included from /home/r1aaha/git/u-boot/include/config.h:5,
+                   from /home/r1aaha/git/u-boot/include/common.h:35,
+                   from simpc8313.c:26:
+    /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
+    "CONFIG_MAX_MEM_MAPPED" redefined
+    In file included from /home/r1aaha/git/u-boot/include/config.h:4,
+                   from /home/r1aaha/git/u-boot/include/common.h:35,
+                   from simpc8313.c:26:
+    /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
+    the location of the previous definition
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Feb 18 21:35:38 2009 +0100
+
+    Fix build errors after making flash_get_info() non-static
+
+    Fix for these build problems:
+    error: static declaration of 'flash_get_info' follows non-static declaration
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit b4996d6b2140e5da7f1c346f37a67b19907b307a
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Feb 18 13:18:00 2009 +0100
+
+    ppc4xx: PCIe: Change 16GB inbound memory to 4GB
+
+    This patch fixes a problem recently seen on some 4xx platforms. For
+    example on Kilauea PCIe slot #0.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Feb 18 14:05:37 2009 +0100
+
+    ppc4xx: Some more PMC405 coding-style cleanup
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Sun Feb 15 22:27:47 2009 +0100
+
+    ppc4xx: Update PMC405 board support
+
+    This patch prepares the good old PMC405 board support for
+    upcoming PMC405V2 patches.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
+Author: Matthias Fuchs <matthias.fuchs@esd.eu>
+Date:  Sun Feb 15 22:26:54 2009 +0100
+
+    ppc4xx: Cleanup PMC405 board support
+
+    This patch fixes coding style for PMC405 board support.
+    Also some unneeded features/code is removed.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Thu Feb 5 04:08:20 2009 +0100
+
+    qong: changes to Dave/DENX Qong configuration
+
+    1. Changes to the default environment:
+      - "bootcmd" defined as "run flash_self"
+      - "saveenv" command removed from "update"
+      - "uboot" changed to "u-boot" (also in "load")
+      - "addmtd" variable defined (and added to all boot commands)
+    2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
+    3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
+    4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
+    with truncated "bootargs" environment variable.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 5f0320108870e5d62983d1d5c13a2a087dddf686
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 1 17:07:52 2009 +0100
+
+    common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit ec6f14994602276660f7264c6ab3b91ef1f7614d
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Feb 1 17:07:51 2009 +0100
+
+    common/console: coding style cleanup
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit daaf74f176b548dfd34a9990231f4189201d57ba
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jan 29 20:02:23 2009 -0500
+
+    mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
+
+    Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
+    into the Makefile so we avoid pointless compiling of the file.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7bd2722e890bc877a3c057d7ccddc80451c99939
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jan 29 20:02:07 2009 -0500
+
+    disk: convert part_* files to COBJ-$(CONFIG_XXX) style
+
+    Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
+    avoid pointless compiles.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
+Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
+Date:  Thu Jan 29 10:35:40 2009 +0200
+
+    include/image.h: Ease grepping of image_* functions
+
+    Because the functions have been defined using macros, grepping for
+    their definitions is not possible. This patch adds the real function
+    names in comments.
+
+    Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
+    Acked-by: Mike Frysinger <vapier@gentoo.org>
+
+commit bdab39d358e63aa47f400a8a76b8d5f283842df3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Jan 28 19:08:14 2009 -0500
+
+    rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
+
+    The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
+    rather than a generic "env" command, or anything else related to the
+    environment.  So, let's make sure the define is named accordingly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Fri Jan 23 20:02:17 2009 +0200
+
+    disable imls command if no flash is defined
+
+    Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+
+commit 923aa48126259c13de95131203f1d28bfa5cb889
+Author: Rafal Jaworowski <raj@semihalf.com>
+Date:  Fri Jan 23 13:27:18 2009 +0100
+
+    API: Improve glue mid-layer of the API demo application.
+
+    - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
+    read, which allows for better control and error handling (this introduces
+    additional error code API_ESYSC returned by the glue mid-layer).
+
+    - Clean up definitions naming and usage.
+
+    - Other minor cosmetics.
+
+    Note these changes do not touch the API proper, so the interface between
+    U-Boot and standalone applications remains unchanged.
+
+    Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
+Author: Rafal Jaworowski <raj@semihalf.com>
+Date:  Fri Jan 23 13:27:17 2009 +0100
+
+    API: Only output test data when reading was successful.
+
+    Signed-off-by: Rafal Czubak <rcz@semihalf.com>
+
+commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
+Author: Rafal Jaworowski <raj@semihalf.com>
+Date:  Fri Jan 23 13:27:16 2009 +0100
+
+    API: Provide syscall entry point for the ARM architecture.
+
+    Signed-off-by: Rafal Czubak <rcz@semihalf.com>
+    Acked-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit b84d7d8f1e1066f810866304a16a3583f88e7c98
+Author: Rafal Jaworowski <raj@semihalf.com>
+Date:  Fri Jan 23 13:27:15 2009 +0100
+
+    API: Use stack pointer as API signature search hint in the glue layer.
+
+    De-hardcode range in RAM we search for the API signature. Instead use the stack
+    pointer as a hint to narrow down the range in which the signature could reside
+    (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
+    from stack area). Adjust PowerPC code in API demo to the new scheme.
+
+    Signed-off-by: Rafal Czubak <rcz@semihalf.com>
+    Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
+
+commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Feb 17 10:26:38 2009 +0100
+
+    TQM8260: fix locations of kernel and ramdisk images in flash
+
+    After introducing redundant environment the kernel images was
+    overlapping with environment.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
+Author: Heiko Schocher <hs@denx.de>
+Date:  Wed Feb 11 19:26:15 2009 +0100
+
+    83xx: add missing TIMING_CFG1_CASLAT_* defines
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Thu Feb 5 14:35:21 2009 +0200
+
+    mpc8349itx: allow SATA boot from the onboard SIL1334
+
+    This patch allows using of SATA devices connected
+    to the onboard PCI SIL1334 SATA controller.
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit e1ac387f4645499746856adc1aeaa9787da2eca6
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:50:14 2008 -0500
+
+    83xx: Add eSDHC support on 8379 EMDS board
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 80522dc8369a89938369fbcee572e662373bc9a3
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:51:33 2008 -0500
+
+    85xx: Add eSDHC support for 8536 DS
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 50586ef24ed5caf6ce5591df76f355009da2cd79
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:47:16 2008 -0500
+
+    Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
+
+    This uses the new MMC framework
+
+    Some contributions by Dave Liu <daveliu@freescale.com>
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 272cc70b211e945e4413122aa73868f6ada732a5
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:41:01 2008 -0500
+
+    Add MMC Framework
+
+    Here's a new framework (based roughly off the linux one) for managing
+    MMC controllers.  It handles all of the standard SD/MMC transactions,
+    leaving the host drivers to implement only what is necessary to
+    deal with their specific hardware.
+
+    This also hooks the infrastructure into the PowerPC board code
+    (similar to how the ethernet infrastructure now hooks in)
+
+    Some of this code was contributed by Dave Liu <daveliu@freescale.com>
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 1de97f9856f697380cc504126ab92561ed238803
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:31:39 2008 -0500
+
+    Eliminated arch-specific mmc header requirement
+
+    The current MMC infrastructure relies on the existence of an
+    arch-specific header file. This isn't necessary, and a couple
+    drivers were forced to implement dummy files to meet this requirement.
+    Instead, we move the stuff in those header files into a more appropriate
+    place, and eliminate the stubs and the #include of asm/arch/mmc.h
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:21:00 2008 -0500
+
+    Convert mmc_init to mmc_legacy_init
+
+    This is to get it out of the way of incoming MMC framework
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Thu Oct 30 16:19:25 2008 -0500
+
+    Eliminate support for using MMC as memory
+
+    MMC cards are not memory, so we stop treating them that way.
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit e1be0d25ecf494ae81245ca438738ba839d6329b
+Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
+Date:  Sun Jan 4 08:46:38 2009 +0530
+
+    32bit BUg fix for DDR2 on 8572
+
+    This errata fix is required for 32 bit DDR2 controller on 8572.
+    May  also be required for P10XX20XX platforms
+
+    Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
+
+commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Mon Feb 16 09:40:20 2009 -0600
+
+    TQM85xx: Fix a couple warnings in TQM8548 build
+
+    The ecm variable in sdram.c was being declared for all 8548, but only
+    used by specific 8548 boards, so we make that variable require those
+    specific boards, too
+
+    The nand code was using an index "i" into a table, and then re-using "i"
+    to set addresses for each upm.  However, then it relied on the old value
+    of i still being there to enable things.  Changed the second "i" to "j"
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:26 2009 +0100
+
+    MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
+
+    This patch adds the workaround for erratum DDR20 according to MPC8548
+    Device Errata document, Rev. 1: "CKE signal may not function correctly
+    after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
+    processor version 2.1 and the work-around must be removed.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit 080408fdc71706adcb883d22125637c54f6010b1
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:25 2009 +0100
+
+    MPC85xx: TQM8548: use cache for AG and BE variants
+
+    This patch makes accesses to the system memory cachable by removing the
+    caching-inhibited and guarded flags from the relevant TLB entries for
+    the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
+    are configured similarly.
+
+    This results in a big averall performace improvement. TFTP downloads,
+    NAND Flash accesses, kernel boots, etc. are much faster.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:24 2009 +0100
+
+    MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
+
+    This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
+    module.
+
+    Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit 88b0e88d186479349e5a2b771e82775109e10fb4
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:23 2009 +0100
+
+    MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
+
+    According to new TQM8548 timing specification:
+    Refresh Recovery: 34 -> 53 clocks
+    CKE pulse width:  1 -> 3 cycles
+    Window for four activities: 13 -> 14 cycles
+
+    Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit a865bcdac89278cac4dfc07dec8299403110499d
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:22 2009 +0100
+
+    MPC85xx: TQM8548: add support for the TQM8548_AG module
+
+    The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
+    CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
+    with "$ make TQM8548_AG_config".
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit ad7ee5d43b0db94079d56521dabca25674f28747
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:21 2009 +0100
+
+    MPC85xx: TQM8548: add support for the TQM8548_BE module
+
+    The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
+    interface. With NAND support, the image is significantly larger and
+    TEXT_BASE is adjusted accordingly. U-Boot can be built for this
+    module with "$ make TQM8548_BE_config".
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:20 2009 +0100
+
+    MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
+
+    The TQM8548_AG module does not have the standard PCI/PCI-X interface
+    connected but just the PCI Express interface . So far it was not
+    possible to disable it without disabling the complete PCI interface
+    (CONFIG_PCI) including PCI Express.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Wed Feb 11 18:38:19 2009 +0100
+
+    MPC85xx: TQM85xx: fix flash protection for boot loader
+
+    As the reset vector is located at 0xfffffffc, all flash sectors from the
+    beginning of the U-Boot binary to 0xffffffff must be protected. On the
+    TQM8548-AG having small sectors at the end of the flash it happened that
+    the last two sector were not protected and an "erase all" left an
+    un-bootable system behind:
+
+    Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
+      AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
+      Erase timeout: 8192 ms, write timeout: 1 ms
+
+      FFFA0000 E RO   FFFC0000  RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
+      FFFEC000  RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
+
+    The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
+    board BSPs as well.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+
+commit a1c8a719262151f97119e76166043ee3da3f97b2
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Feb 6 14:30:40 2009 -0600
+
+    86xx: Update CPU info output on bootup
+
+    - Update style of 86xx CPU information on boot to more closely
+      match 85xx boards
+    - Fix detection of 8641/8641D
+    - Use strmhz() to display frequencies
+    - Display L1 information
+    - Display L2 cache size
+    - Fixed CPU/SVR version output
+
+    == Before ==
+    Freescale PowerPC
+    CPU:
+       Core: E600 Core 0, Version: 0.2, (0x80040202)
+       System: Unknown, Version: 2.1, (0x80900121)
+       Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
+       L2: Enabled
+    Board: X-ES XPedite5170 3U VPX SBC
+
+    == After ==
+    CPU:   8641D, Version: 2.1, (0x80900121)
+    Core:  E600 Core 0, Version: 2.2, (0x80040202)
+    Clock Configuration:
+          CPU:1066.667 MHz, MPX:533.333 MHz
+          DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
+    L1:    D-cache 32 KB enabled
+          I-cache 32 KB enabled
+    L2:    512 KB enabled
+    Board: X-ES XPedite5170 3U VPX SBC
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Thu Feb 5 11:25:24 2009 -0600
+
+    86xx: Update Global Utilities structure
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 4ef630df773e45806d701bf5d25c328778bb4cde
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Thu Feb 5 11:25:25 2009 -0600
+
+    86xx: Reset update
+
+    Update the 86xx reset sequence to try executing a board-specific reset
+    function.  If the board-specific reset is not implemented or does not
+    succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
+    reset procedure than the previous method and allows all board
+    peripherals to be reset if needed.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Feb 10 23:53:40 2009 -0600
+
+    fsl-ddr: Allow system to boot if we have more than 4G of memory
+
+    Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
+    an error and hang. Instead of doing that since DDR is mapped in the
+    lowest priority LAWs we setup the DDR controller and the max amount
+    of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
+Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
+Date:  Wed Jan 21 17:17:33 2009 -0600
+
+    mpc85xx: Add support for the P2020
+
+    Added various p2020 processor specific details:
+    * SVR for p2020, p2020E
+    * immap updates for LAWs and DDR on p2020
+    * LAW defines related to p2020
+
+    Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
+    Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit cb69e4de8702e108324e1c40363f30ef6f2e2918
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Feb 10 17:36:15 2009 -0600
+
+    85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
+
+    Added some info that is printed out when we boot to distiquish if we
+    built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
+    different address maps.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Fri Dec 5 20:10:22 2008 -0600
+
+    Fixup SGMII PHY ids in the device tree
+
+    The device tree's PHY addresses need to be fixed up if we're using the
+    SGMII Riser Card.
+
+    The 8572, 8536, and 8544 DS boards were modified to call this function.
+
+    Code idea taken from Liu Yu <yu.liu@freescale.com>
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 5dc0cf68f8f101042997d75188081d8526d705ea
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Wed Feb 11 15:10:31 2009 -0600
+
+    Make some minor whitespace changes to eliminate line-wrapping
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Wed Feb 11 15:07:24 2009 -0600
+
+    Add eth_get_dev_by_index
+
+    This allows code to iterate through the ethernet devices
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+
+commit b67305120aaf268a6140125346678166d14f1f47
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Feb 9 22:03:04 2009 -0600
+
+    85xx: Fix bug in device tree setup in 36-bit physical confg
+
+    In the 36-bit physical config for MPC8572DS when need the start address
+    of memory and it size to be kept in phys_*_t instead of a ulong since
+    we support >4G of memory in the config and ulong cant represent that.
+    Otherwise we end up seeing the memory node in the device tree reporting
+    back we have memory starting @ 0 and of size 0.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ad97dce18445ff05bf326094e691a01aa95aa8dc
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Mon Feb 9 22:03:05 2009 -0600
+
+    85xx: Fix address map for 36-bit config of MPC8572DS
+
+    When we introduced the 36-bit config of the MPC8572DS board we had the
+    wrong PCI MEM bus address map.  Additionally, the change to the address
+    map exposes a small issue in our dummy read on the ULI bus.  We need
+    to use the new mapping functions to handle that read properly in the
+    36-bit config.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit f8523cb0815b2d3d2d780b7d49ca614105555f58
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Feb 6 09:56:35 2009 -0600
+
+    85xx: Fix how we map DDR memory
+
+    Previously we only allowed power-of-two memory sizes and didnt
+    handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
+    and should properly handle any size that we can make in the TLBs
+    we have available to us
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Feb 6 09:56:34 2009 -0600
+
+    fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
+
+    If we only have one controller we can completely ignore how
+    memctl_intlv_ctl is set.  Otherwise other levels of code get confused
+    and think we have twice as much memory.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Feb 4 09:35:57 2009 -0600
+
+    85xx: Format cpu freq printing to handle 8 cores
+
+    Only print 4 cpu freq per line.  This way when we have 8 cores its a
+    bit more readable.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
+Author: Abraham, Thomas <t-abraham@ti.com>
+Date:  Tue Oct 28 16:51:31 2008 +0530
+
+    USB: Remove LUN number from CDB
+
+    The LUN number is not part of the Command Descriptor Block (CDB) for scsi inquiry, request sense, test unit ready, read capacity and read10 commands. This patch removes the LUN number information from the CDB.
+
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit f3c0de636252f3a18654c8f9c6370a9574a7e755
+Author: Atin Malaviya <atin.malaviya@gmail.com>
+Date:  Tue Feb 3 15:17:10 2009 -0500
+
+    Added usbtty_configured() check. Fixed attribute(packed) warnings.
+
+    V3: Fixed line-wrap problem due to user error in mail!
+
+    Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
+    when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
+    Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
+
+    Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 13 09:23:36 2009 +0100
+
+    i.MX31: Start the I2C clock on driver initialisation
+
+    i.MX31 powers on with most clocks running, so, after a power on this explicit
+    clock start up is not required. However, as Linux boots it disables most clocks
+    to save power. This includes the I2C clock. If we then soft reboot from Linux
+    the I2C clock stays off. This breaks the phycore, which has its environment in
+    I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
+    initialisation routine.
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+    Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Feb 11 20:36:14 2009 -0500
+
+    i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
+
+    The Blackfin i2c driver has been rewritten thus the special ifdefs in the
+    common code are no longer needed.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c2d9befa0b4695b89476fb5d259742c09afe243f
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Feb 12 08:08:54 2009 +0100
+
+    82xx, mgcoge: fix compile error
+
+    With actual u-boot compiling the mgcoge port fails, because
+    since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
+    necessary to define CONFIG_NET_MULTI.
+
+    Seems to me the mgcoge port is the only actual existing 8260
+    port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
+    to be fixed.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Mon Feb 9 08:18:34 2009 +0100
+
+    ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 7369f0e384e2a831be13a7773a58242c9173fa9c
+Author: Carolyn Smith <carolyn.smith@tektronix.com>
+Date:  Thu Feb 12 06:13:44 2009 +0100
+
+    ppc4xx: Fix initialization of the SDRAM_CODT register
+
+    This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
+    initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
+    and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
+
+    Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Feb 11 09:29:33 2009 +0100
+
+    ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
+
+    Some AMCC eval boards do have a board_eth_init() function calling
+    pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
+    with the new eth_init rework.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c645012aefebb301e6907d148c6c8efacac049d4
+Author: Adam Graham <agraham@amcc.com>
+Date:  Mon Feb 9 13:18:12 2009 -0800
+
+    ppc4xx: Autocalibration can set RDCC to over aggressive value.
+
+    The criteria of the AMCC SDRAM Controller DDR autocalibration
+    U-Boot code is to pick the largest passing write/read/compare
+    window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
+    Cycle Select value.
+
+    On some Kilauea boards the DDR autocalibration algorithm can
+    find a large passing write/read/compare window with a small
+    SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
+    value "T1 Sample".
+
+    This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
+    "T1 Sample" proves to be to aggressive when later on U-Boot
+    relocates into DDR memory and executes.
+
+    The memory traces on the Kilauea board are short so on some
+    Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
+    value of "T1 Sample" shows up as a potentially valid value for
+    the DDR autocalibratiion algorithm.
+
+    The fix is to define a weak default function which provides
+    the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
+    to accept for DDR autocalibration. The default will be the
+    "T2 Sample" value. A board developer who has a well defined
+    board and chooses to be more aggressive can always provide
+    their own board specific string function with the more
+    aggressive "T1 Sample" value or stick with the default
+    minimum SDRAM_RDCC.[RDSS] value of "T2".
+
+    Also put in a autocalibration loop fix for case where current
+    write/read/compare passing window size is the same as a prior
+    window size, then in this case choose the write/read/compare
+    result that has the associated smallest RDCC T-Sample value.
+
+    Signed-off-by: Adam Graham <agraham@amcc.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 2ede879fcb67470524847bb4fc8972651bb46184
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Feb 11 09:37:12 2009 +0100
+
+    ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
+
+    CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
+    included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
+
+    It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
+    boards right now.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Thu Feb 12 00:08:39 2009 +0100
+
+    Coding style cleanup; update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Fri Jan 30 16:36:40 2009 -0600
+
+    Add feature-removal-schedule.txt
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 255d28e1642e8fc32a6753226be1a96b481ce111
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 10 09:32:38 2009 +0100
+
+    8xx serial, smc: Coding-Style cleanup serial SMC driver
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 10 09:31:47 2009 +0100
+
+    8xx serial, smc: add configurable SMC Rx buffer len
+
+    This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
+    With this option it is possible to allow the receive
+    buffer for the SMC on 8xx to be greater then 1. In case
+    CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
+    old version.
+
+    When defining CONFIG_SYS_SMC_RXBUFLEN also
+    CONFIG_SYS_MAXIDLE must be defined to setup the maximum
+    idle timeout for the SMC.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit e915f8bb73d74178bc21d3a457959883b1afd1c0
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Feb 5 21:04:36 2009 -0500
+
+    common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
+
+    Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
+    the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
+    code in the process.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ab76e9848a1f4db64d14233741d739a3b3360c93
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Feb 5 21:04:50 2009 -0500
+
+    bzip2: move ifdef handling to Makefile COBJS-$(...)
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
+Author: Jerry Van Baren <gvb.uboot@gmail.com>
+Date:  Thu Feb 5 22:18:02 2009 -0500
+
+    Fix whitespace damage: double space changed to a tab
+
+    At some point an intentional double space at the end of the sentence
+    got changed into a tab in the GPL header line:
+     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+
+    This patch fixes the damage.
+
+    Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
+
+commit 4f975678de995b55749d5e84590c268972a7c835
+Author: Heiko Schocher <hs@denx.de>
+Date:  Tue Feb 10 09:53:29 2009 +0100
+
+    cfi: make flash_get_info() non static
+
+    If on your board is more than one flash, you must know
+    the size of every single flash, for example, for updating
+    the DTS before booting Linux. So make this function
+    flash_get_info() extern, and you can have all info
+    about your flashes.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Thu Feb 5 23:58:25 2009 -0800
+
+    net: removed board-specific CONFIGs from MPC5xxx FEC driver
+
+    Added new CONFIG options for the three type of MAC-PHY interconnect and
+    applied them all relevant board config files
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 638ed3e296e70fab286d157b7adedaaa4a09a474
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Feb 5 21:04:47 2009 -0500
+
+    net/sntp.c: move ifdef into Makefile COBJS-$(...)
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
+Author: Andy Fleming <afleming@freescale.com>
+Date:  Tue Feb 3 18:26:41 2009 -0600
+
+    tsec: Fix a bug in soft-resetting
+
+    SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
+    clock cycles, so it's been mostly working. But we had no guarantee, and at
+    slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
+    enforces a 2 microsecond gap between assertion and deassertion.
+
+    Signed-off-by: Andy Fleming <afleming@freescale.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
+Author: Simon Munton <simon@nidoran.m5data.com>
+Date:  Mon Feb 2 09:44:08 2009 +0000
+
+    Fix 100Mbs ethernet operation on sh7763 based boards
+
+    100Mbs ethernet does not work on sh7763 chips due to the wrong value being
+    used in the GECMR register. Following diff fixes the problem
+
+    Signed-off-by: Simon Munton        <simon@nidoran.m5data.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
+Author: ksi@koi8.net <ksi@koi8.net>
+Date:  Fri Feb 6 16:27:55 2009 -0800
+
+    Fix MPC8260 with ethernet on SCC
+
+    This fixes MPC8260 compilation with ethernet on SCC. Probably was a
+    typo or something...
+
+    Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Jan 30 12:56:15 2009 +0100
+
+    82xx serial, smc: Coding-Style cleanup serial SMC driver
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Jan 30 12:55:38 2009 +0100
+
+    82xx serial, smc: add configurable SMC Rx buffer len
+
+    This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
+    With this option it is possible to allow the receive
+    buffer for the SMC on 82xx to be greater then 1. In case
+    CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
+    old version.
+
+    When defining CONFIG_SYS_SMC_RXBUFLEN also
+    CONFIG_SYS_MAXIDLE must be defined to setup the maximum
+    idle timeout for the SMC.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Feb 6 08:08:06 2009 -0600
+
+    ppc: Fix roll over bug in flush_cache()
+
+    If we call flush_cache(0xfffff000, 0x1000) it would never
+    terminate the loop since end = 0xffffffff and we'd roll over
+    our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 87c9063963561d3d01064be34d0c30855a56587b
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Feb 5 20:40:58 2009 -0600
+
+    ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
+
+    Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
+    between the two current users (lib_ppc/board.c, 44x SPD DDR2).
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Stefan Roese <sr@denx.de>
+
+commit 47d41cc3a11a03c6d56146d056145df73f47eb50
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Thu Feb 5 20:40:57 2009 -0600
+
+    Add an architecture specific config.h for common defines
+
+    We have common defines that we duplicate in various ways.  Having an
+    arch specific config.h gives us a common location for those defines.
+
+    Eventually we should be able to replace this when we have proper
+    Kconfig support.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:56 2009 -0600
+
+    mpc8641hpcn: Change PCI MEM pci bus address
+
+    Now that the rest of u-boot can support it, change the PCI bus
+    address of the PCI MEM regions from 0x80000000 to 0xc0000000,
+    and use the same bus address for both PCI1 and PCI2.  This will
+    maximize the amount of PCI address space left over to map RAM
+    on systems with large amounts of memory.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 1785dbeed43599eed1d8875673c96912cd770141
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:55 2009 -0600
+
+    drivers/block/ahci: Fix pci mapping bug
+
+    The code assumes that the pci bus address and the virtual
+    address used to access a region are the same, but they might
+    not be.  Fix this assumption.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:54 2009 -0600
+
+    MPC8641HPCN: Enable CONFIG_ADDR_MAP
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:53 2009 -0600
+
+    mpc8641hpcn: Clean up PCI mapping concepts
+
+    Clean up PCI mapping concepts in the 8641 config - rename _BASE
+    to _BUS, as it's actually a PCI bus address, separate virtual
+    and physical addresses into _VIRT and _PHYS, and use each
+    appopriately.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit c9315e6b4f244981de0b2eaaa29a7838a165b494
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:52 2009 -0600
+
+    mpc86xx: Add support to populate addr map based on BATs
+
+    If CONFIG_ADDR_MAP is enabled, update the address map
+    whenever we write a bat.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:51 2009 -0600
+
+    powerpc: Move duplicated BAT defines to mmu.h
+
+    The BAT fields are architected; there's no need for these to be in
+    cpu-specific files.  Drop the duplication and move these to
+    include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
+    used by the alaska board, and switch to using the BATU_BL_xxx defines
+    used by all the other boards.  The BL_ defines previously in use
+    had to be shifted into the proper position for use, which was inefficient.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 6e61fae4d360a1380b63e7d007b31477e366bcce
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:50 2009 -0600
+
+    drivers/pci: Create pci_map_bar function
+
+    It is no longer always true that the pci bus address can be
+    used as the virtual address for pci accesses.  pci_map_bar()
+    is created to return the virtual address for a pci region.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 2ecca3401775b125c3b9ff65766befb23989414b
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Tue Feb 3 18:10:49 2009 -0600
+
+    mpc8641hpcn: Set up outbound pci windows before inbound
+
+    Because the inbound pci windows are mapped generously, set up
+    the more specific outbound windows first.  This way, when we
+    search the pci regions for something, we will hit on the more
+    specific region.  This can actually be a problem on systems
+    with large amounts of RAM.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit b81b773ead0687114dc8a800f99ea6e504447739
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Mon Feb 2 16:34:52 2009 -0600
+
+    mpc8641hpcn: Use physical address in flash banks defintion
+
+    If the VA and PA of the flash aren't the same, the banks list
+    should be initialized to hold the physical address.  Correct this.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+
+commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Tue Feb 10 00:22:31 2009 +0100
+
+    qong: support for Dave/DENX QongEVB-LITE board
+
+    This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Mon Feb 9 18:45:28 2009 +0100
+
+    dnet: driver for Dave DNET ethernet controller
+
+    Driver for Dave DNET ethernet controller (used on Dave/DENX
+    QongEVB-LITE board).
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Feb 6 09:49:32 2009 -0600
+
+    pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
+
+    When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
+    we should give preference to memory regions that aren't system memory.
+
+    Its possible that we have over mapped system memory in the regions and
+    we want to avoid depending on the order of the regions.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Feb 6 09:49:31 2009 -0600
+
+    pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
+
+    The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
+    can be confusing when reading the code.
+
+    Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
+    for system memory mapping purposes.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
+Author: Ilya Yanok <yanok@emcraft.com>
+Date:  Sun Feb 8 00:59:43 2009 +0300
+
+    mx31: add GPIO registers definitions
+
+    Added definitions for i.MX31 processor GPIO registers.
+
+    Signed-off-by: Ilya Yanok <yanok@emcraft.com>
+
+commit 8da601280a8acbc3385784780ed35130e53812f1
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Feb 4 13:47:22 2009 -0600
+
+    NAND: Add timeout for reset command
+
+    Without the timeout present an infinite loop can occur if the
+    NAND device is broken or not present.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Feb 4 13:39:40 2009 -0600
+
+    NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
+
+    Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
+    for disabling the "No NAND device found!!!" warning when
+    CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
+    for silencing the warning.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
+Author: Valeriy Glushkov <gvv@lstec.com>
+Date:  Mon Jan 19 16:32:59 2009 +0200
+
+    NAND: Fixed invalid pointers to static relocated chip names
+
+    Dear Wolfgang,
+
+    You are right, the patch was ugly.
+    The new one seems to be better.
+
+    Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
+Author: Nishanth Menon <nm@ti.com>
+Date:  Mon Feb 2 18:20:12 2009 -0600
+
+    ARM:OMAP3:Zoom1: Add nand unlock option
+
+    Enable NAND_UNLOCK option for unlocking nand for
+    erase/write operations
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+
+commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
+Author: derek@siconix.com <derek@siconix.com>
+Date:  Mon Jan 26 14:08:17 2009 -0700
+
+    env_nand: fix env memory release
+
+    This fixes a bug that tmp environment memory not being released.
+
+    Signed-off-by: Derek Ou <dou@siconix.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 05fd88776419df59e7f37bac063a209409dd801d
+Author: Guennadi Liakhovetski <lg@denx.de>
+Date:  Fri Feb 6 10:37:45 2009 +0100
+
+    ARM: remove unused variable
+
+    The "size" variable in start_armboot() in lib_arm/board.c is only really
+    used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
+    eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
+
+    Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
+
+commit 6989e4f546d960a407dd5425f800dff9751c8132
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Thu Feb 5 09:33:50 2009 -0500
+
+    Coldfire: M527x: Add missing GPIO register address defines
+
+    Add missing GPIO registers address definition for Coldfire M5271.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 14:42:58 2009 -0500
+
+    Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
+
+    Modified mii_init to support boards with PHYs that are not set to
+    autonegotiate, but still want to use u-boot's mii commands to probe
+    the smi bus. Such PHYs will not set the Autonegotiate-done bit.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 11:44:30 2009 -0500
+
+    Coldfire: Applied baudrate formula of serial_init to serial_setbrg
+
+    Applied the patch for baudrate divider value truncation for
+    serial_init to serial_setbrg as well.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 14:07:05 2009 -0500
+
+    Coldfire: M5271EVB: Board header update (dependencies)
+
+    Cleanup for M5271EVB:
+    Added clarification on the use of CONFIG_SYS_CLOCK.
+    Modified to use u-boot's HUSH parser.
+    Cleanup on environment settings.
+    Removed compiler warning by defining CONFIG_SYS_CS0_*
+
+    Dependencies:
+    Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
+    This depends on a patch to include/asm-m68k/m5271.h
+    that defines the multiplier and divider ratios.
+
+    Removed the definition of CONFIG_SYS_FECI2C.
+    This depends on a patch that removes the use of it in
+    cpu/mcf52x2/cpu_init.c
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit e0db344fabfeb4f9649846f94838f51172f6a1f6
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Thu Jan 29 14:36:06 2009 -0500
+
+    Coldfire: M5271: Allow board header file to specify clock multiplier
+
+    M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
+
+    Allow the board header file to set their own multiplier and divider.
+    Added the #define for the multiplier and divider to the cpu header file.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 10:47:13 2009 -0500
+
+    Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
+
+    Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
+    Use read-modify-write to activate the FEC pins without disabling I2C.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit ee73cc59ab904976af3c33b454fc84f78618b2d1
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 09:45:34 2009 -0500
+
+    Coldfire: cmd_bdinfo cleanup
+
+    CONFIG_M68K bdinfo cleanup:
+
+    Fixed compiler warning about baudrate printing.
+    format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
+
+    Added printing of "cpufreq"
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Fri Jan 23 09:27:00 2009 -0500
+
+    Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
+
+    Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
+    was causing the bus clock (not CPU clock) to be declared twice as
+    fast as it actually is. This causes UARTS to operate at half the
+    specified baudrate.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit 59d1bda7f92c8a28c3aba94e48063749d425949f
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Tue Feb 3 15:15:21 2009 +0100
+
+    ppc4xx: Make PCIE support selectable
+
+    On some platforms PCIE support is not required, but would be included
+    because the cpu supports it. To reduce fooprint it is now configurable
+    via CONFIG_PCI_DISABLE_PCIE.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit b129eff5ede394cc1faeb6dbf6a987e91abce552
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Tue Feb 3 22:13:16 2009 +0100
+
+    ppc4xx: Only fixup opb attached UARTs
+
+    This patch updates the fdt UART clock fixup code to
+    only touch CPU internal UARTs on 4xx systems.
+    Only these UARTs are definitely clocked by gd->uart_clk.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jan 13 11:00:29 2009 -0500
+
+    Blackfin: move default boot SPI CS to common code
+
+    Move the default SPI CS that we boot from into common code so that it can
+    be used in other SPI drivers and environment settings.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Dec 10 12:33:54 2008 -0500
+
+    Blackfin: dynamically update UART speed when initializing
+
+    Previously, booting over the UART required the baud rate to be known ahead
+    of time.  Using a bit of tricky simple math, we can calculate the new board
+    rate based on the old divisors.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
+
+commit 97f265f14f23050f3cb997f617f3a6917b843ea2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Dec 9 17:21:08 2008 -0500
+
+    Blackfin: add support for fast SPI reads with Boot ROM
+
+    Newer Blackfin boot roms support using the fast SPI read command rather than
+    just the slow one. If the functionality is available, then use it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 67619982bfc5cd62710a48e3cbffc304cb78c341
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:46:52 2008 -0400
+
+    Blackfin: check for reserved settings in DDR MMRs
+
+    Some bits of the DDR MMRs should not be set.  If they do, bad things may
+    happen (like random failures or hardware destruction).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:54:00 2008 -0400
+
+    Blackfin: set default voltage levels for BF538/BF539 parts
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 1 01:29:57 2008 -0400
+
+    Blackfin: use on-chip syscontrol() rom function when available
+
+    Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
+    to be used to properly program the memory and voltage settings as it will
+    include (possibly critical) factory tested bias values.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Feb 5 11:44:52 2009 +0100
+
+    cfi_flash: Fix typo in cfi_flash.c
+
+    Patch "flash/cfi_flash: Use virtual sector start address, not phys"
+    introduced a small typo and compilation warning for systems with CFI
+    legacy support (e.g. hcu4). This patch fixes it.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 28745db969b72693754991c838f68a7fb4a8b1ab
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jan 29 11:21:38 2009 +0100
+
+    jedec_flash: Only use manufacturer defines from common flash.h
+
+    This patch removes the double defined manufacturer defines from
+    jedec_flash.c. Since the common defines in flash.h are 32bit
+    we now need the (16) cast. This patch also removes the compilation
+    warning (e.g. seen on hcu5):
+
+    ./MAKEALL hcu5
+    Configuring for hcu5 board...
+    jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Feb 5 11:25:57 2009 +0100
+
+    cfi_flash: Silence compilation warning
+
+    Patch "flash/cfi_flash: Use virtual sector start address, not phys"
+    introduced a small compilation warning. This patch fixes it.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
+Author: Becky Bruce <beckyb@kernel.crashing.org>
+Date:  Mon Feb 2 16:34:51 2009 -0600
+
+    flash/cfi_flash: Use virtual sector start address, not phys
+
+    include/flash.h was commented to say that the address in
+    flash_info->start was a physical address.  However, from u-boot's
+    point of view, and looking at most flash code, it makes more
+    sense for this to be a virtual address.  So I corrected the
+    comment to indicate that this was a virtual address.
+
+    The only flash driver that was actually treating the address
+    as physical was the mtd/cfi_flash driver.  However, this code
+    was using it inconsistently as it actually directly dereferenced
+    the "start" element, while it used map_physmem to get a
+    virtual address in other places.  I changed this driver so
+    that the code which initializes the info->start field calls
+    map_physmem to get a virtual address, eliminating the need for
+    further map_physmem calls. The code is now consistent.
+
+    The *only* place a physical address should be used is when defining the
+    flash banks list that is used to initialize the flash_info struct,
+    usually found in the board config file.
+
+    Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Feb 4 09:42:20 2009 +0100
+
+    Fix compiler warning
+
+    (shows up only when DEBUG is enabled)
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:45:55 2008 -0400
+
+    Blackfin: update anomaly lists
+
+    Update the anomaly lists to match latest anomaly sheets.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
+Author: Ralph Kondziella <rk@argos-messtechnik.de>
+Date:  Mon Jan 26 12:34:36 2009 -0700
+
+    ADS5121 Add PATA support
+
+    Original patch from Ralph Kondziella
+    plus clean up by Wolfgang Denk
+    plus changes by John Rigby
+       use ips clock not lpc
+       port forward to current u-boot release
+
+    Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+    Signed-off-by: John Rigby <jrigby@freescale.com>
+
+commit abfbd0ae4967df18102345db4f4b529a13da107b
+Author: Martha Marx <mmarx@silicontkx.com>
+Date:  Mon Jan 26 10:45:07 2009 -0700
+
+    ADS5121 Add IC Ident Module (IIM) support
+
+    IIM (IC Identification Module) is the fusebox for the mpc5121.
+    Use #define CONFIG_IIM to turn on the clock for this module
+    use #define CONFIG_CMD_FUSE to add fusebox commands.
+    Fusebox commands include the ability to read
+    the status, read the register cache, override the register cache,
+    program the fuses and sense them.
+
+    Signed-off-by: Martha Marx <mmarx@silicontkx.com>
+    Signed-off-by: John Rigby <jrigby@freescale.com>
+
+commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
+Author: John Rigby <jrigby@freescale.com>
+Date:  Fri Jan 23 10:33:15 2009 -0700
+
+    ADS5121 Fix rev2 silicon pci iopad config
+
+    Reset config is not correct
+
+    Signed-off-by: John Rigby <jrigby@freescale.com>
+
+commit 4c154252c480b13f69ce1b71a9530b0515da76a6
+Author: John Rigby <jrigby@freescale.com>
+Date:  Wed Nov 19 13:57:34 2008 -0700
+
+    ADS5121 DIU Add diu_bmp_addr env
+
+    Add support for using a bmp other than
+    FSL_Logo_BMP for the DIU splash screen.
+
+    Can now set the env var "diu_bmp_addr" to
+    the address of a BMP in flash to use instead
+    of the default FSL_Logo_BMP.
+
+    Signed-off-by: Martha Marx <mmarx@silicontkx.com>
+    Signed-off-by: John Rigby <jrigby@freescale.com>
+
+commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
+Author: John Rigby <jrigby@freescale.com>
+Date:  Thu Oct 30 16:39:35 2008 -0600
+
+    ADS5121 DIU Make inclusion of FSL logo optional
+
+    Make inclusion of FSL logo optional and
+    turn it off by default.
+
+    Signed-off-by: John Rigby <jrigby@freescale.com>
+
+commit bd99ec149abe94e7f6b2bda4766d701b4005053f
+Author: Remy Bohmer <linux@bohmer.net>
+Date:  Sun Feb 1 12:27:53 2009 +0100
+
+    Compile warning fix in onenand_uboot.h
+
+    Regression since merge window after 2009.01
+
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit a270d1e7295c3d829f42c0480117941dfc1c6477
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jan 29 06:33:55 2009 +0100
+
+    USB: Add EHCI support for VCT EHCI controller (really with driver now)
+
+    Somehow I missed the real driver part in my last patch version. This patch
+    now adds the driver.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
+Author: Cliff Cai <cliff.cai@analog.com>
+Date:  Sat Nov 29 18:22:38 2008 -0500
+
+    Blackfin: add driver for on-chip MMC/SD controller
+
+    This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
+
+    Signed-off-by: Cliff Cai <cliff.cai@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:47:34 2008 -0400
+
+    Blackfin: add port muxing for BF51x SPI
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit fc68f9f85959664d528daea2aef5ef54974331ce
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jan 6 06:16:19 2009 -0500
+
+    Blackfin: output booting source when booting
+
+    Knowing the booting source of the part is useful, especially when the part
+    can switch dynamically between sources.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8df3ce0f49c37947800ac7c84e751499882619fc
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Dec 11 06:30:46 2008 -0500
+
+    Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
+
+    Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
+    the Blackfin on-chip bootrom to boot out of SPI flash.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2b4a486e6fac502d8b883e344cc4012283945b3d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Dec 11 04:06:26 2008 -0500
+
+    Blackfin: update asm-blackfin/posix_types.h to latest Linux version
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e5eb93e77391bcc308697116c544ea1340aaae8a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Dec 6 02:54:52 2008 -0500
+
+    Blackfin: add port I bits
+
+    Some people need to access port I, so make sure the pins are defined.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8a6b272596d43de0db4943eac7af58c3534c4026
+Author: Sonic Zhang <Sonic.Zhang@analog.com>
+Date:  Wed Nov 26 22:16:45 2008 -0500
+
+    Blackfin: add driver for on-chip ATAPI controller
+
+    This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
+
+    Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 26 21:43:06 2008 -0500
+
+    Blackfin: add driver for on-chip NAND controller
+
+    This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4148e02abae9a099f4444b5e168ebc2b911d2295
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 12 07:18:15 2008 -0500
+
+    Blackfin: build with -mno-fdpic
+
+    Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
+    up u-boot, including ones that output FDPIC ELF by default.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Nov 11 05:43:57 2008 -0500
+
+    Blackfin: fix up EBIU defines
+
+    The EBIU defines for EBSZ 256/512 were incorrect.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 5 12:45:24 2008 -0500
+
+    Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
+
+    Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
+    as usable with the source/destination addresses and the count size.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b93c68648426f906d63b98117496b6415f505f39
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 5 08:50:23 2008 -0500
+
+    Blackfin: only flag L1 instruction for DMA memcpy
+
+    The performance difference from doing an 8 bit DMA memcpy vs an optimized
+    core memcpy can be pretty big when you add in the overhead of setting up the
+    MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
+    actually require it.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 5 07:20:37 2008 -0500
+
+    Blackfin: dma_memcpy(): fix random failures
+
+    We have to make sure the DMA channel is actually disabled in hardware before
+    attempting to reprogram it.  Otherwise the new settings are ignored and we
+    end up with random hangs/failures.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Nov 4 00:04:03 2008 -0500
+
+    Blackfin: rewrite cache handling functions
+
+    Take the cache flush functions from the kernel as they use hardware loops in
+    order to get optimal performance.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Nov 3 22:30:05 2008 -0500
+
+    Blackfin: setup bi_enetaddr for single nets
+
+    For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
+    based on $ethaddr, so set it up.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 40599239e7875b39e2a5c12e6545992041c72c52
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Oct 24 22:48:47 2008 -0400
+
+    Blackfin: cache core/system clock values
+
+    Calculating the clocks requires a bit of calls to gcc math functions, so
+    cache the values after the first run since they'll most likely never
+    change once U-Boot is up and running.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6957a6209b02f6b69607fc47425f13731cc477f1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Oct 24 18:18:16 2008 -0400
+
+    Blackfin: enable --gc-sections
+
+    Start building all Blackfin boards with -ffunction-sections/-fdata-sections
+    and linking with --gc-sections.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 20 21:08:54 2008 -0400
+
+    Blackfin: dont check baud if it wont actually get used
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 400f5778f375bc99c73c8488c555def261ccfab7
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Oct 14 07:54:09 2008 -0400
+
+    Blackfin: add driver for on-chip SPI controller
+
+    This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 18 05:33:51 2008 -0400
+
+    Blackfin: only build post code when CONFIG_POST
+
+    Save some time by using CONFIG_POST in the Makefile rather than C files.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jan 8 11:57:57 2009 -0500
+
+    Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
+
+    Redo how pointers are managed to get rid of ugly casts and strict pointer
+    aliasing issues that are highlighted by gcc 4.3.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Dec 9 17:46:21 2008 -0500
+
+    Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
+
+    No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
+    does exactly the same thing as common "CONFIG_RMII".
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Nov 5 06:36:15 2008 -0500
+
+    Blackfin: bfin_mac: use common debug()
+
+    Rather then defining our own DEBUGF(), just use the common debug().
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 20 13:59:51 2008 -0400
+
+    Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
+
+    Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
+    of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ac45af4e63ea925f4accc98453aab1a1166c196d
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Oct 14 04:52:00 2008 -0400
+
+    Blackfin: bfin_mac: cleanup MII/PHY functions
+
+    Cleanup and rewrite the MII/PHY related functions so that we can reuse the
+    existing common linux/miiphy.h code and hook into the `mii` command.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 6b310a05f0d10c751f22468040932139f71c71d3
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Oct 14 00:31:30 2008 -0400
+
+    Blackfin: bfin_mac: set MDCDIV based on SCLK
+
+    Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
+    use the real algorithm so it gets set correctly regardless of SCLK.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 930590f3e49c8f32256edf2e5861e1535a329c6c
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 09:10:48 2009 +0100
+
+    ixp: move serial to drivers/serial
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f90c8022f448bc5e93090e4b714368e52e912f0f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 09:04:58 2009 +0100
+
+    ixp: move pci init in arm/board instead of cpu
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 08:56:49 2009 +0100
+
+    ixp: move pci drivers to drivers/pci
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 012d5bab09a534e4800b02f50cf508e6837202ea
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 08:53:44 2009 +0100
+
+    ixp: Move conditional compilation to Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f693f501d67434df1f815fd1824a71973ae08207
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 08:53:44 2009 +0100
+
+    ixp: add missing os define
+
+    need by arm-elf toolchains and no impact on the arm-linux one
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Jan 31 09:53:39 2009 +0100
+
+    ixp: remove the option to include the Microcode
+
+    instead the board will have to load it from flash or ram
+    which will be specified by npe_ucode env var
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 1b017baf2071d8daf643bce87250db898c606c66
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Fri Jan 30 09:45:23 2009 +0100
+
+    ixp/npe: Move conditional compilation to Makefile
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed Jan 28 21:58:04 2009 +0100
+
+    SX1: add hardware V2 support
+
+    In the V2 the 2 flash has been replace by one 32MB flash
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit f877f2233dbcd7417c2f0babe6a849099b167f3c
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed Jan 28 21:58:03 2009 +0100
+
+    SX1: Fix second flash mapping
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed Jan 28 21:58:03 2009 +0100
+
+    SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Wed Jan 28 21:57:59 2009 +0100
+
+    move Samsung's board to board/samsung
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Thu Jan 29 12:07:21 2009 +0100
+
+    move ARM Ltd. to vendor dir
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
+Author: Larry Johnson <lrj@acm.org>
+Date:  Wed Jan 28 15:30:37 2009 -0500
+
+    ppc4xx: Clean up configuration file for Korat board
+
+    This patch updates the default environmental variables for the
+    Korat PPC 440EPx board, and makes additional minor fixes.
+
+    Signed-off-by: Larry Johnson <lrj@acm.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f20405e31680efc36293c59b4963db57c9d93df4
+Author: Larry Johnson <lrj@acm.org>
+Date:  Wed Jan 28 15:30:02 2009 -0500
+
+    ppc4xx: Add variable "korat_usbcf" for Korat board
+
+    The new environment variable "korat_usbcf" selects the USB
+    port used by the Korat board's CompactFlash controller.
+
+    Signed-off-by: Larry Johnson <lrj@acm.org>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
+Author: Gunnar Rangoy <gunnar@rangoy.com>
+Date:  Fri Jan 23 12:56:31 2009 +0100
+
+    AVR32: macb - Search for PHY id
+
+    This patch adds support for searching through available PHY-addresses in
+    the macb-driver. This is needed for the ATEVK1100 evaluation board,
+    where the PHY-address will be initialized to either 1 or 7.
+
+    This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
+    enabled tells the driver to search for the PHY address.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit af8626e0c08a780d9ded1d9c4883a89355f60e75
+Author: Olav Morken <olavmrk@gmail.com>
+Date:  Fri Jan 23 12:56:26 2009 +0100
+
+    Fix IP alignment problem
+
+    This patch removes volatile from:
+    volatile IP_t *ip = (IP_t *)xip;
+
+    Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
+    using volatile, which causes an exception since xip isn't aligned on a word
+    boundary.
+
+    Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
+    Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
+    Signed-off-by: Olav Morken <olavmrk@gmail.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 12a8b9db12f82a189ff143a58731007f5469da61
+Author: Ron Madrid <ron_madrid@sbcglobal.net>
+Date:  Wed Jan 28 16:17:21 2009 -0800
+
+    Marvell 88E1118 interrupt fix
+
+    This patch adjusts the LED control so that interrupt lines are not reading LEDs
+    and effectively causing indefinite interrupts to the controller.
+
+    Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:14:26 2009 +0100
+
+    net: smc911x.c: Add LAN9211 to chip_ids[] array
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jan 27 16:53:39 2009 -0500
+
+    Move is_valid_ether_addr() to include/net.h
+
+    Import the is_valid_ether_addr() function from the Linux kernel.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Mon Jan 5 12:25:13 2009 +0100
+
+    net: Sort Makefile labels
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jan 28 23:06:42 2009 +0100
+
+    85xx: Fix compile breakage with sbc8540 and sbc8560
+
+    This fixes an error which raises just a warning:
+    sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Jan 28 13:48:55 2009 -0500
+
+    SPD823TS: do not define CONFIG_CMD_ENV
+
+    Since the SPD823TS board does not actually have any writable flash to save
+    its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
+    disabled.
+
+    This fixes the build error:
+    common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
+    common/cmd_nvedit.c:557: undefined reference to `saveenv'
+    make: *** [u-boot] Error 1
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Jan 28 21:40:16 2009 +0100
+
+    OMAP3: Add Zoom1 board support
+
+    Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
+    http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+    Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
+
+commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Jan 28 21:39:58 2009 +0100
+
+    OMAP3: Add Pandora support
+
+    Add Pandora support.
+
+    Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
+
+commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Jan 28 21:39:58 2009 +0100
+
+    OMAP3: Add EVM board
+
+    Add EVM board support.
+
+    Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
+
+commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Wed Jan 28 21:39:57 2009 +0100
+
+    OMAP3: Add Overo board
+
+    Add Overo board support.
+
+    Signed-off-by: Steve Sakoman <sakoman@gmail.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+    Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
+
+commit f904cdbb68167c647887f19929ad295dbaac8862
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Tue Jan 27 18:19:12 2009 +0100
+
+    OMAP3: Add common power code, README, and BeagleBoard
+
+    Add BeagleBoard support, common power code and README.
+
+    Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Wed Jan 28 08:31:10 2009 -0600
+
+    85xx: Fix compile breakage with MPC8540EVAL
+
+    Configuring for MPC8540EVAL board...
+    mpc8540eval.c: In function 'checkboard':
+    mpc8540eval.c:53: error: invalid operands to binary /
+    make[1]: *** [mpc8540eval.o] Error 1
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
+Author: Bryan Wu <bryan.wu@analog.com>
+Date:  Sun Jan 18 23:04:27 2009 -0500
+
+    usb_scan_devices: fix output with no devices
+
+    We should check the return of usb_new_device() so that if no USB device is
+    found, we print out the right message rather than always saying "new usb
+    device found".
+
+    Signed-off-by: Bryan Wu <bryan.wu@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit f1c1f540243438246aefb703fdcf16957e3a72e1
+Author: Stefan Roese <sr@denx.de>
+Date:  Thu Jan 22 10:11:21 2009 +0100
+
+    USB: Add high-speed (480Mb/s) to all USB related outputs
+
+    With this patch the USB related connection speed output ("usb tree" command and
+    debug output) is now high-speed enabled.
+
+    This patch also fixes a compilation warning when debugging is enabled.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:12:19 2009 +0100
+
+    USB: Add dcache support to the EHCI driver
+
+    This patch adds routines to handle (flush/invalidate) the dcache for the
+    QH and qTD structures and data buffers. This is needed on platforms using
+    this EHCI support with dcache enabled (like the MIPS VCT board port).
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:12:28 2009 +0100
+
+    USB: Add EHCI support for VCT EHCI controller
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:12:10 2009 +0100
+
+    USB: Add config option to call ehci_hcd_init() again after EHCI reset
+
+    This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
+    to call ehci_hcd_init() again after ehci_reset() is executed. This
+    is needed for the upcoming VCT EHCI support which needs to re-init
+    the hcd part again after the EHCI CMD_RESET is executed.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 597eb28bd9691266b7b804364cda577cdb51d106
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:12:01 2009 +0100
+
+    USB: Fix speed detection on EHCI cntr with root hub transaction translators
+
+    This patch fixes an issue that the speed of USB devices was not detected
+    correctly on some EHCI controllers. This will be used on the upcoming VCT
+    EHCI support.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 09:41:20 2009 +0530
+
+    usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
+
+    Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
+    configuration file.
+
+    Signed-off-by: Ravi Babu <ravibabu@ti.com>
+    Signed-off-by: Swaminathan S <swami.iyer@ti.com>
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 538ef967715322f64ee08efa2296d9682111b014
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 09:41:16 2009 +0530
+
+    usb : musb : Enabling DM6446 (TI DaVinci) USB module power
+
+    Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
+    controller hook up to USB core layer.
+
+    Signed-off-by: Ravi Babu <ravibabu@ti.com>
+    Signed-off-by: Swaminathan S <swami.iyer@ti.com>
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit e142e9f35f8ec61e74bf8019428b003f5070c33b
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 09:41:13 2009 +0530
+
+    usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
+
+    Adding DM6446 (TI DaVinci) platform specific USB functionality for
+    USB Phy and VBUS initialization.
+
+    Signed-off-by: Ravi Babu <ravibabu@ti.com>
+    Signed-off-by: Swaminathan S <swami.iyer@ti.com>
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 09:41:09 2009 +0530
+
+    usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
+
+    Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
+    platform.
+
+    Signed-off-by: Ravi Babu <ravibabu@ti.com>
+    Signed-off-by: Swaminathan S <swami.iyer@ti.com>
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit a142896934c755e679ba87e227a8e449f39b0012
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 09:41:03 2009 +0530
+
+    usb : musb : Adding host controller driver for Mentor USB controller
+
+    Adding Mentor USB core functionality and Mentor USB Host controller
+    functionality for Mentor USB OTG controller (musbhdrc).
+
+    Signed-off-by: Ravi Babu <ravibabu@ti.com>
+    Signed-off-by: Swaminathan S <swami.iyer@ti.com>
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Jan 1 18:27:27 2009 -0500
+
+    usb.h: use standard __LITTLE_ENDIAN from Linux headers
+
+    Rather than forcing people to define a custom "LITTLEENDIAN", just use the
+    __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
+    already setting up.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 7b6e31eb17e3ff76238a60803fc531517d516223
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Wed Dec 31 10:33:56 2008 +0100
+
+    USB ehci ixp4xx support
+
+    Add USB ehci ixp4xx host controller. Test on ixdp465 board.
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Wed Dec 31 10:33:22 2008 +0100
+
+    USB ehci remove infinite loop and use handshake function
+
+    USB ehci code cleanup. Use handshake instead of infinite while loop
+    to check the STD_ASS status
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 8fea2914ac974029b65926ef8247d908f84d202d
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Wed Dec 31 10:32:41 2008 +0100
+
+    Add initial support for USB ehci pci
+
+    Add USB ehci pci support. This patch doesn't include any
+    pci_ids and it is not tested on real hardware.
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
+Author: Bryan Wu <Bryan.Wu@analog.com>
+Date:  Thu Jan 1 19:48:07 2009 -0500
+
+    usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
+
+    The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
+    does not like to be reset, so check for it.
+
+    Signed-off-by: Bryan Wu <bryan.wu@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 1eb734fed3b79a5e6106dad16e88041894fdab30
+Author: Thomas Abraham <t-abraham@ti.com>
+Date:  Sun Jan 4 12:15:35 2009 +0530
+
+    usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
+
+    This patch populates the 'priv' field of the USB keyboard device_t
+    structure. The 'priv' field is populated with the address of the
+    'struct usb_device' structure that represents the USB device.
+
+    The 'priv' field can then be used in the 'usb_event_poll' function to
+    determine the USB device that requires to be polled. An
+    example of its usage in 'usb_event_poll' function is as below.
+
+       device_t *dev;
+       struct usb_device *usb_kbd_dev;
+
+       <snip>
+
+       dev = device_get_by_name("usbkbd");
+       usb_kbd_dev = (struct usb_device *)dev->priv;
+       iface = &usb_kbd_dev->config.if_desc[0];
+
+    Signed-off-by: Thomas Abraham <t-abraham@ti.com>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit 366523c26b6320af171459b19e6e0e9e3baa83ca
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Thu Dec 18 10:05:37 2008 +0100
+
+    USB change speed
+
+    USB changes the speed according to the port status
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
+Author: Remy Böhmer <linux@bohmer.net>
+Date:  Sat Dec 13 22:51:58 2008 +0100
+
+    EHCI fix code and ixp4xx test.
+    USB ehci configuration parameter:
+
+    #define CONFIG_CMD_USB         1
+    #define CONFIG_USB_STORAGE     1
+    #define CONFIG_USB_EHCI
+    #define CONFIG_USB_EHCI_IXP4XX     1
+    #define CONFIG_EHCI_IS_TDI 1
+    #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
+    #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
+    #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
+    #define CONFIG_LEGACY_USB_INIT_SEQ     1
+
+    2 USB Device(s) found
+          scanning bus for storage devices... 0 Storage Device(s) found
+    => usb tree
+
+    Device Tree:
+      1  Hub (1.5MBit/s, 0mA)
+      |  u-boot EHCI Host Controller
+      |
+      |+-2  Mass Storage (12MBit/s, 100mA)
+          Sony Storage Media 0C07040930296
+
+    =>
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
+Author: michael <michael@panicking.retis>
+Date:  Thu Dec 11 13:43:55 2008 +0100
+
+    [PATCH] This patch add varius fix to the ehci.
+    - fix ehci_readl, ehci_writel
+    - introduce new define in ehci.h
+    - introduce the handshake function for waiting on a register
+    - fix usb_ehci_fsl with the new HC_LENGTH macro
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit db63299b1dd2894ade542278210bccd046de6435
+Author: michael <michael@panicking.retis>
+Date:  Wed Dec 10 17:55:19 2008 +0100
+
+    [PATCH] Fix EHCI usb. I start to test on a
+    IXP465 board and I find some errors in the code. This
+    patch fix:
+    - descriptor initizialization (config, interface and endpoint
+      must be one next-to the other when the USB_DT_CONFIG message
+      is send.
+    - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
+      and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
+    - Introduce the linux version of the usb_config_descriptor and
+      usb_interface descriptor. This descriptor does't contains
+      u-boot extension.
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit 6b92487dcf9afe83a3570153d66940fdb293be76
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Fri Nov 28 13:22:09 2008 +0100
+
+    USB ehci freescale support
+
+    Add USB ehci freescale support
+
+    Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit aaf098cfeed04595d4c5100ffd39095d79edbf90
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Fri Nov 28 13:20:46 2008 +0100
+
+    USB ehci core support
+
+    Add USB ehci core support
+
+    Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit 3e126484df7868e341545cce740b24b62b0cd3b7
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Fri Nov 28 13:19:19 2008 +0100
+
+    Prepare USB layer for ehci
+
+    Prepare USB layer for ehci support
+
+    Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+    Signed-off-by: Remy Böhmer <linux@bohmer.net>
+
+commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
+Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
+Date:  Wed Dec 10 15:52:06 2008 +0100
+
+    USB storage cleanup patch
+
+    Cleanup usb storage
+
+    Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
+    Signed-off-by: Remy Bohmer <linux@bohmer.net>
+
+commit fe033ad6d0883063fe857237abb9436fab03208c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 06:02:55 2008 -0400
+
+    Blackfin: fixup misc warnings such as printf's and missing casts
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Oct 12 22:09:26 2008 -0400
+
+    Blackfin: convert old boards to use COBJS-y Makefile style
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:38:37 2008 -0400
+
+    Blackfin: bf533-stamp: rewrite resource swap logic
+
+    The old swap function tended to clobber unrelated pins and screw up masks.
+    Rewrite the thing from scratch so it only uses the resources it needs.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 29d4ea0a9073c82469184331010136f52edf8db6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:08:42 2008 -0400
+
+    Blackfin: bootldr: implement BF53x/BF56x LDR loader
+
+    The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
+    arbitrary memory locations, so implement a basic one in software.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 8b35e3aeff6c2d747c37697997b3f8a808432329
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:05:42 2008 -0400
+
+    Blackfin: implement real write support for OTP
+
+    Now that real documentation has been released for the OTP interface and
+    the on-chip ROM wrt writing/timings, implement support for reading/writing
+    as well as dumping/locking.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 22:04:05 2008 -0400
+
+    Blackfin: update on-chip ROM API
+
+    This brings the API for the on-chip ROM in line with the toolchain and
+    hardware documentation.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7633903bff432ec7b27905dce7396958553f2be6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:52:17 2008 -0400
+
+    Blackfin: allow serial console to be disabled
+
+    Some devices have no UART device pulled out, so allow people to disable the
+    driver completely in favor of other methods (like JTAG-console).
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:51:20 2008 -0400
+
+    Blackfin: support console-over-JTAG
+
+    The Blackfin JTAG has the ability to pass data via a back-channel without
+    halting the processor.  Utilize that channel to emulate a console.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit cf8f2efb5f39c5225da92391c14a07eecbeca881
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:49:06 2008 -0400
+
+    Blackfin: handle new anomalies with reset
+
+    Workaround fun new anomalies related to software reset of the processor.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:44:00 2008 -0400
+
+    Blackfin: pass RETX to Linux
+
+    Make sure we save the value of RETX at power on and then pass it on to the
+    kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:40:26 2008 -0400
+
+    Blackfin: clarify relocation comment during init
+
+    People often ask questions about the init process and when things go
+    from flash to relocated base, so clarify the comments a bit.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:23:41 2008 -0400
+
+    Blackfin: just set SP register directly during init
+
+    No need to set the SP register indirectly to the configured value when it
+    can be set directly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 21:15:53 2008 -0400
+
+    Blackfin: add portmuxing for UARTs on the BF51x
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 4f6a313240c531042f16909a3a170ab047b95779
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 1 01:26:29 2008 -0400
+
+    Blackfin: respect CONFIG_CLKIN_HALF
+
+    As pointed out by Ivan Koryakovskiy, the initialization code was not
+    actually respecting the CONFIG_CLKIN_HALF option when configuring the
+    PLL_CTL register.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jun 1 01:21:34 2008 -0400
+
+    Blackfin: use common memcpy routine during init
+
+    Rather than using a local custom memcpy function, just call the existing
+    optimized Blackfin version.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 362c943347364e9373af4c5530778491ab56ec2e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Apr 9 02:27:06 2008 -0400
+
+    Blackfin: set default boot SPI CS for BF538/BF539
+
+    The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
+    Blackfin parts.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Apr 9 02:20:59 2008 -0400
+
+    Blackfin: punt unused BF533-STAMP definitions
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Apr 18 20:44:11 2008 -0400
+
+    Blackfin: resurrect BF533-STAMP video splash driver
+
+    This video driver used to live in the Blackfin cpu directory, but it was
+    lost during the unification process.  This brings it back.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit a750d038f2548d846ea1e046d873dc932d041319
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Apr 9 02:31:29 2008 -0400
+
+    Blackfin: tighten up post memory coding style
+
+    No functional changes here; just cleanup code style a bit.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Wed Apr 9 02:29:18 2008 -0400
+
+    Blackfin: bf537-stamp nand: fix more style errors in previous commit
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 41f3325ae9add641036d7cb362e884b698e53f07
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 20:31:17 2008 -0400
+
+    Blackfin: drop dead/wrong debug code in initdram()
+
+    The DEBUG code in initdram() is quite old and was never really useful, so
+    just drop it altogether.  Common Blackfin debug code does a better job.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Oct 11 20:30:28 2008 -0400
+
+    Blackfin: bf533-ezkit: shuffle flash defines a little
+
+    Some of the flash defines weren't in the correct location and caused build
+    problems in some configurations, so let's move types and defines to better
+    local locations.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit be853bf86b41e91f4c422f0f56fdf87ea3191266
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 04:16:47 2008 -0400
+
+    Blackfin: overhaul i2c driver
+
+    The current Blackfin i2c driver does not work properly with certain devices
+    due to it breaking up transfers incorrectly.  This is a rewrite of the
+    driver and relocates it to the newer place in the source tree.
+
+    Also remove duplicated I2C speed defines in Blackfin board configs and
+    disable I2C slave address usage since it isn't implemented.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 04:00:07 2008 -0400
+
+    Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
+
+    Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
+    128kB when setting up the default flash protection region for U-Boot
+    itself.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:57:39 2008 -0400
+
+    Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
+
+    When setting up the global data, rather than relying on sizeof(), use the
+    common CONFIG_SYS_GBL_DATA_SIZE define.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 01815c2d06c5b838f2cd536703e47bd2c9148194
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:52:24 2008 -0400
+
+    Blackfin: implement general support for CONFIG_STATUS_LED
+
+    Here are the Blackfin-specific and board-independent pieces for status leds.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 6882b5a79a3247494b62c05015fa672557f1bfaa
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:49:32 2008 -0400
+
+    Blackfin: do not init i2c in Blackfin board init
+
+    The common code takes care of calling i2c_init() when needed, so no point
+    in us doing it as well.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 1118ea73698eee6e72ef5cbfc00e41746040304f
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:42:20 2008 -0400
+
+    Blackfin: bfin_mac: update port muxing
+
+    Adds support more Blackfin parts and fixes broken muxing for older ones.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 05b75e48832fc4afeecf8e76d704349557dffa35
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 6 03:35:44 2008 -0400
+
+    Blackfin: fix dcache handling when doing dma memcpy's
+
+    Our dcache invalidate function doesn't just invalidate, it also flushes.
+    So rename the function accordingly and fix the dma_memcpy() function so it
+    doesn't inadvertently corrupt the data destination.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 68e5632494168095d75f120af70043b68afd2476
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 18:56:56 2008 -0400
+
+    Blackfin: dont generate ldrs with --force
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 18:55:30 2008 -0400
+
+    Blackfin: pass --bmode/--initcode when creating ldr
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 18:39:27 2008 -0400
+
+    Blackfin: minimize time cache is turned off when replacing cplb entries
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 21d631360430cf0ae9099612273cd4de28911ba9
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 15:31:13 2008 -0400
+
+    Blackfin: split cache handling out of dma_memcpy()
+
+    Creating a new dma_memcpy() function that skips all cache checks allows us
+    to use the function in very early init where the cache is not yet setup.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d31eb38512bed377d5d4b3c696662e52120a2e4c
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 15:30:49 2008 -0400
+
+    Blackfin: abort dma_memcpy() for L1 scratchpad
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 81b799add709177e838466461f7b9989488b0fd5
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 15:27:52 2008 -0400
+
+    Blackfin: rename bootm.c to boot.c
+
+    The boot file contains functions for more than just "bootm", so rename it
+    accordingly.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 13:22:37 2008 -0400
+
+    Blackfin: set more sane default board config values
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 36cd52a00794fb15ffab05d640acca92d7482993
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 15:24:59 2008 -0400
+
+    Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c8054bc12e00669bd7588f2b30fef48aa94babac
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 13:21:27 2008 -0400
+
+    Blackfin: add bit defines for DDR parts
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 154502fe0796f3b7a4698378c5d2080ae28a9782
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Thu Aug 7 13:21:11 2008 -0400
+
+    Blackfin: add defines to describe active bootrom behavior
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
+Author: Kim Phillips <kim.phillips@freescale.com>
+Date:  Tue Jan 27 16:03:53 2009 -0600
+
+    mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
+
+    extend commit c70564e6b1bd08f3230182392238907f3531a87e
+    "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
+    to the simpc8313 build and fix this:
+
+    ...Large Page NAND...Configuring for SIMPC8313 board...
+    nand_boot_fsl_elbc.o: In function `nand_boot':
+    nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
+    make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
+    make: *** [nand_spl] Error 2
+
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 54a7cc4912feefa45be961cc47cc159563725d2f
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jan 28 09:25:31 2009 +0100
+
+    mpc8536ds.c: include sata.h to for needed function prototypes
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jan 27 18:03:12 2009 -0600
+
+    Command usage cleanup
+
+    Remove command name from all command "usage" fields and update
+    common/command.c to display "name - usage" instead of
+    just "usage". Also remove newlines from command usage fields.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jan 27 18:03:11 2009 -0600
+
+    amcc: Clean up command usage output
+
+    Update taihu and taishan commands to use cmd_usage() function
+    to display usage messages.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 62c3ae7c6ef215b1afa614abdf61acf077752207
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jan 27 18:03:10 2009 -0600
+
+    Standardize command usage messages with cmd_usage()
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jan 27 18:03:09 2009 -0600
+
+    pcs440ep: Clean up led command definition
+
+    The pcs440ep's led command usage formatting is non-standard.  It
+    was made standard in preparation for larger command usage updates.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Tue Jan 27 18:03:08 2009 -0600
+
+    Clean up diufb command definitions
+
+    The diufb command usage formatting is non-standard.  It was
+    made standard in preparation for larger command usage updates.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit 6450a8485836fc80615ae6de6a864c33369b44f5
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jan 28 00:29:26 2009 +0100
+
+    Update CHANGELOG, tiny coding style cleanup.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Jan 27 16:12:21 2009 -0500
+
+    SATA: do not auto-initialize during boot
+
+    Rather than have the board code initialize SATA automatically during boot,
+    make the user manually run "sata init".  This brings the SATA subsystem in
+    line with common U-Boot policy.
+
+    Rather than having a dedicated weak function "is_sata_supported", people
+    can override sata_initialize() to do their weird board stuff.  Then they
+    can call the actual __sata_initialize().
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 50970839712dda35399e2fa83fe818df9354d618
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Mon Jan 26 08:45:14 2009 -0500
+
+    part_efi: Fix partition size calculation due to inclusive ending LBA.
+
+    The ending LBA is inclusive. Hence, the partition size should be
+    ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
+
+    This is confirmed against the results from the parted tool.
+    (e.g. use parted /dev/sda -s unit S print) and observe the size.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+
+commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
+Author: Tomasz Figa <tomasz.figa@gmail.com>
+Date:  Tue Dec 30 18:35:57 2008 +0100
+
+    jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
+
+    This patch fixes a bug (?) introduced after inclusion of the new
+    JFFS2 code.
+
+    When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
+    fill in part->sector_size (keeping it as 0), but a correct value is
+    needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
+    to be in the same place of the memory, what obviously means
+    impossibility to use the JFFS2 partition.
+
+    This problem is fixed in this patch by including sector size
+    calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
+
+    Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
+
+commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Dec 30 02:59:25 2008 -0500
+
+    saveenv: standardize enablement
+
+    Rather than special casing each environment type for enabling the saveenv
+    command, have them all behave the same.  This avoids bitrot as new env
+    sources are added/removed.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
+Author: Andrew Dyer <adyer@righthandtech.com>
+Date:  Mon Dec 29 17:36:01 2008 -0600
+
+    soft_i2c.c add option for repeated start in i2c_read()
+
+    This patch adds a #define to optionally change the behaviour of
+    i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
+    stop-start between sending the device address pointer write and
+    reading back the data.  The current behaviour is retained as the
+    default.
+
+    While most devices will work either way, I have a smart battery(*)
+    that requires repeated start, and someone at some point found a
+    device that required a stop-start.
+
+    (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
+
+    Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
+
+commit 3429071700963ca2f944c51d695a7481af0cee33
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jan 27 22:07:14 2009 +0100
+
+    {delta,zylonite}/lowlevel_init.S: fix typo
+
+    Commit 9d803d8c mistakenly changed some constants
+    from 0x300 into 300 - this patch fixes it.
+
+    Pointed out by Tom Evans <tom@ceos.com.au>, see
+    http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
+    details.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 1bc434373013af241835c14011ac3f291dccbf53
+Author: Stefan Althoefer <stefan.althoefer@web.de>
+Date:  Sat Dec 20 19:40:41 2008 +0100
+
+    drivers/net/e1000.c: missing terminator for supported devices
+
+    Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
+
+commit 65f7d41031a70b1649b35020995c505edca91533
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Tue Jan 27 21:36:28 2009 +0100
+
+    fat.c: fix warning: array subscript is above array bounds
+
+    Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 107b801cf3fe39612d69d70581ebc3bf5e215554
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 15:11:41 2009 +0100
+
+    Fix gunzip in case of insufficient output buffer
+
+    U-Boot's gunzip() function does not handle the return code
+    of zlib's inflate() function correctly. gunzip() is implemented
+    to uncompress all input data in one run. So the correct return
+    code for the good case is Z_STREAM_END. In case of insufficient
+    output buffer memory inflate returns Z_OK. For gunzip() this
+    is an error.
+
+    It also makes sense to me to call inflateEnd() also in case
+    of an error.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+
+commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:25:01 2009 +0100
+
+    MIPS: Add VCT board series support (Part 3/3)
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit ae691e5719c48f1d2826cb72722497d1d162765b
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:24:49 2009 +0100
+
+    MIPS: Add VCT board series support (Part 2/3)
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:24:39 2009 +0100
+
+    MIPS: Add VCT board series support (Part 1/3)
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Jan 21 17:20:20 2009 +0100
+
+    MIPS: Add flush_dcache_range() and invalidate_dcache_range()
+
+    This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
+    Those functions are needed for the upcoming dcache support for the USB
+    EHCI driver. I chose this API because those cache handling functions are
+    already present in the PPC architecture.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+
+commit de832a99414ff06a4b2cdc9f5280b387da039834
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jan 26 10:05:20 2009 +0100
+
+    nand_spl: Fix compile problem with board_nand_init() prototype
+
+    This patch removes the now obsolete and additionally wrongly defined
+    board_nand_init() prototype from nand_spl/nand_boot.c.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit e8eac437189430d8e04a5d254ed92c58bc534a79
+Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+Date:  Wed Jan 14 08:44:26 2009 -0500
+
+    CFI: Add geometry reversal for STMicro M29W320ET
+
+    Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
+
+    Modeled after flash_fixup_amd, this patch handles the geometry reversal
+    or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
+    Since I cannot test all STM's chips, the detection is implemented as
+    narrow as possible for now.
+
+    Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 0f8e851e897b535959a0781171910cd97f33c30c
+Author: Jens Gehrlein <sew_s@tqs.de>
+Date:  Tue Dec 16 17:25:55 2008 +0100
+
+    CFI: increase performance of function find_sector()
+
+    Tested on TQM5200S-BD with Samsung K8P2815UQB
+
+    Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
+Author: Jens Gehrlein <sew_s@tqs.de>
+Date:  Tue Dec 16 17:25:54 2008 +0100
+
+    CFI: avoid redundant function call in single word programming mode
+
+    The function find_sector() doesn't need to be called twice in
+    the case of AMD command set.
+    Tested on TQM5200S-BD with Samsung K8P2815UQB.
+
+    Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Jan 26 10:15:23 2009 +0100
+
+    ppc4xx: Remove compilation warning in gdppc440etc.c
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 12:19:47 2009 +0100
+
+    ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
+
+    Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
+    Either they define or undef it. Because it's not used in any source
+    files this patch removes any references to it.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Tue Dec 9 13:12:40 2008 +0100
+
+    ppc4xx: Add GDsys PowerPC 440 ETX board support.
+
+    Board support for the Guntermann & Drunck PowerPC 440 ETX module.
+    Based on the AMCC Yosemite board support by Stefan Roese.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Tue Dec 9 11:00:07 2008 +0100
+
+    ppc4xx: Improve DDR autodetect
+
+    Added support for a second memory bank to DDR autodetection for 440
+    platforms.
+    Made hardcoded values configurable.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 71a040f4f556cca4d30f06805d82e717b3ef1020
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Fri Nov 21 12:06:26 2008 +0900
+
+    sh: sh7763rdp: Update sh7763rdp config
+
+    Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
+Author: Gary Jennejohn <garyj@denx.de>
+Date:  Thu Nov 20 12:28:38 2008 +0100
+
+    mgcoge make ether_scc.c work with CONFIG_NET_MULTI
+
+    This change is needed for mgcoge because it uses two ethernet drivers.
+
+    Add a check for the presence of the PIGGY board on mgcoge. Without this
+    board networking cannot work and the initialization must be aborted.
+
+    Only allocate rtx once to prevent DPRAM exhaustion.
+
+    Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
+    soon) in eth.c.
+
+    Signed-off-by: Gary Jennejohn <garyj@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
+Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+Date:  Fri Nov 21 12:04:18 2008 +0900
+
+    sh: sh_eth: Change new network API
+
+    sh_eth used old network API. This patch changed new API.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Nov 12 13:31:02 2008 +0100
+
+    net: smc911x: Make register read/write functions weak
+
+    This patch changes the reg_read/_write to smc911x_reg_read/_write
+    and defines then as weak so that they can be overridden by board
+    specific version.
+
+    This will be used by the upcoming VCTH board support.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit 8b69b563039989885969d24465c56f8ac4c07c4c
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Nov 20 09:57:14 2008 +0100
+
+    powerpc: net: support for the SMSC LAN8700 PHY
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit d5254f149da9e6cd649d887b042ce577ef3ba78d
+Author: Alessandro Rubini <rubini@unipv.it>
+Date:  Sat Jan 24 18:10:37 2009 +0100
+
+    Initial support for Nomadik 8815 development board
+
+    The NMDK8815 board is distributed by ST Microelectornics.
+    Other (proprietary) code must be run to unlock the CPU before
+    U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
+
+    This is the initial port, with basic infrastructure and
+    a working serial port.
+
+    Signed-off-by: Alessandro Rubini <rubini@unipv.it>
+    Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+
+commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:18 2008 +0100
+
+    OMAP3: Add I2C support
+
+    Add I2C support.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:17 2008 +0100
+
+    OMAP3: Add MMC support
+
+    Add MMC support.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 12201a13547ec22ddcdae278e74465e54a3be60c
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:16 2008 +0100
+
+    OMAP3: Add NAND support
+
+    Add NAND support.
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+    Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 91eee546737ae21d930af479530997174c342b13
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:15 2008 +0100
+
+    OMAP3: Add common board, interrupt and system info
+
+    Add common board, interrupt and system info code.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:14 2008 +0100
+
+    OMAP3: Add common clock, memory and low level code
+
+    Add common clock, memory and low level code
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 0b02b184003e6a5023e05d5f31de54db279b1431
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:13 2008 +0100
+
+    OMAP3: Add common cpu and start code
+
+    Add common cpu and start code.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit a8b6450546cd507d331b8fde384791d84bde5651
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:12 2008 +0100
+
+    OMAP3: Add OMAP3, memory and function prototype headers
+
+    Add OMAP3, memory and function prototype header files for OMAP3.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 2c803210a464abbac35752ca1c737514360b4c32
+Author: Dirk Behme <dirk.behme@googlemail.com>
+Date:  Sun Dec 14 09:47:11 2008 +0100
+
+    OMAP3: Add pin mux, clock and cpu headers
+
+    Add pin mux, clock and cpu header files for OMAP3.
+
+    Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
+
+commit 685533646f4ff17a84ec9265cabb60af325b6e1f
+Author: Maxim Artamonov <scn1874@yandex.ru>
+Date:  Wed Dec 3 05:38:17 2008 +0300
+
+    bugfix for i.mx31 CCM_UPCTL reg
+
+    Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
+
+commit 24113a44ed5cd3257a0237c3961e121812fca6db
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Tue Dec 30 03:15:38 2008 -0500
+
+    easylogo: add optional gzip support
+
+    Some images can be quite large, so add an option to compress the
+    image data with gzip in the U-Boot image. Then at runtime, the
+    board can decompress it with the normal zlib functions.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
+Author: Bryan Wu <bryan.wu@analog.com>
+Date:  Fri Jan 2 20:47:45 2009 -0500
+
+    fat: fix unaligned errors
+
+    A couple of buffers in the fat code are declared as an array of bytes.
+    But it is then cast up to a structure with 16bit and 32bit members.
+    Since GCC assumes structure alignment here, we have to force the
+    buffers to be aligned according to the structure usage.
+
+    Signed-off-by: Bryan Wu <bryan.wu@analog.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
+Author: Brad Bozarth <bflinux@yumbrad.com>
+Date:  Thu Jan 1 22:45:47 2009 -0500
+
+    spi flash: fix crash due to spi flash miscommunication
+
+    Higher spi flash layers expect to be given back a pointer that was
+    malloced so that it can free the result, but the lower layers return
+    a pointer that is in the middle of the malloced memory. Reorder the
+    members of the lower spi structures so that things work out.
+
+    Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
+Author: Yuri Tikhonov <yur@emcraft.com>
+Date:  Sat Dec 20 14:54:21 2008 +0300
+
+    FPU POST: fix warnings when building with 2.18 binutils
+
+    When compile u-boot with the 2.18 binutils the following
+    warning messages for each object file in post/lib_ppc/fpu/ is
+    produced at the linking stage:
+
+    post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
+    ...
+
+    This is because of the fact that, in general, the soft-float and
+    hard-float ABIs are incompatible; the 2.18 binutils do checking
+    of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
+    produce the worning like above if these are not compatible.
+
+    The incompatibility of ABIs is concerned only the float values:
+    e.g. the soft-float ABI assumes the float argument passing in the
+    pair of rX registers, and the hard-float ABI assumes passing of
+    the float argument in the fX register. When we don't pass the float
+    arguments between the functions compiled with different floatness,
+    then such an application will work correctly.
+    This is the case for the FPU POST: u-boot (compiled with soft-float)
+    doesn't pass to (and doesn't get from) the FPU POST functions any
+    floats; there are no functions exported from the post/lib_ppc/fpu/
+    objects which would work with float parameters/returns too. So, we
+    can reassure the linker not to worry about the difference in ABI
+    attributes of linking files just by setting the 'soft-float'
+    attribute for the objects in post/lib_ppc/fpu. And this patch does
+    this.
+
+    Also, to avoid passing both soft- and hard-float options in CFLAGS
+    when compiling the files from post/lib_ppc/fpu (which is OK, but
+    looks rather dirty) this patch removes the soft-float string from
+    CFLAGS in post/lib_ppc/fpu/Makefile.
+
+    Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
+
+commit a7c9310457e85b4598abe5b304108edf11332e2f
+Author: Peter Tyser <ptyser@xes-inc.com>
+Date:  Wed Dec 17 16:36:22 2008 -0600
+
+    Add support for Maxim's DS4510 I2C device
+
+    Initial support for the DS4510, a CPU supervisor with
+    integrated EEPROM, SRAM, and 4 programmable non-volatile
+    GPIO pins. The CONFIG_DS4510 define enables support
+    for the device while the CONFIG_CMD_DS4510 define
+    enables the ds4510 command. The additional
+    CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
+    CONFIG_DS4510_RST defines add additional sub-commands
+    to the ds4510 command when defined.
+
+    Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
+
+commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
+Author: Dirk Eibach <eibach@gdsys.de>
+Date:  Tue Dec 16 14:51:56 2008 +0100
+
+    common: Iteration limit for memory test.
+
+    The iteration limit is passed to mtest as a fourth parameter:
+    [start [end [pattern [iterations]]]]
+    If no fourth parameter is supplied, there is no iteration limit and the
+    test will loop forever.
+
+    Signed-off-by: Dirk Eibach <eibach@gdsys.de>
+
+commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
+Author: Stefan Roese <sr@denx.de>
+Date:  Mon Dec 15 15:40:12 2008 +0100
+
+    serial: Rename driver vcth to vct to support other board variants
+
+    Moved driver vcth.c to vct.c to better reflect the VCT board series.
+    This driver is now used by the VCT platforms:
+
+    vct_premium
+    vct_platinum
+    vct_platinumsvc
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
+Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+Date:  Fri Dec 12 00:45:27 2008 +0900
+
+    nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
+
+    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
+
+commit c3284b030b1cd492b4f46c576aea01bef258599d
+Author: Peter Korsgaard <jacmet@sunsite.dk>
+Date:  Wed Dec 10 16:24:16 2008 +0100
+
+    common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
+
+    Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
+    similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
+    !CONFIG_AUTOBOOT_KEYED case.
+
+    Do this by reversing the loop so we do at least one iteration before
+    checking for timeout.
+
+    Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+
+commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
+Author: Niklaus Giger <niklaus.giger@netstal.com>
+Date:  Mon Dec 8 17:24:08 2008 +0100
+
+    Added legacy flash ST Micro M29W040B
+
+commit 626d07348e5f9f302f4ea182161a89f7362a0488
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Mon Dec 8 20:04:51 2008 +1100
+
+    Fixed off-by-one errors in lib_m68k/interrupts.c
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit a5989c42ae5e295f274a795c426c47819bbdbfda
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:05 2008 +1100
+
+    Removed all references to CONFIG_SYS_RESET_GENERIC
+
+    Generic i386 reset - #define made redundant by weak function
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:04 2008 +1100
+
+    Remove #ifdef CONFIG_SC520 in source code
+
+    CONFIG_SC520 is now used for conditional compile
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit ead056bc206f6b7ee6dc98766678b64635ea20b8
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:03 2008 +1100
+
+    Added MMCR reset functionality
+
+    Reset function specific to AMD SC520 microcontroller - Is more of a
+    'hard reset' that the triple fault.
+
+    Requires CONFIG_SYS_RESET_SC520 to be defined in config
+
+    I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
+    but ld requires that a object file in a library arhive MUST contain
+    at least one function which does not override a weak function (and is
+    called from outside the object file) in order for that object file to
+    be extracted from the archive. This would be the only function on the
+    new file, and hence, will never get linked in.
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:02 2008 +1100
+
+    Moved generic (triple fault) reset code
+
+    Moved from interrupts.c to cpu.c and made into a weak function to
+    allow vendor specific override
+
+    Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
+    added to the vendor specific code without the need to remember to
+    #undef usage of the generic method and if you forget to include your
+    custom reset method, you will always get the default.
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 9933d609020c297788f53f334c8465fa7a99b10c
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:01 2008 +1100
+
+    Moved definition of set_vector() to new header file
+
+    This allows for future tidy ups and functionality that will require
+    set_vector ()
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 407976185e0dda2c90e89027121a1071b9c77bfb
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:29:00 2008 +1100
+
+    Moved sc520 specific code into new cpu/i386/sc520 folder
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 85ffbbd51914925a542d8528be7f072e5ab02157
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:28:58 2008 +1100
+
+    Renamed cpu/i386/reset.S to resetvec.S
+
+    Brings i386 in line with other CPUs with a reset vector and frees up reset.c
+    for CPU reset functions
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit a3f4c123f569474e80ea012b8db0de46afdb6443
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sat Jan 24 01:01:49 2009 +0100
+
+    Makefile: keep lists sorted.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit c620c01e96814558470698ed5cab1bf2f504d1b5
+Author: Graeme Russ <graeme.russ@gmail.com>
+Date:  Sun Dec 7 10:28:57 2008 +1100
+
+    Added initial eNET board support
+
+    Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
+
+commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
+Author: Gary Jennejohn <garyj@denx.de>
+Date:  Thu Nov 20 11:37:26 2008 +0100
+
+    POWERPC 82xx: add the SCC as an HDLC controller
+
+    Right now this is only used by keymile.
+
+    Signed-off-by: Gary Jennejohn <garyj@denx.de>
+
+commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Nov 20 09:59:09 2008 +0100
+
+    powerpc, keymile boards: extract identical config options
+
+    This patch extracts the identical config options for the
+    keymile boards mgcoge, mgsuvd and kmeter1 in a new
+    common config file keymile-common.h.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 210c8c00aad3328145204adab434bb7d70b06b75
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Nov 21 08:29:40 2008 +0100
+
+    powerpc: keymile: Add a check for the PIGGY debug board
+
+    Check the presence of the PIGGY on the keymile boards mgcoge,
+    mgsuvd and kmeter1. If the PIGGY is not present, dont register
+    this Ethernet device.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Acked-by: Ben Warren <biggerbadderben@gmail.com>
+
+commit de0443614af4d16675ab436665aeb11ddc9f7214
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Nov 20 09:57:47 2008 +0100
+
+    powerpc: 83xx: add support for the kmeter1 board
+
+    This patch adds support for the kmeter1 board from Keymile,
+    based on a Freescale MPC8360 CPU.
+
+    - serial console on UART 1
+    - 256 MB DDR2 RAM
+    - 64 MB NOR Flash
+    - Ethernet RMII Mode over UCC4
+    - PHY SMSC LAN8700
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+
+commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
+Author: Sergei Poselenov <sposelenov@emcraft.com>
+Date:  Tue Nov 4 13:51:18 2008 +0100
+
+    Add a do_div() wrapper macro, lldiv().
+
+    Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
+    the dividend and returns the result of division, so it is useful
+    in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
+
+    Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
+
+commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Jan 23 14:22:14 2009 -0600
+
+    85xx: Add a 36-bit physical configuration for MPC8572DS
+
+    We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
+    to allow for larger memory sizes.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Jan 23 14:22:13 2009 -0600
+
+    85xx: Handle eLBC difference w/36-bit physical
+
+    The eLBC only handles 32-bit physical address in systems with 36-bit
+    physical.  The previos generation of LBC handled 34-bit physical
+    address in 36-bit systems. Added a new CONFIG option to convey
+    the difference between the LBC and eLBC.
+
+    Also added defines for XAM bits used in LBC for the extended 34-bit
+    support.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Fri Jan 23 14:22:12 2009 -0600
+
+    85xx: Use BR_ADDR macro for NAND chipselects
+
+    Use the new BR_ADDR macro to properly setup the address field of the
+    localbus chipselects used by NAND.
+
+    This allows us to deal with 36-bit phys on these boards in the future.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Thu Jan 15 11:58:35 2009 -0500
+
+    Add secondary CPUs processor frequency for e500 core
+
+    This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
+    and prints each CPU's frequency separately. It also fixes up each CPU's
+    frequency in "clock-frequency" of fdt blob.
+
+    Signed-off-by: James Yang <James.Yang@freescale.com>
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+
+commit bf5b1f0c0d28ce062e1d368680632dfb099de692
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Nov 21 16:31:53 2008 +0800
+
+    85xx: enable the auto self refresh for wake up ARP
+
+    The wake up ARP feature need use the memory to process
+    wake up packet, we enable auto self refresh to support it.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Nov 21 16:31:43 2008 +0800
+
+    fsl-ddr: use the 1T timing as default configuration
+
+    For light loaded system, we use the 1T timing to gain better
+    memory performance, but for some heavily loaded system,
+    you have to add the 2T timing options to board files.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 22cca7e1cd54590e967c73558b07ffbdccd39504
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Nov 21 16:31:35 2008 +0800
+
+    fsl-ddr: make the self refresh idle threshold configurable
+
+    Some 85xx processors have the advanced power management feature,
+    such as wake up ARP, that needs enable the automatic self refresh.
+
+    If the DDR controller pass the SR_IT (self refresh idle threshold)
+    idle cycles, it will automatically enter self refresh. However,
+    anytime one transaction is issued to the DDR controller, it will
+    reset the counter and exit self refresh state.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Nov 21 16:31:29 2008 +0800
+
+    fsl-ddr: clean up the ddr code for DDR3 controller
+
+    - The DDR3 controller is expanding the bits for timing config
+    - Add the DDR3 32-bit bus mode support
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Fri Nov 21 16:31:22 2008 +0800
+
+    fsl-ddr: update the bit mask for DDR3 controller
+
+    According to the latest 8572 UM, the DDR3 controller
+    is expanding the bit mask, and we use the extend ACTTOPRE
+    mode when tRAS more than 19 MCLK.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit aca5f018a8386b85469482ed9867e3e29a2437d0
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 16:08:40 2008 -0600
+
+    85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
+
+    Introduce a new define to seperate out the virtual address that PCI
+    IO space is at from the physical address.  In most situations these are
+    mapped 1:1.  However any code accessing the bus should use VIRT.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 16:08:39 2008 -0600
+
+    85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
+
+    Introduce a new define to seperate out the virtual address that PCI
+    memory is at from the physical address.  In most situations these are
+    mapped 1:1.  However any code accessing the bus should use VIRT.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit a6e04c344ad1eefd47a75484441b385da815b8df
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 16:08:38 2008 -0600
+
+    85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
+
+    Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
+    of TLBs.  This is what we should have always been using from the start.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 16:08:37 2008 -0600
+
+    85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
+
+    Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
+    of _IO_BASE so we are more explicit.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+
+commit 10795f42cb94e71bcb262b615084f69dd886399a
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 16:08:36 2008 -0600
+
+    85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
+
+    Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
+    of _MEM_BASE so we are more explicit.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 14:19:34 2008 -0600
+
+    85xx: separate FLASH BASE virtual from physical address
+
+    Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
+    maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
+
+    This allows us to deal with 36-bit phys on these boards in the future.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 52b565f5ad23b682489055b187767d8bf1c2e444
+Author: Kumar Gala <galak@kernel.crashing.org>
+Date:  Tue Dec 2 14:19:33 2008 -0600
+
+    85xx: separate PIXIS virtual from physical address
+
+    Added a PIXIS_BASE_PHYS for use as the physical address and maintain
+    PIXIS_BASE as the virtual address of the PIXIS fpga registers.
+
+    This allows us to deal with 36-bit phys on these boards in the future.
+
+    Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 30837e5b21d5a742983581ab9ee3fac085311d19
+Author: Haiying Wang <Haiying.Wang@freescale.com>
+Date:  Tue Nov 11 08:52:09 2008 -0500
+
+    Add README file for MPC8572DS board
+
+    Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
+    Acked-by: Andy Fleming <afleming@freescale.com>
+
+commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Mon Oct 20 16:15:04 2008 -0400
+
+    Blackfin: use common strmhz() in system output
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit 5bb907a4925397789c90d074f4f7e92ce6b39402
+Author: Ron Madrid <ron_madrid@sbcglobal.net>
+Date:  Thu Jan 22 15:05:24 2009 -0800
+
+    mpc83xx: New board support for SIMPC8313
+
+    This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
+    board boots from NAND devices and is configureable for either large or small
+    page devices.  The board supports non-soldered DDR2, one ethernet port, a
+    Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected
+    to the eLBC providing glue logic to a TMS320C67xx DSP.
+
+    Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sun Jan 18 19:46:06 2009 -0500
+
+    nand: fixup printf modifiers to match types used
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 389e6620e2271096df3316917528003627db4021
+Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
+Date:  Tue Jan 20 16:57:55 2009 +0100
+
+    nand read.jffs2 (nand_legacy) in common/cmd_nand.c
+
+    Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
+    With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
+    "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
+    tested before ".jffs2s" and only the first two characters are compared.
+
+    Correction:
+    Test for ".jffs2s" first and compare the first 7 characters.
+
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
+Author: Wolfgang Grandegger <wg@grandegger.com>
+Date:  Fri Jan 16 18:55:54 2009 +0100
+
+    NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
+
+    This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
+    changes the default from 8 to 1 for the legacy and the new MTD
+    NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
+    in the board config files because none of the boards use multi
+    chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
+    define
+
+     #define NAND_MAX_CHIPS         CONFIG_SYS_MAX_NAND_DEVICE
+
+    but that's bogus and did not work anyhow.
+
+    Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit c70564e6b1bd08f3230182392238907f3531a87e
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Tue Dec 2 11:48:51 2008 +0800
+
+    NAND: Fix cache and memory inconsistency issue
+
+    We load the secondary stage u-boot image from NAND to
+    system memory by nand_load, but we did not flush d-cache
+    to memory, nor invalidate i-cache before we jump to RAM.
+    When the system has cache enabled and the TLB/page attribute
+    of system memory is cacheable, it will cause issues.
+
+    - 83xx family is using the d-cache lock, so all of d-cache
+      access is cache-inhibited. so you can't see the issue.
+    - 85xx family is using d-cache, i-cache enable, partial
+      cache lock. you will see the issue.
+
+    This patch fixes the cache issue.
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 50657c273278f74378e1ac39b41d612b92fdffa0
+Author: Nishanth Menon <menon.nishanth@gmail.com>
+Date:  Sat Dec 13 09:43:06 2008 -0600
+
+    NAND: Enable nand lock, unlock feature
+
+    Enable nand lock, unlock and status of lock feature.
+    Not every device and platform requires this, hence,
+    it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
+
+    Nand unlock and status operate on block boundary instead
+    of page boundary. Details in:
+    http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
+
+    Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
+    Includes preliminary suggestions from Scott Wood
+
+    Signed-off-by: Nishanth Menon <nm@ti.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Dec 6 02:40:55 2008 -0500
+
+    NAND: move board_nand_init to nand.h
+
+    Rather than putting the function prototype for board_nand_init() in the one
+    place where it gets called, put it into nand.h so that every place that also
+    defines it gets the prototype.  Otherwise, errors can go silently unnoticed
+    such as using the wrong return value (void rather than int) when defining
+    the function.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 1ae39862044ebb1e682234b51f94421e3f871d6a
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Dec 2 11:06:47 2008 +0100
+
+    OneNAND: Additional sync with 2.6.27
+
+    - Add subpage write support
+    - Add onenand_oob_64/32 ecclayout
+
+    This has been missing and without it UBI has some incompatibilies issues
+    with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
+    placed differently (2048 instead of 512) without this fix.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+
+commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Thu Nov 13 15:14:33 2008 +0900
+
+    Add markbad function
+
+    Add missing markbad function
+    If not, it's hang when it entered the mtd->mark_bad().
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
+Author: Stefan Roese <sr@denx.de>
+Date:  Wed Nov 12 13:47:24 2008 +0100
+
+    OneNAND: Bad block aware read/write command support
+
+    Update OneNAND command to support bad block awareness.
+    Also change the OneNAND command style to better match the
+    NAND version.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+    Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Nov 11 10:29:09 2008 +0100
+
+    OneNAND: Save version_id in onenand_chip struct
+
+    The version (ver_id) was not stored in the onenand_chip structure and
+    because of this the continuous locking scheme could be enabled on some
+    chips.
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
+Author: Stefan Roese <sr@denx.de>
+Date:  Tue Nov 11 10:28:53 2008 +0100
+
+    OneNAND: Fix compiler warnings
+
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
+Author: Dave Liu <daveliu@freescale.com>
+Date:  Tue Nov 4 14:55:06 2008 +0800
+
+    mpc83xx: enable eLBC NAND support for MPC8315ERDB board
+
+    Signed-off-by: Dave Liu <daveliu@freescale.com>
+
+commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
+Author: Kyungmin Park <kmpark@infradead.org>
+Date:  Tue Nov 4 09:24:07 2008 +0900
+
+    Sync with 2.6.27
+
+    Sync with OneNAND kernel codes
+
+    Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
+
+commit e7f325be9edeb84bb457301776bbac1f7257dafc
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Mon Jan 5 13:35:31 2009 +0100
+
+    microblaze: Use cache functions (especially cache status)
+    in systems which are configured without flash
+
+commit e9b737deb2c30125362d20e24170617476026e94
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Mon Jan 5 13:29:32 2009 +0100
+
+    microblaze: Add cache flush
+
+commit b4f8dda35bfad447b4106828232705b2e878d168
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Mon Jan 5 13:28:40 2009 +0100
+
+    microblaze: Add bootup messages to board.c
+
+commit 330e55459bc9983341da6c1d5c7fe00a664436fe
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Fri Dec 19 13:25:55 2008 +0100
+
+    microblaze: Change microblaze-generic config file
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
+Author: Michal Simek <monstr@monstr.eu>
+Date:  Fri Dec 19 13:14:05 2008 +0100
+
+    microblaze: Rename ml401 to microblaze-generic
+
+    Signed-off-by: Michal Simek <monstr@monstr.eu>
+
+commit 6677876181cc8772bca8a372479a500d160f3993
+Author: Scott Wood <scottwood@freescale.com>
+Date:  Tue Jan 20 11:56:11 2009 -0600
+
+    83xx: Use the proper sequence for updating IMMR.
+
+    This ensures that subsequent accesses properly hit the new window.
+
+    The dcbi during the NAND loop was accidentally working around this;
+    it's no longer necessary, as the cache is not enabled.
+
+    Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
+    Signed-off-by: Scott Wood <scottwood@freescale.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 8b34557c546e5e9f34ebf83c93413dad973d93df
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Jan 8 04:26:19 2009 +0300
+
+    mpc83xx: Add PCI-E support for MPC837XEMDS boards
+
+    MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
+    provides two PCI-E (x2) ports. Though, only one port can be used in x2
+    mode. Two ports can function simultaneously in x1 mode.
+
+    PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 8f11e34b31a7be124a3239653f33af9510502045
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Jan 8 04:26:17 2009 +0300
+
+    mpc83xx: Add PCI-E support for MPC8315ERDB boards
+
+    MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
+    support them.
+
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
+Author: Anton Vorontsov <avorontsov@ru.mvista.com>
+Date:  Thu Jan 8 04:26:12 2009 +0300
+
+    mpc83xx: Add support for MPC83xx PCI-E controllers
+
+    This patch adds support for MPC83xx PCI-E controllers in Root Complex
+    mode.
+
+    The patch is based on Tony Li and Dave Liu work[1].
+
+    Though unlike the original patch, by default we don't register PCI-E
+    buses for use in U-Boot, we only configure the controllers for future
+    use in other OSes (Linux). This is done because we don't have enough
+    of spare BATs to map all the PCI-E regions.
+
+    To actually use PCI-E in U-Boot, users should explicitly define
+    CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
+    only then U-Boot will able to access PCI-E, but at the cost of disabled
+    address translation.
+
+    [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
+
+    Signed-off-by: Tony Li <tony.li@freescale.com>
+    Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
+    Acked-by: Dave Liu <daveliu@freescale.com>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
+Author: Ira Snyder <iws@ovro.caltech.edu>
+Date:  Mon Jan 12 13:33:17 2009 -0800
+
+    MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
+
+    When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
+    not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
+    "Clocking in PCI Agent Mode".
+
+    Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 75f35209f702bb26826855ed8c8e4d108ab5f412
+Author: Ira Snyder <iws@ovro.caltech.edu>
+Date:  Mon Jan 12 13:32:26 2009 -0800
+
+    83xx: PCI agent mode fixes for multi-board systems
+
+    When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
+    the boards will lock up the PCI bus by scanning against each other.
+
+    The boards lock against each other by trying to access the PCI bus before
+    clearing their configuration lock bit. Both boards end up in a loop,
+    sending and receiving "Target Not Ready" messages forever.
+
+    When running in PCI agent mode, the scanning now takes place after the
+    boards have cleared their configuration lock bit.
+
+    Also, add a missing declaration to the mpc83xx.h header file, fixing a
+    build warning.
+
+    Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 455a46915b82896cc2070eb326d075555c2bc580
+Author: Ron Madrid <ron_madrid@sbcglobal.net>
+Date:  Fri Dec 12 13:12:45 2008 -0800
+
+    mpc83xx: Size optimization of start.S
+
+    Currently there are in excess of 100 bytes located at the beginning of the image
+    built by start.S that are not being utilized.  This patch moves a few functions
+    into this part of the image.  This will create a greater number of *available*
+    bytes that can be used by board specific code in NAND builds and will decrease
+    the size of the assembled code in other builds.
+
+    Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jan 21 23:08:12 2009 +0100
+
+    Prepare v2009.01
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 635e5f8fc82365e6e9734b3132bc95135a6de679
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Sun Jan 18 21:37:48 2009 +0100
+
+    Prepare 2009.01-rc3
+
+    Update CHANGELOG
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
+commit 4cda437898f7873752f0201757cd33f12196ce87
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Sat Jan 17 13:32:42 2009 -0500
+
+    build system: treat all Darwin's alike
+
+    The x86 based version of Darwin behaves the same quirky way as the powerpc
+    Darwin, so only check HOSTOS when setting up Darwin workarounds.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit c088a108c75db565e07292fd668dfa5491e85bc2
+Author: Peter Korsgaard <jacmet@sunsite.dk>
+Date:  Wed Jan 14 13:52:24 2009 +0100
+
+    fdt_resize(): fix actualsize calculations with unaligned blobs
+
+    The code in fdt_resize() to extend the fdt size to end on a page boundary
+    is wrong for fdt's not located at an address aligned on a page boundary.
+    What's even worse, the code would make actualsize shrink rather than grow
+    if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
+    causing fdt_add_mem_rsv to fail.
+
+    Fix it by aligning end address (blob + size) to a page boundary instead.
+    For aligned fdt's this is equivalent to what we had before.
+
+    Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+
+commit fadad1573fb16c90025f08a2861d6047d093cba7
+Author: Mike Frysinger <vapier@gentoo.org>
+Date:  Fri Jan 9 04:38:17 2009 -0500
+
+    ncb: use socklen_t
+
+    The recvfrom() function takes a socklen_t, not an int.
+
+    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+
+commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jan 11 16:35:16 2009 +0100
+
+    sh: serial: use readx/writex accessors
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 9e1fa628bdb64745811cdd26c4f953846c076180
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sun Jan 11 16:35:15 2009 +0100
+
+    sh: serial: coding style cleanup
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit c9935c992575922b7ef13eec0656ed8665d324e3
+Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+Date:  Sun Jan 11 17:48:56 2009 +0900
+
+    sh: Fix compile error on lowlevel_init file
+
+    lowlevel_init of SH was corrected to use the write/readXX macro.
+    However, there was a problem that was not able to be compiled partially.
+    This patch corrected this.
+
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit a5b04d00bfeb940c62232972ce644d50b45797f9
+Author: Kieran Bingham <kieranbingham@gmail.com>
+Date:  Tue Dec 30 01:16:03 2008 +0000
+
+    sh: Fix up rsk7203 target for out of tree build
+
+    Fix up rsk7203 target to build successfully using out-of-tree build.
+
+    Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit f7e78f3b74aae9caca2997bad865a72338326c0a
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Dec 20 19:29:49 2008 +0100
+
+    sh: use write{8,16,32} in all lowlevel_init
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit e4430779623af500de1cee7892c379f07ef59813
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Dec 20 19:29:48 2008 +0100
+
+    sh: lowlevel_init coding style cleanup
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Dec 20 15:27:45 2008 +0100
+
+    sh: update sh2/sh2a timer coding style
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 1e15ff999322e81af4c0c0c548908f38944ba39c
+Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Date:  Sat Dec 20 15:25:22 2008 +0100
+
+    sh: update sh timer coding style
+
+    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+
+commit 0e3ece33801e377be67ffa29f083421ad820f28b
+Author: Wolfgang Denk <wd@denx.de>
+Date:  Wed Jan 14 23:26:05 2009 +0100
+
+    Prepare 2009.01-rc2
+
+    Update CHANGELOG.
+
+    Signed-off-by: Wolfgang Denk <wd@denx.de>
+
 commit e92c9a860e44c14513c8909ce4299e253a775eeb
 Author: Wolfgang Denk <wd@denx.de>
 Date:  Wed Jan 14 22:35:30 2009 +0100
@@ -12,6 +27777,57 @@ Date:     Wed Jan 14 22:35:30 2009 +0100
 
     Signed-off-by: Wolfgang Denk <wd@denx.de>
 
+commit 3ba605d4beec649438539e7df97b5fedb26592fb
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 12:18:49 2009 +0100
+
+    ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
+
+    This patch adds esd's loadpci BSP command to CPCI4052 and
+    CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit 600fe46fb3dab7f07604f9009904f31584415114
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 12:18:12 2009 +0100
+
+    ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit f6a1f490d224c600a09137e58d1026d150b8e679
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 12:17:36 2009 +0100
+
+    ppc4xx: Cleanup CPCI405 board code
+
+    This patch cleans up CPCI405 board support:
+    - wrap long lines
+    - unification of spaces in function calls
+    - remove dead code
+
+    Use correct io accessors on peripherals.
+
+    Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
+commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
+Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
+Date:  Fri Jan 2 12:16:35 2009 +0100
+
+    ppc4xx: Enable auto RS485 mode on PLU405 boards
+
+    This patch turns on the auto RS485 mode in the 2nd external
+    uart on PLU405 boards. This is a special mode of the used
+    Exar XR16C2850 uart. Because these boards only have a 485 physical
+    layer connected it's a good idea to turn it on by default.
+
+    Signed-off-by: Matthias Fuchs <mf@esd.eu>
+    Signed-off-by: Stefan Roese <sr@denx.de>
+
 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
 Author: Haiying Wang <Haiying.Wang@freescale.com>
 Date:  Tue Jan 13 16:29:28 2009 -0500
@@ -539,6 +28355,20 @@ Date:    Wed Oct 29 12:39:26 2008 -0500
 
     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
 
+commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Wed Dec 17 16:43:18 2008 +0100
+
+    avr32: Remove second definition of virt_to_phys()
+
+    The second definition introduced by 65e43a1063 conflicts with the
+    existing one.
+
+    Also, convert the existing definition to use phys_addr_t. The volatile
+    qualifier is still needed due to brain damage elsewhere.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
 commit b616f2b545f73757669b37386f0b37bb61fc6797
 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 Date:  Mon Sep 8 22:27:18 2008 +0200
@@ -1130,6 +28960,15 @@ Date:   Tue Dec 9 23:20:18 2008 -0500
     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
 
+commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
+Author: Ben Warren <biggerbadderben@gmail.com>
+Date:  Tue Dec 9 23:26:31 2008 -0800
+
+    Fix compile error in building MBX860T.
+    Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
+
+    Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
+
 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
 Author: Jerry Van Baren <gvb.uboot@gmail.com>
 Date:  Mon Nov 24 08:15:02 2008 -0500
@@ -2171,6 +30010,32 @@ Date:   Mon Nov 24 15:11:08 2008 +0100
     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
     Signed-off-by: Stefan Roese <sr@denx.de>
 
+commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Nov 20 09:59:09 2008 +0100
+
+    powerpc, keymile boards: extract identical config options
+
+    This patch extracts the identical config options for the
+    keymile boards mgcoge, mgsuvd and kmeter1 in a new
+    common config file keymile-common.h.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
+commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
+Author: Heiko Schocher <hs@denx.de>
+Date:  Fri Nov 21 08:29:40 2008 +0100
+
+    powerpc: keymile: Add a check for the PIGGY debug board
+
+    Check the presence of the PIGGY on the keymile boards mgcoge,
+    mgsuvd and kmeter1. If the PIGGY is not present, dont register
+    this Ethernet device.
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
 commit 58c696eed839af894e0265064669c402dc28b371
 Author: Wolfgang Denk <wd@xpert.denx.de>
 Date:  Mon Nov 24 21:50:59 2008 +0100
@@ -2445,6 +30310,24 @@ Date:   Fri Nov 7 13:55:14 2008 +0100
 
     Signed-off-by: Stelian Pop <stelian@popies.net>
 
+commit fed36ac5ae613773b6cd90e61e292c45440e10c8
+Author: Heiko Schocher <hs@denx.de>
+Date:  Thu Nov 20 09:57:47 2008 +0100
+
+    powerpc: 83xx: add support for the kmeter1 board
+
+    This patch adds support for the kmeter1 board from Keymile,
+    based on a Freescale MPC8360 CPU.
+
+    - serial console on UART 1
+    - 256 MB DDR2 RAM
+    - 64 MB NOR Flash
+    - Ethernet RMII Mode over UCC4
+    - PHY SMSC LAN8700
+
+    Signed-off-by: Heiko Schocher <hs@denx.de>
+    Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
+
 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
 Author: Stefan Roese <sr@denx.de>
 Date:  Thu Nov 20 11:46:20 2008 +0100
@@ -6279,6 +34162,18 @@ Date:   Tue Oct 7 10:28:46 2008 -0500
 
     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
 
+commit a69a42338dd25408f9fd5390a83bc501749c7e1b
+Author: Mark Jackson <mpfj@mimc.co.uk>
+Date:  Fri Oct 3 11:48:57 2008 +0100
+
+    MIMC200 board now uses CONFIG_DISABLE_CONSOLE
+
+    Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
+    Also fixed default uImage location.
+
+    Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
 Author: Gerald Van Baren <vanbaren@cideas.com>
 Date:  Sat Oct 4 07:56:06 2008 -0400
@@ -9041,6 +36936,154 @@ Date:  Mon Sep 1 17:11:26 2008 +0200
 
     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 
+commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Mon Sep 1 14:00:07 2008 +0200
+
+    avr32: Add support for "GPIO" port mux
+
+    The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
+    all later AVR32 chips. This patch adds a driver for it, implementing the
+    same API as the existing portmux-pio driver but with more functionality.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit d92852579546c46bdaac978e0b6767a6645b69e0
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Fri Aug 15 15:02:29 2008 +0200
+
+    atstk1000: Convert to new-style makefile
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 25e6854d42c11046a468576179b5494f850311b2
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Sun Aug 31 18:46:35 2008 +0200
+
+    avr32: use board_early_init_r instead of board_init_info
+
+    Replace the avr32-specific board_init_info hook by the standard
+    board_early_init_r hook and make it optional.
+
+    board_early_init_r() runs somewhat earlier than board_init_info used to
+    do, but this isn't a problem for any of the in-tree boards.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Sun Aug 31 18:24:24 2008 +0200
+
+    avr32: Use board_postclk_init instead of gclk_init
+
+    Replace the avr32-specific gclk_init() board hook with the standard
+    board_postclk_init() hook which is supposed to run at the same point
+    during initialization.
+
+    Provide a dummy weak alias for boards not implementing this hook. The
+    cost of this is:
+      - 2 bytes for the dummy function (retal 0)
+      - 2 bytes for each unnecessary function call (short rcall)
+
+    which is a pretty small price to pay for avoiding lots of #ifdef
+    clutter. In this particular case, all boards probably end up slightly
+    smaller because we avoid the conditional checking if the gclk_init
+    symbol is NULL.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit abdde2b1d570b1ee77606bf783444fcddf7f0965
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Sun Aug 31 18:07:35 2008 +0200
+
+    hammerhead: Use gclk helper functions
+
+    Use the new gclk helper functions to set up the PHY clock instead of
+    accessing the PM registers directly.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 98090cd75cdb40b2ab94c806c338540a5716748b
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Sun Aug 31 18:05:32 2008 +0200
+
+    avr32: Add gclk helper functions
+
+    Add two helper functions for configuring and enabling generic clocks:
+      - gclk_enable_output: Enables output on a GCLKx pin
+      - gclk_set_rate: Configures a gclk to run at a specific rate
+
+    This should eliminate any reason to go mucking about with PM registers
+    from board code.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Fri Aug 29 21:09:49 2008 +0200
+
+    avr32: refactor the portmux/gpio code
+
+      - Separate the portmux configuration functionality from the GPIO pin
+       control API.
+      - Separate the controller-specific code from the chip-specific code.
+      - Allow "ganged" port configuration (multiple pins at once).
+      - Add more flexibility to the "canned" peripheral select functions:
+         - Allow using more than 23 address bits, more chip selects, as
+       well as NAND- and CF-specific pins.
+         - Make the MACB SPEED pin optional, and choose between MII/RMII
+       using a parameter instead of an #ifdef.
+         - Make it possible to use other MMC slots than slot 0, and support
+       different MMC/SDCard data bus widths.
+      - Use more reasonable pull-up defaults; floating pins may consume a
+       lot of power.
+      - Get rid of some custom portmux code from the mimc200 board code. The
+       old gpio/portmux API couldn't really handle its requirements, but
+       the new one can.
+      - Add documentation.
+
+    The end result is slightly smaller code for all boards. Which isn't
+    really the point, but at least it isn't any larger.
+
+    This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
+    the board maintainers could help me test this on their boards. In
+    particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
+    can help me out.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+    Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
+    Cc: Mark Jackson <mpfj@mimc.co.uk>
+    Cc: Alex Raimondi <alex.raimondi@miromico.ch>
+    Cc: Julien May <julien.may@miromico.ch>
+
+    Changes since v1:
+      * Enable pullup on NWAIT
+      * Add missing include to portmux-pio.h
+      * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
+
+commit 4c24e8288c601cb773ab02528b48a8577970e867
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Sat Aug 30 17:28:36 2008 +0200
+
+    avr32: data_bits should reflect the actual number of data bits
+
+    Make the data_bits enum in struct sdram_config reflect the actual number
+    of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
+    32 bits is just too confusing.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
+commit 66b7bc5175325809718d8d49ef073bc1036ad71b
+Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+Date:  Fri Aug 29 17:48:18 2008 +0200
+
+    avr32: Update README
+
+    Remove some outdated and/or unnecessary information, and add updated
+    information about the toolchain and buildroot.
+
+    Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
+
 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
 Date:  Sun Aug 31 23:28:15 2008 +0900