summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG634
1 files changed, 634 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e821ec5..febff5d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,520 @@
+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
@@ -63,6 +580,67 @@ Date: Wed Feb 18 21:35:38 2009 +0100
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
@@ -1099,6 +1677,29 @@ Date: Mon Feb 2 16:34:52 2009 -0600
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
@@ -1127,6 +1728,16 @@ Date: Fri Feb 6 09:49:31 2009 -0600
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
@@ -1167,6 +1778,17 @@ Date: Mon Jan 19 16:32:59 2009 +0200
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
@@ -1178,6 +1800,18 @@ Date: Mon Jan 26 14:08:17 2009 -0700
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